(3.2ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (1.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (2.5ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (2.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (1.7ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (2.4ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (3.5ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (2.0ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  DROP TABLE IF EXISTS "buckets"
 (1.5ms)  CREATE TABLE "buckets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "bucketable_id" integer, "bucketable_type" varchar)
 (1.4ms)  CREATE  INDEX "index_buckets_on_bucketable_type_and_bucketable_id" ON "buckets" ("bucketable_type", "bucketable_id")
 (0.1ms)  DROP TABLE IF EXISTS "comments"
 (1.4ms)  CREATE TABLE "comments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "body" text)
 (1.0ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.1ms)  DROP TABLE IF EXISTS "content_recommendations"
 (1.4ms)  CREATE TABLE "content_recommendations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "recommendable_type" varchar, "recommendable_id" integer, "user_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.7ms)  CREATE  INDEX "index_content_recommendations_on_recommendable_and_user" ON "content_recommendations" ("recommendable_type", "recommendable_id")
 (1.1ms)  CREATE  INDEX "index_content_recommendations_on_user_id" ON "content_recommendations" ("user_id")
 (0.1ms)  DROP TABLE IF EXISTS "courses"
 (1.1ms)  CREATE TABLE "courses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "vault_id" integer, "title" varchar, "status" varchar, "description" text, "topic" varchar, "url" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.1ms)  CREATE  INDEX "index_courses_on_vault_id" ON "courses" ("vault_id")
 (0.3ms)  DROP TABLE IF EXISTS "lessons"
 (1.2ms)  CREATE TABLE "lessons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "track_id" integer)
 (1.8ms)  CREATE  INDEX "index_lessons_on_track_id" ON "lessons" ("track_id")
 (0.1ms)  DROP TABLE IF EXISTS "recordings"
 (1.5ms)  CREATE TABLE "recordings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "recordable_id" integer, "recordable_type" varchar, "created_at" datetime(6), "updated_at" datetime(6))
 (2.2ms)  CREATE  INDEX "index_recordings_on_recordable_type_and_recordable_id" ON "recordings" ("recordable_type", "recordable_id")
 (0.3ms)  DROP TABLE IF EXISTS "statuses"
 (2.0ms)  CREATE TABLE "statuses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.5ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (1.5ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.1ms)  DROP TABLE IF EXISTS "tracks"
 (1.1ms)  CREATE TABLE "tracks" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "course_id" integer NOT NULL, "title" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.2ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.2ms)  DROP TABLE IF EXISTS "users"
 (1.2ms)  CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.8ms)  CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
 (1.5ms)  CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
 (0.1ms)  DROP TABLE IF EXISTS "vaults"
 (1.4ms)  CREATE TABLE "vaults" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "acomments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL)
 (0.1ms)  CREATE  INDEX "tindex_acomments_on_bucket_id" ON "acomments" ("bucket_id")
 (0.2ms)  INSERT INTO "acomments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "comments"
 (0.4ms)  DROP TABLE "comments"
 (0.4ms)  CREATE TABLE "comments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL, CONSTRAINT "fk_rails_ca6e46a76a"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.1ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.0ms)  INSERT INTO "comments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "acomments"
 (0.1ms)  DROP TABLE "acomments"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (1.0ms)  commit transaction
 (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (0.4ms)  DROP TABLE "statuses"
 (0.1ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.1ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.6ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.1ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.1ms)  DROP TABLE "astatuses"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.5ms)  commit transaction
 (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.2ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (0.5ms)  DROP TABLE "statuses"
 (0.1ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

, CONSTRAINT “fk_rails_b29739edee” FOREIGN KEY (“user_id”)

REFERENCES "users" ("id")

)

 (0.2ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.1ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.1ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.2ms)  DROP TABLE "astatuses"
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.8ms)  commit transaction
 (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "atracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE  INDEX "tindex_atracks_on_course_id" ON "atracks" ("course_id")
 (0.1ms)  INSERT INTO "atracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "tracks"
 (0.5ms)  DROP TABLE "tracks"
 (0.3ms)  CREATE TABLE "tracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_3f4f12a334"

FOREIGN KEY (“course_id”)

REFERENCES "courses" ("id")

)

 (0.1ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.1ms)  INSERT INTO "tracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "atracks"
 (0.1ms)  DROP TABLE "atracks"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.1ms)  commit transaction
 (1.5ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  INSERT INTO "schema_migrations" (version) VALUES (20200421103740)
 (1.7ms)  INSERT INTO "schema_migrations" (version) VALUES

(20200415134042), (20200415134355), (20200416122756), (20200416123123), (20200416123413), (20200416123544), (20200417033212), (20200417034135), (20200417034554), (20200417034838), (20200417035204), (20200417040159), (20200417040442), (20200418084716), (20200420223211), (20200420224224), (20200420230732), (20200421101855), (20200421101954), (20200421103414), (20200421103629);



 (1.2ms)  CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
 (0.0ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.7ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "environment"], ["value", "test"], ["created_at", "2020-04-22 03:24:40.025184"], ["updated_at", "2020-04-22 03:24:40.025184"]]
 (1.0ms)  commit transaction
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.0ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.3ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "schema_sha1"], ["value", "f0b19f1f27c57dfc3befce8d86ade17e246decaf"], ["created_at", "2020-04-22 03:24:40.030158"], ["updated_at", "2020-04-22 03:24:40.030158"]]
 (0.8ms)  commit transaction
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  DROP TABLE IF EXISTS "buckets"
 (0.1ms)  SELECT sqlite_version(*)
 (1.6ms)  CREATE TABLE "buckets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "bucketable_id" integer, "bucketable_type" varchar)
 (0.1ms)  DROP TABLE IF EXISTS "buckets"
 (5.0ms)  CREATE  INDEX "index_buckets_on_bucketable_type_and_bucketable_id" ON "buckets" ("bucketable_type", "bucketable_id")
 (0.4ms)  DROP TABLE IF EXISTS "comments"
 (2.2ms)  CREATE TABLE "buckets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "bucketable_id" integer, "bucketable_type" varchar)
 (4.1ms)  CREATE TABLE "comments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "body" text)
 (1.2ms)  CREATE  INDEX "index_buckets_on_bucketable_type_and_bucketable_id" ON "buckets" ("bucketable_type", "bucketable_id")
 (0.2ms)  DROP TABLE IF EXISTS "comments"
 (1.5ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.2ms)  DROP TABLE IF EXISTS "content_recommendations"
 (1.8ms)  CREATE TABLE "comments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "body" text)
 (1.2ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.2ms)  DROP TABLE IF EXISTS "content_recommendations"
 (6.6ms)  CREATE TABLE "content_recommendations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "recommendable_type" varchar, "recommendable_id" integer, "user_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.3ms)  CREATE TABLE "content_recommendations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "recommendable_type" varchar, "recommendable_id" integer, "user_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.2ms)  CREATE  INDEX "index_content_recommendations_on_recommendable_and_user" ON "content_recommendations" ("recommendable_type", "recommendable_id")
 (9.5ms)  CREATE  INDEX "index_content_recommendations_on_recommendable_and_user" ON "content_recommendations" ("recommendable_type", "recommendable_id")
 (1.3ms)  CREATE  INDEX "index_content_recommendations_on_user_id" ON "content_recommendations" ("user_id")
 (0.2ms)  DROP TABLE IF EXISTS "courses"
 (2.9ms)  CREATE  INDEX "index_content_recommendations_on_user_id" ON "content_recommendations" ("user_id")
 (0.2ms)  DROP TABLE IF EXISTS "courses"
 (3.0ms)  CREATE TABLE "courses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "vault_id" integer, "title" varchar, "status" varchar, "description" text, "topic" varchar, "url" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.7ms)  CREATE  INDEX "index_courses_on_vault_id" ON "courses" ("vault_id")
 (0.1ms)  DROP TABLE IF EXISTS "lessons"
 (1.9ms)  CREATE TABLE "lessons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "track_id" integer)
 (1.9ms)  CREATE TABLE "courses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "vault_id" integer, "title" varchar, "status" varchar, "description" text, "topic" varchar, "url" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.1ms)  CREATE  INDEX "index_courses_on_vault_id" ON "courses" ("vault_id")
 (0.1ms)  DROP TABLE IF EXISTS "lessons"
 (1.2ms)  CREATE  INDEX "index_lessons_on_track_id" ON "lessons" ("track_id")
 (1.2ms)  CREATE TABLE "lessons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "body" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "track_id" integer)
 (0.1ms)  DROP TABLE IF EXISTS "recordings"
 (1.1ms)  CREATE  INDEX "index_lessons_on_track_id" ON "lessons" ("track_id")
 (1.2ms)  CREATE TABLE "recordings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "recordable_id" integer, "recordable_type" varchar, "created_at" datetime(6), "updated_at" datetime(6))
 (0.2ms)  DROP TABLE IF EXISTS "recordings"
 (1.5ms)  CREATE  INDEX "index_recordings_on_recordable_type_and_recordable_id" ON "recordings" ("recordable_type", "recordable_id")
 (0.1ms)  DROP TABLE IF EXISTS "statuses"
 (1.2ms)  CREATE TABLE "statuses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.4ms)  CREATE TABLE "recordings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" varchar, "recordable_id" integer, "recordable_type" varchar, "created_at" datetime(6), "updated_at" datetime(6))
 (1.4ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (1.3ms)  CREATE  INDEX "index_recordings_on_recordable_type_and_recordable_id" ON "recordings" ("recordable_type", "recordable_id")
 (0.2ms)  DROP TABLE IF EXISTS "statuses"
 (2.0ms)  CREATE TABLE "statuses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.4ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (1.5ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.2ms)  DROP TABLE IF EXISTS "tracks"
 (2.4ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.5ms)  DROP TABLE IF EXISTS "tracks"
 (3.1ms)  CREATE TABLE "tracks" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "course_id" integer NOT NULL, "title" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (3.1ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.4ms)  DROP TABLE IF EXISTS "users"
 (3.0ms)  CREATE TABLE "tracks" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "course_id" integer NOT NULL, "title" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.4ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.2ms)  DROP TABLE IF EXISTS "users"
 (3.8ms)  CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.4ms)  CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
 (1.4ms)  CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (1.5ms)  CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
 (1.8ms)  CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
 (0.2ms)  DROP TABLE IF EXISTS "vaults"
 (2.3ms)  CREATE TABLE "vaults" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  begin transaction
 (3.6ms)  CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  DROP TABLE IF EXISTS "vaults"
 (2.0ms)  CREATE TABLE "vaults" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.3ms)  CREATE TEMPORARY TABLE "acomments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL)
 (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE  INDEX "tindex_acomments_on_bucket_id" ON "acomments" ("bucket_id")
 (0.1ms)  INSERT INTO "acomments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "comments"
 (0.2ms)  CREATE TEMPORARY TABLE "acomments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL)
 (0.4ms)  DROP TABLE "comments"
 (0.3ms)  CREATE TABLE "comments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL, CONSTRAINT "fk_rails_ca6e46a76a"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.2ms)  CREATE  INDEX "tindex_acomments_on_bucket_id" ON "acomments" ("bucket_id")
 (0.1ms)  INSERT INTO "acomments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "comments"
 (0.5ms)  DROP TABLE "comments"
 (0.1ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.1ms)  INSERT INTO "comments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "acomments"
 (0.1ms)  DROP TABLE "acomments"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (1.2ms)  commit transaction
 (0.4ms)  CREATE TABLE "comments" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "body" text DEFAULT NULL, CONSTRAINT "fk_rails_ca6e46a76a"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.1ms)  begin transaction
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  CREATE  INDEX "index_comments_on_bucket_id" ON "comments" ("bucket_id")
 (0.1ms)  INSERT INTO "comments" ("id","bucket_id","body")
                   SELECT "id","bucket_id","body" FROM "acomments"
 (0.2ms)  DROP TABLE "acomments"
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (1.6ms)  commit transaction
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (0.7ms)  DROP TABLE "statuses"
 (0.1ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.2ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.2ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.2ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (0.2ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.1ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.2ms)  DROP TABLE "astatuses"
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (1.4ms)  commit transaction
 (0.6ms)  DROP TABLE "statuses"
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

)

 (0.2ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (0.1ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.1ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.1ms)  DROP TABLE "astatuses"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (0.5ms)  DROP TABLE "statuses"
 (0.9ms)  commit transaction
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "astatuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE  INDEX "tindex_astatuses_on_user_id" ON "astatuses" ("user_id")
 (0.2ms)  CREATE  INDEX "tindex_astatuses_on_bucket_id" ON "astatuses" ("bucket_id")
 (0.3ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

, CONSTRAINT “fk_rails_b29739edee” FOREIGN KEY (“user_id”)

REFERENCES "users" ("id")

)

 (0.1ms)  INSERT INTO "astatuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "statuses"
 (0.7ms)  DROP TABLE "statuses"
 (0.2ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.1ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.2ms)  CREATE TABLE "statuses" ("id" integer NOT NULL PRIMARY KEY, "bucket_id" integer NOT NULL, "user_id" integer NOT NULL, "state" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_2736a27d62"

FOREIGN KEY (“bucket_id”)

REFERENCES "buckets" ("id")

, CONSTRAINT “fk_rails_b29739edee” FOREIGN KEY (“user_id”)

REFERENCES "users" ("id")

)

 (0.1ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.1ms)  DROP TABLE "astatuses"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.4ms)  commit transaction
 (0.0ms)  begin transaction
 (0.2ms)  CREATE  INDEX "index_statuses_on_bucket_id" ON "statuses" ("bucket_id")
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "atracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.2ms)  CREATE  INDEX "index_statuses_on_user_id" ON "statuses" ("user_id")
 (0.2ms)  INSERT INTO "statuses" ("id","bucket_id","user_id","state","created_at","updated_at")
                   SELECT "id","bucket_id","user_id","state","created_at","updated_at" FROM "astatuses"
 (0.1ms)  DROP TABLE "astatuses"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  CREATE  INDEX "tindex_atracks_on_course_id" ON "atracks" ("course_id")
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.0ms)  commit transaction
 (0.1ms)  INSERT INTO "atracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "tracks"
 (0.1ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.4ms)  DROP TABLE "tracks"
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TABLE "tracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_3f4f12a334"

FOREIGN KEY (“course_id”)

REFERENCES "courses" ("id")

)

 (0.2ms)  CREATE TEMPORARY TABLE "atracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.1ms)  INSERT INTO "tracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "atracks"
 (0.1ms)  CREATE  INDEX "tindex_atracks_on_course_id" ON "atracks" ("course_id")
 (0.1ms)  DROP TABLE "atracks"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.8ms)  commit transaction
 (0.2ms)  INSERT INTO "atracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "tracks"
 (0.5ms)  DROP TABLE "tracks"
 (0.2ms)  CREATE TABLE "tracks" ("id" integer NOT NULL PRIMARY KEY, "course_id" integer NOT NULL, "title" text DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_3f4f12a334"

FOREIGN KEY (“course_id”)

REFERENCES "courses" ("id")

)

 (2.2ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
 (0.2ms)  CREATE  INDEX "index_tracks_on_course_id" ON "tracks" ("course_id")
 (0.1ms)  INSERT INTO "tracks" ("id","course_id","title","created_at","updated_at")
                   SELECT "id","course_id","title","created_at","updated_at" FROM "atracks"
 (0.1ms)  DROP TABLE "atracks"
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  commit transaction
 (1.6ms)  INSERT INTO "schema_migrations" (version) VALUES (20200421103740)
 (2.1ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
 (1.7ms)  INSERT INTO "schema_migrations" (version) VALUES

(20200415134042), (20200415134355), (20200416122756), (20200416123123), (20200416123413), (20200416123544), (20200417033212), (20200417034135), (20200417034554), (20200417034838), (20200417035204), (20200417040159), (20200417040442), (20200418084716), (20200420223211), (20200420224224), (20200420230732), (20200421101855), (20200421101954), (20200421103414), (20200421103629);



 (1.5ms)  CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.6ms)  INSERT INTO "schema_migrations" (version) VALUES (20200421103740)
 (1.4ms)  INSERT INTO "schema_migrations" (version) VALUES

(20200415134042), (20200415134355), (20200416122756), (20200416123123), (20200416123413), (20200416123544), (20200417033212), (20200417034135), (20200417034554), (20200417034838), (20200417035204), (20200417040159), (20200417040442), (20200418084716), (20200420223211), (20200420224224), (20200420230732), (20200421101855), (20200421101954), (20200421103414), (20200421103629);



ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
 (1.3ms)  CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
ActiveRecord::InternalMetadata Load (0.3ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
ActiveRecord::InternalMetadata Create (1.4ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "environment"], ["value", "test"], ["created_at", "2020-04-22 03:24:40.578540"], ["updated_at", "2020-04-22 03:24:40.578540"]]
 (1.1ms)  commit transaction
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.8ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "schema_sha1"], ["value", "f0b19f1f27c57dfc3befce8d86ade17e246decaf"], ["created_at", "2020-04-22 03:24:40.589057"], ["updated_at", "2020-04-22 03:24:40.589057"]]
 (1.1ms)  commit transaction
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.4ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "environment"], ["value", "test"], ["created_at", "2020-04-22 03:24:40.598909"], ["updated_at", "2020-04-22 03:24:40.598909"]]
 (0.7ms)  commit transaction
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.5ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "schema_sha1"], ["value", "f0b19f1f27c57dfc3befce8d86ade17e246decaf"], ["created_at", "2020-04-22 03:24:40.608515"], ["updated_at", "2020-04-22 03:24:40.608515"]]
 (0.7ms)  commit transaction
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
Fixtures Load (1.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:24:40.670271', '2020-04-22 03:24:40.670271'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:24:40.670271', '2020-04-22 03:24:40.670271'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:24:40.673074', '2020-04-22 03:24:40.673074', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:24:40.673074', '2020-04-22 03:24:40.673074', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:24:40.675548', '2020-04-22 03:24:40.675548'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:24:40.675548', '2020-04-22 03:24:40.675548'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:24:40.681045', '2020-04-22 03:24:40.681045'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:24:40.681045', '2020-04-22 03:24:40.681045'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:24:40.685325', '2020-04-22 03:24:40.685325'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:24:40.685325', '2020-04-22 03:24:40.685325'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:24:40.686583', '2020-04-22 03:24:40.686583'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:24:40.686583', '2020-04-22 03:24:40.686583'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:24:40.687738', '2020-04-22 03:24:40.687738'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:24:40.687738', '2020-04-22 03:24:40.687738')

 (3.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:24:40.703387', '2020-04-22 03:24:40.703387'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:24:40.703387', '2020-04-22 03:24:40.703387'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:24:40.705220', '2020-04-22 03:24:40.705220', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:24:40.705220', '2020-04-22 03:24:40.705220', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:24:40.707208', '2020-04-22 03:24:40.707208'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:24:40.707208', '2020-04-22 03:24:40.707208'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:24:40.708732', '2020-04-22 03:24:40.708732'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:24:40.708732', '2020-04-22 03:24:40.708732'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:24:40.710749', '2020-04-22 03:24:40.710749'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:24:40.710749', '2020-04-22 03:24:40.710749'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:24:40.712821', '2020-04-22 03:24:40.712821'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:24:40.712821', '2020-04-22 03:24:40.712821'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:24:40.717622', '2020-04-22 03:24:40.717622'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:24:40.717622', '2020-04-22 03:24:40.717622')

 (2.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:24:40.811182"], ["updated_at", "2020-04-22 03:24:40.811182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:40.818076"], ["updated_at", "2020-04-22 03:24:40.818076"]]
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:24:40.827399"], ["updated_at", "2020-04-22 03:24:40.827399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.829494"], ["updated_at", "2020-04-22 03:24:40.829494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 78c203de-ec55-4e16-be81-551db8b2e9f3) to Async(default)

 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.847595"], ["updated_at", "2020-04-22 03:24:40.847595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:40.848066"], ["updated_at", "2020-04-22 03:24:40.848066"]]
 (1.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:40.863438"], ["updated_at", "2020-04-22 03:24:40.863438"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.864886"], ["updated_at", "2020-04-22 03:24:40.864886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.870098"], ["updated_at", "2020-04-22 03:24:40.870098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.873447"], ["updated_at", "2020-04-22 03:24:40.873447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:40.883625"], ["updated_at", "2020-04-22 03:24:40.883625"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.886276"], ["updated_at", "2020-04-22 03:24:40.886276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.887584"], ["updated_at", "2020-04-22 03:24:40.887584"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.887402"], ["updated_at", "2020-04-22 03:24:40.887402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:40.899260"], ["updated_at", "2020-04-22 03:24:40.899260"]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.902536"], ["updated_at", "2020-04-22 03:24:40.902536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.903884"], ["updated_at", "2020-04-22 03:24:40.903884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  begin transaction

Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')

VaultTest: test_has_many_:courses_association


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.7ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:24:40.916671"], ["updated_at", "2020-04-22 03:24:40.916671"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.919228"], ["updated_at", "2020-04-22 03:24:40.919228"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.921375"], ["updated_at", "2020-04-22 03:24:40.921375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:24:40.930279"], ["updated_at", "2020-04-22 03:24:40.930279"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:40.938260"], ["updated_at", "2020-04-22 03:24:40.938260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:40.942901"], ["updated_at", "2020-04-22 03:24:40.942901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  rollback transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

CoursesControllerTest: test_index



ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:41.006230"], ["updated_at", "2020-04-22 03:24:41.006230"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:41.011513"], ["updated_at", "2020-04-22 03:24:41.011513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:41.013393"], ["updated_at", "2020-04-22 03:24:41.013393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:24:41.036710"], ["updated_at", "2020-04-22 03:24:41.036710"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:41.046126"], ["updated_at", "2020-04-22 03:24:41.046126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:41.048870"], ["updated_at", "2020-04-22 03:24:41.048870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:41.094181"], ["updated_at", "2020-04-22 03:24:41.094181"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:41.099918"], ["updated_at", "2020-04-22 03:24:41.099918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:41.102316"], ["updated_at", "2020-04-22 03:24:41.102316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

ActiveJob
CourseRecommendationMailerJob
78c203de-ec55-4e16-be81-551db8b2e9f3

Performing CourseRecommendationMailerJob (Job ID: 78c203de-ec55-4e16-be81-551db8b2e9f3) from Async(default) enqueued at 2020-04-22T03:24:40Z

ActiveJob
CourseRecommendationMailerJob
78c203de-ec55-4e16-be81-551db8b2e9f3

Performed CourseRecommendationMailerJob (Job ID: 78c203de-ec55-4e16-be81-551db8b2e9f3) from Async(default) in 0.14ms

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 2.7ms | Allocations: 655)
Webpacker

Compiling…

Webpacker

Compilation failed:

/Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:13:in “': No such file or directory - yarn (Errno::ENOENT)

from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:13:in `initialize'
from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:6:in `new'
from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:6:in `run'
from ./bin/webpack:17:in `block in <main>'
from ./bin/webpack:16:in `chdir'
from ./bin/webpack:16:in `<main>'

Completed 500 Internal Server Error in 928ms (ActiveRecord: 0.2ms | Allocations: 12824)

 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:24:42.074654"], ["updated_at", "2020-04-22 03:24:42.074654"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.078242"], ["updated_at", "2020-04-22 03:24:42.078242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.079628"], ["updated_at", "2020-04-22 03:24:42.079628"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:24:42.091084"], ["updated_at", "2020-04-22 03:24:42.091084"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.093196"], ["updated_at", "2020-04-22 03:24:42.093196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.094410"], ["updated_at", "2020-04-22 03:24:42.094410"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:42.106500"], ["updated_at", "2020-04-22 03:24:42.106500"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.110368"], ["updated_at", "2020-04-22 03:24:42.110368"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.111816"], ["updated_at", "2020-04-22 03:24:42.111816"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.8ms | Allocations: 149)

Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.3ms | Allocations: 2307)

 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:42.128000"], ["updated_at", "2020-04-22 03:24:42.128000"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.130351"], ["updated_at", "2020-04-22 03:24:42.130351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.131621"], ["updated_at", "2020-04-22 03:24:42.131621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 8)

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 673)

 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:24:42.150919"], ["updated_at", "2020-04-22 03:24:42.150919"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.152848"], ["updated_at", "2020-04-22 03:24:42.152848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.154251"], ["updated_at", "2020-04-22 03:24:42.154251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.166678"], ["updated_at", "2020-04-22 03:24:42.166678"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.168879"], ["updated_at", "2020-04-22 03:24:42.168879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.170042"], ["updated_at", "2020-04-22 03:24:42.170042"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.208381"], ["updated_at", "2020-04-22 03:24:42.208381"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.211213"], ["updated_at", "2020-04-22 03:24:42.211213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.212693"], ["updated_at", "2020-04-22 03:24:42.212693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.4ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.222514"], ["updated_at", "2020-04-22 03:24:42.222514"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.224207"], ["updated_at", "2020-04-22 03:24:42.224207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.225895"], ["updated_at", "2020-04-22 03:24:42.225895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.233021"], ["updated_at", "2020-04-22 03:24:42.233021"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.235593"], ["updated_at", "2020-04-22 03:24:42.235593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.237064"], ["updated_at", "2020-04-22 03:24:42.237064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.247455"], ["updated_at", "2020-04-22 03:24:42.247455"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.250953"], ["updated_at", "2020-04-22 03:24:42.250953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.253692"], ["updated_at", "2020-04-22 03:24:42.253692"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.261035"], ["updated_at", "2020-04-22 03:24:42.261035"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.263145"], ["updated_at", "2020-04-22 03:24:42.263145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.264397"], ["updated_at", "2020-04-22 03:24:42.264397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.275326"], ["updated_at", "2020-04-22 03:24:42.275326"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.277175"], ["updated_at", "2020-04-22 03:24:42.277175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.278339"], ["updated_at", "2020-04-22 03:24:42.278339"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:42.289272"], ["updated_at", "2020-04-22 03:24:42.289272"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.291636"], ["updated_at", "2020-04-22 03:24:42.291636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.293635"], ["updated_at", "2020-04-22 03:24:42.293635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:24:42.304013"], ["updated_at", "2020-04-22 03:24:42.304013"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.316871"], ["updated_at", "2020-04-22 03:24:42.316871"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.321096"], ["updated_at", "2020-04-22 03:24:42.321096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.322791"], ["updated_at", "2020-04-22 03:24:42.322791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:24:42.324233"], ["updated_at", "2020-04-22 03:24:42.324233"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:24:42.325809"], ["updated_at", "2020-04-22 03:24:42.325809"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:24:42.327096"], ["updated_at", "2020-04-22 03:24:42.327096"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.347521"], ["updated_at", "2020-04-22 03:24:42.347521"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.350666"], ["updated_at", "2020-04-22 03:24:42.350666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.353187"], ["updated_at", "2020-04-22 03:24:42.353187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:24:42.354891"], ["updated_at", "2020-04-22 03:24:42.354891"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:24:42.356445"], ["updated_at", "2020-04-22 03:24:42.356445"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.357678"], ["updated_at", "2020-04-22 03:24:42.357678"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.358699"], ["updated_at", "2020-04-22 03:24:42.358699"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:24:42.359855"], ["updated_at", "2020-04-22 03:24:42.359855"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_associations


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:24:42.372811"], ["updated_at", "2020-04-22 03:24:42.372811"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:24:42.375962"], ["updated_at", "2020-04-22 03:24:42.375962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:24:42.377204"], ["updated_at", "2020-04-22 03:24:42.377204"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.0ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.4ms)  SELECT sqlite_version(*)
 (3.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (1.4ms)  SELECT sqlite_version(*)
 (4.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (1.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (17.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (17.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (4.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:27:17.226402', '2020-04-22 03:27:17.226402'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:27:17.226402', '2020-04-22 03:27:17.226402'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:27:17.230172', '2020-04-22 03:27:17.230172', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:27:17.230172', '2020-04-22 03:27:17.230172', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:27:17.232395', '2020-04-22 03:27:17.232395'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:27:17.232395', '2020-04-22 03:27:17.232395'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:27:17.235214', '2020-04-22 03:27:17.235214'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:27:17.235214', '2020-04-22 03:27:17.235214'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:27:17.238552', '2020-04-22 03:27:17.238552'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:27:17.238552', '2020-04-22 03:27:17.238552'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:27:17.241764', '2020-04-22 03:27:17.241764'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:27:17.241764', '2020-04-22 03:27:17.241764'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:27:17.246659', '2020-04-22 03:27:17.246659'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:27:17.246659', '2020-04-22 03:27:17.246659')

Fixtures Load (4.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:27:17.226352', '2020-04-22 03:27:17.226352'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:27:17.226352', '2020-04-22 03:27:17.226352'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:27:17.229564', '2020-04-22 03:27:17.229564', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:27:17.229564', '2020-04-22 03:27:17.229564', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:27:17.231576', '2020-04-22 03:27:17.231576'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:27:17.231576', '2020-04-22 03:27:17.231576'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:27:17.234265', '2020-04-22 03:27:17.234265'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:27:17.234265', '2020-04-22 03:27:17.234265'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:27:17.236273', '2020-04-22 03:27:17.236273'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:27:17.236273', '2020-04-22 03:27:17.236273'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:27:17.239143', '2020-04-22 03:27:17.239143'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:27:17.239143', '2020-04-22 03:27:17.239143'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:27:17.241764', '2020-04-22 03:27:17.241764'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:27:17.241764', '2020-04-22 03:27:17.241764')

 (4.5ms)  commit transaction
 (0.6ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (3.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.9ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys = 1

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:27:17.343108"], ["updated_at", "2020-04-22 03:27:17.343108"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:27:17.365630"], ["updated_at", "2020-04-22 03:27:17.365630"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.387259"], ["updated_at", "2020-04-22 03:27:17.387259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.392287"], ["updated_at", "2020-04-22 03:27:17.392287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.408987"], ["updated_at", "2020-04-22 03:27:17.408987"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.446144"], ["updated_at", "2020-04-22 03:27:17.446144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:27:17.467605"], ["updated_at", "2020-04-22 03:27:17.467605"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.473262"], ["updated_at", "2020-04-22 03:27:17.473262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.475398"], ["updated_at", "2020-04-22 03:27:17.475398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (12.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.506557"], ["updated_at", "2020-04-22 03:27:17.506557"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.509412"], ["updated_at", "2020-04-22 03:27:17.509412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.512913"], ["updated_at", "2020-04-22 03:27:17.512913"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.4ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.610217"], ["updated_at", "2020-04-22 03:27:17.610217"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.613013"], ["updated_at", "2020-04-22 03:27:17.613013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.614504"], ["updated_at", "2020-04-22 03:27:17.614504"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.0ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.632135"], ["updated_at", "2020-04-22 03:27:17.632135"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.634300"], ["updated_at", "2020-04-22 03:27:17.634300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.636262"], ["updated_at", "2020-04-22 03:27:17.636262"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.652936"], ["updated_at", "2020-04-22 03:27:17.652936"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.654764"], ["updated_at", "2020-04-22 03:27:17.654764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.656488"], ["updated_at", "2020-04-22 03:27:17.656488"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.662431"], ["updated_at", "2020-04-22 03:27:17.662431"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.665171"], ["updated_at", "2020-04-22 03:27:17.665171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.667267"], ["updated_at", "2020-04-22 03:27:17.667267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.673960"], ["updated_at", "2020-04-22 03:27:17.673960"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.675760"], ["updated_at", "2020-04-22 03:27:17.675760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.677751"], ["updated_at", "2020-04-22 03:27:17.677751"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.695612"], ["updated_at", "2020-04-22 03:27:17.695612"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.697559"], ["updated_at", "2020-04-22 03:27:17.697559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.699565"], ["updated_at", "2020-04-22 03:27:17.699565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.731482"], ["updated_at", "2020-04-22 03:27:17.731482"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.734490"], ["updated_at", "2020-04-22 03:27:17.734490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.736073"], ["updated_at", "2020-04-22 03:27:17.736073"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:27:17.738596"], ["updated_at", "2020-04-22 03:27:17.738596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.744082"], ["updated_at", "2020-04-22 03:27:17.744082"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.747095"], ["updated_at", "2020-04-22 03:27:17.747095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.748944"], ["updated_at", "2020-04-22 03:27:17.748944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:27:17.752226"], ["updated_at", "2020-04-22 03:27:17.752226"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:27:17.754115"], ["updated_at", "2020-04-22 03:27:17.754115"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:27:17.755603"], ["updated_at", "2020-04-22 03:27:17.755603"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:27:17.763100"], ["updated_at", "2020-04-22 03:27:17.763100"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.764617"], ["updated_at", "2020-04-22 03:27:17.764617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.766691"], ["updated_at", "2020-04-22 03:27:17.766691"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.4ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:27:17.789872"], ["updated_at", "2020-04-22 03:27:17.789872"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.791662"], ["updated_at", "2020-04-22 03:27:17.791662"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.793519"], ["updated_at", "2020-04-22 03:27:17.793519"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.797364"], ["updated_at", "2020-04-22 03:27:17.797364"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.800256"], ["updated_at", "2020-04-22 03:27:17.800256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.801901"], ["updated_at", "2020-04-22 03:27:17.801901"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.819884"], ["updated_at", "2020-04-22 03:27:17.819884"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.821813"], ["updated_at", "2020-04-22 03:27:17.821813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.823044"], ["updated_at", "2020-04-22 03:27:17.823044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:27:17.824660"], ["updated_at", "2020-04-22 03:27:17.824660"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:27:17.826265"], ["updated_at", "2020-04-22 03:27:17.826265"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.828284"], ["updated_at", "2020-04-22 03:27:17.828284"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.829414"], ["updated_at", "2020-04-22 03:27:17.829414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:27:17.831720"], ["updated_at", "2020-04-22 03:27:17.831720"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_associations


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.929035"], ["updated_at", "2020-04-22 03:27:17.929035"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.930899"], ["updated_at", "2020-04-22 03:27:17.930899"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.935659"], ["updated_at", "2020-04-22 03:27:17.935659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.7ms | Allocations: 414)

Completed 200 OK in 19ms (Views: 8.2ms | ActiveRecord: 0.4ms | Allocations: 5427)

 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.966339"], ["updated_at", "2020-04-22 03:27:17.966339"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.968784"], ["updated_at", "2020-04-22 03:27:17.968784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.970036"], ["updated_at", "2020-04-22 03:27:17.970036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 9)

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 675)

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.976063"], ["updated_at", "2020-04-22 03:27:17.976063"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.978999"], ["updated_at", "2020-04-22 03:27:17.978999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.980386"], ["updated_at", "2020-04-22 03:27:17.980386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.988765"], ["updated_at", "2020-04-22 03:27:17.988765"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:17.991338"], ["updated_at", "2020-04-22 03:27:17.991338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:17.993178"], ["updated_at", "2020-04-22 03:27:17.993178"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:17.998921"], ["updated_at", "2020-04-22 03:27:17.998921"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:18.001415"], ["updated_at", "2020-04-22 03:27:18.001415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:18.002787"], ["updated_at", "2020-04-22 03:27:18.002787"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:18.007642"], ["updated_at", "2020-04-22 03:27:18.007642"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:18.009277"], ["updated_at", "2020-04-22 03:27:18.009277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:18.010864"], ["updated_at", "2020-04-22 03:27:18.010864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:18.020199"], ["updated_at", "2020-04-22 03:27:18.020199"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:18.022093"], ["updated_at", "2020-04-22 03:27:18.022093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:18.023340"], ["updated_at", "2020-04-22 03:27:18.023340"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:18.032222"], ["updated_at", "2020-04-22 03:27:18.032222"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:18.034801"], ["updated_at", "2020-04-22 03:27:18.034801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:18.036483"], ["updated_at", "2020-04-22 03:27:18.036483"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.5ms | Allocations: 363)
Webpacker

Compiling…

Webpacker

Compilation failed:

/Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:13:in “': No such file or directory - yarn (Errno::ENOENT)

from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:13:in `initialize'
from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:6:in `new'
from /Users/dain/.rvm/gems/ruby-2.5.3/gems/webpacker-4.2.2/lib/webpacker/runner.rb:6:in `run'
from ./bin/webpack:17:in `block in <main>'
from ./bin/webpack:16:in `chdir'
from ./bin/webpack:16:in `<main>'

Completed 500 Internal Server Error in 885ms (ActiveRecord: 0.2ms | Allocations: 9109)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (1.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:27:19.012519"], ["updated_at", "2020-04-22 03:27:19.012519"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:19.014765"], ["updated_at", "2020-04-22 03:27:19.014765"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:19.017665"], ["updated_at", "2020-04-22 03:27:19.017665"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:27:19.031789"], ["updated_at", "2020-04-22 03:27:19.031789"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:27:19.033989"], ["updated_at", "2020-04-22 03:27:19.033989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:27:19.036487"], ["updated_at", "2020-04-22 03:27:19.036487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.8ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:27:19.051069"], ["updated_at", "2020-04-22 03:27:19.051069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 7c3e4ea3-63d6-425b-b376-a6505401dcf4) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:27:19.081756"], ["updated_at", "2020-04-22 03:27:19.081756"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (20.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  begin transaction
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Fixtures Load (1.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:01.265687', '2020-04-22 03:35:01.265687'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:01.265687', '2020-04-22 03:35:01.265687'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:01.270678', '2020-04-22 03:35:01.270678', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:01.270678', '2020-04-22 03:35:01.270678', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:01.273896', '2020-04-22 03:35:01.273896'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:01.273896', '2020-04-22 03:35:01.273896'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:01.280247', '2020-04-22 03:35:01.280247'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:01.280247', '2020-04-22 03:35:01.280247'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:01.284015', '2020-04-22 03:35:01.284015'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:01.284015', '2020-04-22 03:35:01.284015'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:01.286541', '2020-04-22 03:35:01.286541'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:01.286541', '2020-04-22 03:35:01.286541'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:01.289276', '2020-04-22 03:35:01.289276'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:01.289276', '2020-04-22 03:35:01.289276')

 (0.4ms)  begin transaction
 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Fixtures Load (3.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:01.265104', '2020-04-22 03:35:01.265104'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:01.265104', '2020-04-22 03:35:01.265104'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:01.269950', '2020-04-22 03:35:01.269950', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:01.269950', '2020-04-22 03:35:01.269950', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:01.273206', '2020-04-22 03:35:01.273206'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:01.273206', '2020-04-22 03:35:01.273206'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:01.276603', '2020-04-22 03:35:01.276603'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:01.276603', '2020-04-22 03:35:01.276603'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:01.278917', '2020-04-22 03:35:01.278917'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:01.278917', '2020-04-22 03:35:01.278917'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:01.281264', '2020-04-22 03:35:01.281264'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:01.281264', '2020-04-22 03:35:01.281264'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:01.287384', '2020-04-22 03:35:01.287384'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:01.287384', '2020-04-22 03:35:01.287384')

 (2.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:01.334531"], ["updated_at", "2020-04-22 03:35:01.334531"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.4ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.368515"], ["updated_at", "2020-04-22 03:35:01.368515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:01.383927"], ["updated_at", "2020-04-22 03:35:01.383927"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.395890"], ["updated_at", "2020-04-22 03:35:01.395890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.414353"], ["updated_at", "2020-04-22 03:35:01.414353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.451045"], ["updated_at", "2020-04-22 03:35:01.451045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.2ms)  rollback transaction
 (1.0ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:35:01.478563"], ["updated_at", "2020-04-22 03:35:01.478563"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.481986"], ["updated_at", "2020-04-22 03:35:01.481986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.485196"], ["updated_at", "2020-04-22 03:35:01.485196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:35:01.622408"], ["updated_at", "2020-04-22 03:35:01.622408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:35:01.636711"], ["updated_at", "2020-04-22 03:35:01.636711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 9ccd88bd-0dca-49d3-8973-1653780f19c3) to Async(default)

 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:01.755393"], ["updated_at", "2020-04-22 03:35:01.755393"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.758561"], ["updated_at", "2020-04-22 03:35:01.758561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.764730"], ["updated_at", "2020-04-22 03:35:01.764730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:01.767905"], ["updated_at", "2020-04-22 03:35:01.767905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:01.772631"], ["updated_at", "2020-04-22 03:35:01.772631"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.775046"], ["updated_at", "2020-04-22 03:35:01.775046"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.777884"], ["updated_at", "2020-04-22 03:35:01.777884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:35:01.780316"], ["updated_at", "2020-04-22 03:35:01.780316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:01.782706"], ["updated_at", "2020-04-22 03:35:01.782706"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.786711"], ["updated_at", "2020-04-22 03:35:01.786711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.789090"], ["updated_at", "2020-04-22 03:35:01.789090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:01.801159"], ["updated_at", "2020-04-22 03:35:01.801159"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:01.805354"], ["updated_at", "2020-04-22 03:35:01.805354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:01.807821"], ["updated_at", "2020-04-22 03:35:01.807821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
CACHE Recording Load (0.0ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
Rendering courses/index.html.erb within layouts/application
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


Course Load (0.8ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 3.9ms | Allocations: 640)
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Webpacker

Compiling…

ActiveJob
CourseRecommendationMailerJob
9ccd88bd-0dca-49d3-8973-1653780f19c3

Performing CourseRecommendationMailerJob (Job ID: 9ccd88bd-0dca-49d3-8973-1653780f19c3) from Async(default) enqueued at 2020-04-22T03:35:01Z

ActiveJob
CourseRecommendationMailerJob
9ccd88bd-0dca-49d3-8973-1653780f19c3

Performed CourseRecommendationMailerJob (Job ID: 9ccd88bd-0dca-49d3-8973-1653780f19c3) from Async(default) in 2.53ms

 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:05.184207"], ["updated_at", "2020-04-22 03:35:05.184207"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.188824"], ["updated_at", "2020-04-22 03:35:05.188824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.192295"], ["updated_at", "2020-04-22 03:35:05.192295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:05.211675"], ["updated_at", "2020-04-22 03:35:05.211675"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.215797"], ["updated_at", "2020-04-22 03:35:05.215797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.218406"], ["updated_at", "2020-04-22 03:35:05.218406"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:05.249841"], ["updated_at", "2020-04-22 03:35:05.249841"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.252129"], ["updated_at", "2020-04-22 03:35:05.252129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.256456"], ["updated_at", "2020-04-22 03:35:05.256456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.283905"], ["updated_at", "2020-04-22 03:35:05.283905"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.287416"], ["updated_at", "2020-04-22 03:35:05.287416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.290775"], ["updated_at", "2020-04-22 03:35:05.290775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.5ms | Allocations: 414)

Completed 200 OK in 19ms (Views: 11.2ms | ActiveRecord: 1.3ms | Allocations: 4054)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.324114"], ["updated_at", "2020-04-22 03:35:05.324114"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.327027"], ["updated_at", "2020-04-22 03:35:05.327027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.329127"], ["updated_at", "2020-04-22 03:35:05.329127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 9)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 675)

 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.357192"], ["updated_at", "2020-04-22 03:35:05.357192"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.360097"], ["updated_at", "2020-04-22 03:35:05.360097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.362216"], ["updated_at", "2020-04-22 03:35:05.362216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.374233"], ["updated_at", "2020-04-22 03:35:05.374233"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.377612"], ["updated_at", "2020-04-22 03:35:05.377612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.380483"], ["updated_at", "2020-04-22 03:35:05.380483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.7ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.391626"], ["updated_at", "2020-04-22 03:35:05.391626"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.394684"], ["updated_at", "2020-04-22 03:35:05.394684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.398210"], ["updated_at", "2020-04-22 03:35:05.398210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.413328"], ["updated_at", "2020-04-22 03:35:05.413328"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.417779"], ["updated_at", "2020-04-22 03:35:05.417779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.419978"], ["updated_at", "2020-04-22 03:35:05.419978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.429416"], ["updated_at", "2020-04-22 03:35:05.429416"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.432807"], ["updated_at", "2020-04-22 03:35:05.432807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.434943"], ["updated_at", "2020-04-22 03:35:05.434943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (2.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.456392"], ["updated_at", "2020-04-22 03:35:05.456392"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.460464"], ["updated_at", "2020-04-22 03:35:05.460464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.463768"], ["updated_at", "2020-04-22 03:35:05.463768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.485120"], ["updated_at", "2020-04-22 03:35:05.485120"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.489737"], ["updated_at", "2020-04-22 03:35:05.489737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.491666"], ["updated_at", "2020-04-22 03:35:05.491666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.3ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.516546"], ["updated_at", "2020-04-22 03:35:05.516546"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.521835"], ["updated_at", "2020-04-22 03:35:05.521835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.525058"], ["updated_at", "2020-04-22 03:35:05.525058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.544716"], ["updated_at", "2020-04-22 03:35:05.544716"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.547903"], ["updated_at", "2020-04-22 03:35:05.547903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.550645"], ["updated_at", "2020-04-22 03:35:05.550645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.561726"], ["updated_at", "2020-04-22 03:35:05.561726"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.565199"], ["updated_at", "2020-04-22 03:35:05.565199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.568547"], ["updated_at", "2020-04-22 03:35:05.568547"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.583932"], ["updated_at", "2020-04-22 03:35:05.583932"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.586199"], ["updated_at", "2020-04-22 03:35:05.586199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.589716"], ["updated_at", "2020-04-22 03:35:05.589716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.600757"], ["updated_at", "2020-04-22 03:35:05.600757"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.604251"], ["updated_at", "2020-04-22 03:35:05.604251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.607576"], ["updated_at", "2020-04-22 03:35:05.607576"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.9ms)  rollback transaction
 (0.7ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:35:05.626175"], ["updated_at", "2020-04-22 03:35:05.626175"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.628276"], ["updated_at", "2020-04-22 03:35:05.628276"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.630277"], ["updated_at", "2020-04-22 03:35:05.630277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:05.672936"], ["updated_at", "2020-04-22 03:35:05.672936"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.675868"], ["updated_at", "2020-04-22 03:35:05.675868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.679605"], ["updated_at", "2020-04-22 03:35:05.679605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:05.682967"], ["updated_at", "2020-04-22 03:35:05.682967"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:35:05.702474"], ["updated_at", "2020-04-22 03:35:05.702474"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:35:05.707703"], ["updated_at", "2020-04-22 03:35:05.707703"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:05.718634"], ["updated_at", "2020-04-22 03:35:05.718634"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:05.723120"], ["updated_at", "2020-04-22 03:35:05.723120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:05.725005"], ["updated_at", "2020-04-22 03:35:05.725005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:05.729209"], ["updated_at", "2020-04-22 03:35:05.729209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Webpacker

Compiled all packs in /Users/dain/opencourse/public/packs-test

Webpacker

Hash: 84929a3b39f03ccfd86d

Version: webpack 4.42.1 Time: 3273ms Built at: 04/21/2020 11:35:09 PM

                                 Asset       Size       Chunks                         Chunk Names
js/application-beb94e39e00d815806de.js    124 KiB  application  [emitted] [immutable]  application

js/application-beb94e39e00d815806de.js.map 139 KiB application [emitted] [dev] application

manifest.json  384 bytes               [emitted]

Entrypoint application = js/application-beb94e39e00d815806de.js js/application-beb94e39e00d815806de.js.map

./app/javascript/channels sync recursive _channel.js$

./app/javascript/channels sync _channel.js$ 160 bytes {application} [built]

./app/javascript/channels/index.js

211 bytes {application} [built]

./app/javascript/packs/application.js

749 bytes {application} [built]

./node_modules/webpack/buildin/module.js

(webpack)/buildin/module.js 552 bytes {application} [built]

+ 3 hidden modules

Completed 200 OK in 7562ms (Views: 7550.1ms | ActiveRecord: 0.8ms | Allocations: 11546)

 (0.6ms)  rollback transaction
 (1.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (27.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (32.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (1.4ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:40.522759', '2020-04-22 03:35:40.522759'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:40.522759', '2020-04-22 03:35:40.522759'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:40.528758', '2020-04-22 03:35:40.528758', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:40.528758', '2020-04-22 03:35:40.528758', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:40.530162', '2020-04-22 03:35:40.530162'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:40.530162', '2020-04-22 03:35:40.530162'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:40.531947', '2020-04-22 03:35:40.531947'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:40.531947', '2020-04-22 03:35:40.531947'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:40.533442', '2020-04-22 03:35:40.533442'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:40.533442', '2020-04-22 03:35:40.533442'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:40.535195', '2020-04-22 03:35:40.535195'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:40.535195', '2020-04-22 03:35:40.535195'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:40.536588', '2020-04-22 03:35:40.536588'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:40.536588', '2020-04-22 03:35:40.536588')

 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (3.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Fixtures Load (1.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:40.522763', '2020-04-22 03:35:40.522763'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:40.522763', '2020-04-22 03:35:40.522763'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:40.528799', '2020-04-22 03:35:40.528799', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:40.528799', '2020-04-22 03:35:40.528799', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:40.530669', '2020-04-22 03:35:40.530669'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:40.530669', '2020-04-22 03:35:40.530669'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:40.532995', '2020-04-22 03:35:40.532995'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:40.532995', '2020-04-22 03:35:40.532995'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:40.535075', '2020-04-22 03:35:40.535075'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:40.535075', '2020-04-22 03:35:40.535075'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:40.537671', '2020-04-22 03:35:40.537671'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:40.537671', '2020-04-22 03:35:40.537671'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:40.539728', '2020-04-22 03:35:40.539728'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:40.539728', '2020-04-22 03:35:40.539728')

 (0.0ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (1.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CoursesControllerTest: test_index


 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:40.719905"], ["updated_at", "2020-04-22 03:35:40.719905"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.724134"], ["updated_at", "2020-04-22 03:35:40.724134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.723106"], ["updated_at", "2020-04-22 03:35:40.723106"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.736705"], ["updated_at", "2020-04-22 03:35:40.736705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:40.739265"], ["updated_at", "2020-04-22 03:35:40.739265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.740406"], ["updated_at", "2020-04-22 03:35:40.740406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:40.741641"], ["updated_at", "2020-04-22 03:35:40.741641"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.743687"], ["updated_at", "2020-04-22 03:35:40.743687"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.745623"], ["updated_at", "2020-04-22 03:35:40.745623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:35:40.747727"], ["updated_at", "2020-04-22 03:35:40.747727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.750915"], ["updated_at", "2020-04-22 03:35:40.750915"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (8.9ms)  rollback transaction

Processing by CoursesController#index as HTML

 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
Rendering courses/index.html.erb within layouts/application
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.3ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 4.4ms | Allocations: 656)
 (0.3ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:35:40.801618"], ["updated_at", "2020-04-22 03:35:40.801618"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.804934"], ["updated_at", "2020-04-22 03:35:40.804934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.809187"], ["updated_at", "2020-04-22 03:35:40.809187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.825308"], ["updated_at", "2020-04-22 03:35:40.825308"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.832326"], ["updated_at", "2020-04-22 03:35:40.832326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.833945"], ["updated_at", "2020-04-22 03:35:40.833945"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Webpacker

Everything's up-to-date. Nothing to do

 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"

Completed 200 OK in 79ms (Views: 66.8ms | ActiveRecord: 0.2ms | Allocations: 10847)

Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.0ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.844351"], ["updated_at", "2020-04-22 03:35:40.844351"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.844249"], ["updated_at", "2020-04-22 03:35:40.844249"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.846735"], ["updated_at", "2020-04-22 03:35:40.846735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.846998"], ["updated_at", "2020-04-22 03:35:40.846998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.848851"], ["updated_at", "2020-04-22 03:35:40.848851"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.848728"], ["updated_at", "2020-04-22 03:35:40.848728"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (2.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.876310"], ["updated_at", "2020-04-22 03:35:40.876310"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.879842"], ["updated_at", "2020-04-22 03:35:40.879842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.881919"], ["updated_at", "2020-04-22 03:35:40.881919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.7ms)  rollback transaction
 (9.8ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.899896"], ["updated_at", "2020-04-22 03:35:40.899896"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.903180"], ["updated_at", "2020-04-22 03:35:40.903180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.905393"], ["updated_at", "2020-04-22 03:35:40.905393"]]
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.0ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:40.932141"], ["updated_at", "2020-04-22 03:35:40.932141"]]
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.934718"], ["updated_at", "2020-04-22 03:35:40.934718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:40.934521"], ["updated_at", "2020-04-22 03:35:40.934521"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.938531"], ["updated_at", "2020-04-22 03:35:40.938531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.941144"], ["updated_at", "2020-04-22 03:35:40.941144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.5ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.0ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.947603"], ["updated_at", "2020-04-22 03:35:40.947603"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  rollback transaction
Recording Load (0.4ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction
 (1.3ms)  rollback transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:40.964338"], ["updated_at", "2020-04-22 03:35:40.964338"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.968120"], ["updated_at", "2020-04-22 03:35:40.968120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.970803"], ["updated_at", "2020-04-22 03:35:40.970803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:40.981713"], ["updated_at", "2020-04-22 03:35:40.981713"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.983357"], ["updated_at", "2020-04-22 03:35:40.983357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:40.985001"], ["updated_at", "2020-04-22 03:35:40.985001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:40.994877"], ["updated_at", "2020-04-22 03:35:40.994877"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:40.997815"], ["updated_at", "2020-04-22 03:35:40.997815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.000079"], ["updated_at", "2020-04-22 03:35:41.000079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:41.090291"], ["updated_at", "2020-04-22 03:35:41.090291"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.092445"], ["updated_at", "2020-04-22 03:35:41.092445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.094236"], ["updated_at", "2020-04-22 03:35:41.094236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.3ms | Allocations: 418)

Completed 200 OK in 20ms (Views: 8.7ms | ActiveRecord: 0.2ms | Allocations: 5074)

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:41.124662"], ["updated_at", "2020-04-22 03:35:41.124662"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.127297"], ["updated_at", "2020-04-22 03:35:41.127297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.130250"], ["updated_at", "2020-04-22 03:35:41.130250"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.0ms | Allocations: 5)

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 679)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.4ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:35:41.140523"], ["updated_at", "2020-04-22 03:35:41.140523"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.144118"], ["updated_at", "2020-04-22 03:35:41.144118"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.145755"], ["updated_at", "2020-04-22 03:35:41.145755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.172763"], ["updated_at", "2020-04-22 03:35:41.172763"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.174608"], ["updated_at", "2020-04-22 03:35:41.174608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.176722"], ["updated_at", "2020-04-22 03:35:41.176722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:41.178835"], ["updated_at", "2020-04-22 03:35:41.178835"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:35:41.180294"], ["updated_at", "2020-04-22 03:35:41.180294"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:35:41.181433"], ["updated_at", "2020-04-22 03:35:41.181433"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:41.184905"], ["updated_at", "2020-04-22 03:35:41.184905"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.190103"], ["updated_at", "2020-04-22 03:35:41.190103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.195742"], ["updated_at", "2020-04-22 03:35:41.195742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:35:41.203700"], ["updated_at", "2020-04-22 03:35:41.203700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:35:41.232056"], ["updated_at", "2020-04-22 03:35:41.232056"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 7c1846e7-bce8-4cbf-a681-6960cb5058cd) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:35:41.246934"], ["updated_at", "2020-04-22 03:35:41.246934"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:35:41.254984"], ["updated_at", "2020-04-22 03:35:41.254984"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.259971"], ["updated_at", "2020-04-22 03:35:41.259971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.266017"], ["updated_at", "2020-04-22 03:35:41.266017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.272565"], ["updated_at", "2020-04-22 03:35:41.272565"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.274542"], ["updated_at", "2020-04-22 03:35:41.274542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.275905"], ["updated_at", "2020-04-22 03:35:41.275905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.294393"], ["updated_at", "2020-04-22 03:35:41.294393"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.296937"], ["updated_at", "2020-04-22 03:35:41.296937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.298290"], ["updated_at", "2020-04-22 03:35:41.298290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob
CourseRecommendationMailerJob
7c1846e7-bce8-4cbf-a681-6960cb5058cd

Performing CourseRecommendationMailerJob (Job ID: 7c1846e7-bce8-4cbf-a681-6960cb5058cd) from Async(default) enqueued at 2020-04-22T03:35:41Z

ActiveJob
CourseRecommendationMailerJob
7c1846e7-bce8-4cbf-a681-6960cb5058cd

Performed CourseRecommendationMailerJob (Job ID: 7c1846e7-bce8-4cbf-a681-6960cb5058cd) from Async(default) in 0.13ms

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.319456"], ["updated_at", "2020-04-22 03:35:41.319456"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.322221"], ["updated_at", "2020-04-22 03:35:41.322221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.323825"], ["updated_at", "2020-04-22 03:35:41.323825"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.331322"], ["updated_at", "2020-04-22 03:35:41.331322"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.342613"], ["updated_at", "2020-04-22 03:35:41.342613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.344488"], ["updated_at", "2020-04-22 03:35:41.344488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.354258"], ["updated_at", "2020-04-22 03:35:41.354258"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.358123"], ["updated_at", "2020-04-22 03:35:41.358123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.360087"], ["updated_at", "2020-04-22 03:35:41.360087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.369226"], ["updated_at", "2020-04-22 03:35:41.369226"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.371120"], ["updated_at", "2020-04-22 03:35:41.371120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.372798"], ["updated_at", "2020-04-22 03:35:41.372798"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.0ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:35:41.380247"], ["updated_at", "2020-04-22 03:35:41.380247"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:41.381964"], ["updated_at", "2020-04-22 03:35:41.381964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:41.383002"], ["updated_at", "2020-04-22 03:35:41.383002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.6ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (15.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (22.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:54.384219', '2020-04-22 03:35:54.384219'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:54.384219', '2020-04-22 03:35:54.384219'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:54.387653', '2020-04-22 03:35:54.387653', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:54.387653', '2020-04-22 03:35:54.387653', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:54.390318', '2020-04-22 03:35:54.390318'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:54.390318', '2020-04-22 03:35:54.390318'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:54.392715', '2020-04-22 03:35:54.392715'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:54.392715', '2020-04-22 03:35:54.392715'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:54.395008', '2020-04-22 03:35:54.395008'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:54.395008', '2020-04-22 03:35:54.395008'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:54.396797', '2020-04-22 03:35:54.396797'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:54.396797', '2020-04-22 03:35:54.396797'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:54.398834', '2020-04-22 03:35:54.398834'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:54.398834', '2020-04-22 03:35:54.398834')

 (0.1ms)  PRAGMA foreign_keys
 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


Fixtures Load (1.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:35:54.389528', '2020-04-22 03:35:54.389528'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:35:54.389528', '2020-04-22 03:35:54.389528'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:35:54.393016', '2020-04-22 03:35:54.393016', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:35:54.393016', '2020-04-22 03:35:54.393016', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:35:54.394307', '2020-04-22 03:35:54.394307'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:54.394307', '2020-04-22 03:35:54.394307'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:54.395848', '2020-04-22 03:35:54.395848'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:35:54.395848', '2020-04-22 03:35:54.395848'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:35:54.397594', '2020-04-22 03:35:54.397594'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:35:54.397594', '2020-04-22 03:35:54.397594'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:35:54.399873', '2020-04-22 03:35:54.399873'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:35:54.399873', '2020-04-22 03:35:54.399873'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:35:54.402125', '2020-04-22 03:35:54.402125'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:35:54.402125', '2020-04-22 03:35:54.402125')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.4ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:35:54.443197"], ["updated_at", "2020-04-22 03:35:54.443197"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (5.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:35:54.476329"], ["updated_at", "2020-04-22 03:35:54.476329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:35:54.498508"], ["updated_at", "2020-04-22 03:35:54.498508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (7.6ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (16.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (15.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Fixtures Load (1.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:52:42.282811', '2020-04-22 03:52:42.282811'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:52:42.282811', '2020-04-22 03:52:42.282811'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:52:42.290505', '2020-04-22 03:52:42.290505', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:52:42.290505', '2020-04-22 03:52:42.290505', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:52:42.293546', '2020-04-22 03:52:42.293546'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:52:42.293546', '2020-04-22 03:52:42.293546'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:52:42.298822', '2020-04-22 03:52:42.298822'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:52:42.298822', '2020-04-22 03:52:42.298822'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:52:42.302098', '2020-04-22 03:52:42.302098'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:52:42.302098', '2020-04-22 03:52:42.302098'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:52:42.308331', '2020-04-22 03:52:42.308331'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:52:42.308331', '2020-04-22 03:52:42.308331'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:52:42.473810', '2020-04-22 03:52:42.473810'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:52:42.473810', '2020-04-22 03:52:42.473810')

Fixtures Load (13.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:52:42.294808', '2020-04-22 03:52:42.294808'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:52:42.294808', '2020-04-22 03:52:42.294808'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:52:42.313522', '2020-04-22 03:52:42.313522', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:52:42.313522', '2020-04-22 03:52:42.313522', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:52:42.317651', '2020-04-22 03:52:42.317651'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:52:42.317651', '2020-04-22 03:52:42.317651'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:52:42.327467', '2020-04-22 03:52:42.327467'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:52:42.327467', '2020-04-22 03:52:42.327467'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:52:42.330380', '2020-04-22 03:52:42.330380'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:52:42.330380', '2020-04-22 03:52:42.330380'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:52:42.332880', '2020-04-22 03:52:42.332880'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:52:42.332880', '2020-04-22 03:52:42.332880'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:52:42.400703', '2020-04-22 03:52:42.400703'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:52:42.400703', '2020-04-22 03:52:42.400703')

 (8.9ms)  commit transaction
 (5.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (1.4ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (2.8ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method



Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.6ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:52:42.580753"], ["updated_at", "2020-04-22 03:52:42.580753"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:52:42.607746"], ["updated_at", "2020-04-22 03:52:42.607746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:52:42.629314"], ["updated_at", "2020-04-22 03:52:42.629314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (19.5ms)  rollback transaction
 (1.6ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (58.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Fixtures Load (5.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:57:20.587189', '2020-04-22 03:57:20.587189'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:57:20.587189', '2020-04-22 03:57:20.587189'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:57:20.594416', '2020-04-22 03:57:20.594416', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:57:20.594416', '2020-04-22 03:57:20.594416', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:57:20.596505', '2020-04-22 03:57:20.596505'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:20.596505', '2020-04-22 03:57:20.596505'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:20.599154', '2020-04-22 03:57:20.599154'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:20.599154', '2020-04-22 03:57:20.599154'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:57:20.646574', '2020-04-22 03:57:20.646574'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:57:20.646574', '2020-04-22 03:57:20.646574'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:57:20.652280', '2020-04-22 03:57:20.652280'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:57:20.652280', '2020-04-22 03:57:20.652280'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:57:20.654167', '2020-04-22 03:57:20.654167'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:20.654167', '2020-04-22 03:57:20.654167')

 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:57:20.596738', '2020-04-22 03:57:20.596738'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:57:20.596738', '2020-04-22 03:57:20.596738'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:57:20.646750', '2020-04-22 03:57:20.646750', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:57:20.646750', '2020-04-22 03:57:20.646750', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:57:20.649230', '2020-04-22 03:57:20.649230'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:20.649230', '2020-04-22 03:57:20.649230'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:20.652050', '2020-04-22 03:57:20.652050'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:20.652050', '2020-04-22 03:57:20.652050'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:57:20.654208', '2020-04-22 03:57:20.654208'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:57:20.654208', '2020-04-22 03:57:20.654208'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:57:20.656175', '2020-04-22 03:57:20.656175'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:57:20.656175', '2020-04-22 03:57:20.656175'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:57:20.659330', '2020-04-22 03:57:20.659330'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:20.659330', '2020-04-22 03:57:20.659330')

 (11.5ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (16.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:20.808482"], ["updated_at", "2020-04-22 03:57:20.808482"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:20.827045"], ["updated_at", "2020-04-22 03:57:20.827045"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:20.831393"], ["updated_at", "2020-04-22 03:57:20.831393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:20.848047"], ["updated_at", "2020-04-22 03:57:20.848047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:20.850253"], ["updated_at", "2020-04-22 03:57:20.850253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:20.877617"], ["updated_at", "2020-04-22 03:57:20.877617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Track Create (2.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:57:20.861200"], ["updated_at", "2020-04-22 03:57:20.861200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:57:20.887925"], ["updated_at", "2020-04-22 03:57:20.887925"]]
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:57:20.887971"], ["updated_at", "2020-04-22 03:57:20.887971"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:57:20.890427"], ["updated_at", "2020-04-22 03:57:20.890427"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.124385"], ["updated_at", "2020-04-22 03:57:21.124385"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.126567"], ["updated_at", "2020-04-22 03:57:21.126567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.129913"], ["updated_at", "2020-04-22 03:57:21.129913"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.148330"], ["updated_at", "2020-04-22 03:57:21.148330"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.155937"], ["updated_at", "2020-04-22 03:57:21.155937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.157934"], ["updated_at", "2020-04-22 03:57:21.157934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
Rendering courses/index.html.erb within layouts/application
Course Load (0.7ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 3.6ms | Allocations: 659)
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.6ms | Allocations: 446)

Completed 200 OK in 27ms (Views: 14.9ms | ActiveRecord: 0.5ms | Allocations: 5714)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.201900"], ["updated_at", "2020-04-22 03:57:21.201900"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.203983"], ["updated_at", "2020-04-22 03:57:21.203983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.206975"], ["updated_at", "2020-04-22 03:57:21.206975"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.0ms | Allocations: 5)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms | Allocations: 679)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
Webpacker

Everything's up-to-date. Nothing to do

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction

Completed 200 OK in 90ms (Views: 71.6ms | ActiveRecord: 0.7ms | Allocations: 12136)

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.9ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:57:21.251537"], ["updated_at", "2020-04-22 03:57:21.251537"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.254079"], ["updated_at", "2020-04-22 03:57:21.254079"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.256060"], ["updated_at", "2020-04-22 03:57:21.256060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.278389"], ["updated_at", "2020-04-22 03:57:21.278389"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.279169"], ["updated_at", "2020-04-22 03:57:21.279169"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.283019"], ["updated_at", "2020-04-22 03:57:21.283019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.282994"], ["updated_at", "2020-04-22 03:57:21.282994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.285451"], ["updated_at", "2020-04-22 03:57:21.285451"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.285557"], ["updated_at", "2020-04-22 03:57:21.285557"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  begin transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')

SearchableTest: test_find_all_by_count


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.296060"], ["updated_at", "2020-04-22 03:57:21.296060"]]
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.299197"], ["updated_at", "2020-04-22 03:57:21.299197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.299494"], ["updated_at", "2020-04-22 03:57:21.299494"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.301584"], ["updated_at", "2020-04-22 03:57:21.301584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.303067"], ["updated_at", "2020-04-22 03:57:21.303067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.304745"], ["updated_at", "2020-04-22 03:57:21.304745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  begin transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"

SearchableTest: test_find_none_matches_classes


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.310736"], ["updated_at", "2020-04-22 03:57:21.310736"]]
 (0.1ms)  begin transaction

TrackTest: test_track_valid


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.313529"], ["updated_at", "2020-04-22 03:57:21.313529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.315620"], ["updated_at", "2020-04-22 03:57:21.315620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:21.330541"], ["updated_at", "2020-04-22 03:57:21.330541"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.341065"], ["updated_at", "2020-04-22 03:57:21.341065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.343415"], ["updated_at", "2020-04-22 03:57:21.343415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:57:21.343404"], ["updated_at", "2020-04-22 03:57:21.343404"]]
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:57:21.345789"], ["updated_at", "2020-04-22 03:57:21.345789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.346055"], ["updated_at", "2020-04-22 03:57:21.346055"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.349710"], ["updated_at", "2020-04-22 03:57:21.349710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:21.353505"], ["updated_at", "2020-04-22 03:57:21.353505"]]
 (4.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.356200"], ["updated_at", "2020-04-22 03:57:21.356200"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.358474"], ["updated_at", "2020-04-22 03:57:21.358474"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:57:21.360559"], ["updated_at", "2020-04-22 03:57:21.360559"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.362656"], ["updated_at", "2020-04-22 03:57:21.362656"]]

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.367510"], ["updated_at", "2020-04-22 03:57:21.367510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.369357"], ["updated_at", "2020-04-22 03:57:21.369357"]]
 (0.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (2.7ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:57:21.383792"], ["updated_at", "2020-04-22 03:57:21.383792"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.386957"], ["updated_at", "2020-04-22 03:57:21.386957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.389067"], ["updated_at", "2020-04-22 03:57:21.389067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.7ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:57:21.435270"], ["updated_at", "2020-04-22 03:57:21.435270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 8010ccda-3b9d-42b6-b49b-42ddf6c89c53) to Async(default)

ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ActiveJob
CourseRecommendationMailerJob
8010ccda-3b9d-42b6-b49b-42ddf6c89c53

Performing CourseRecommendationMailerJob (Job ID: 8010ccda-3b9d-42b6-b49b-42ddf6c89c53) from Async(default) enqueued at 2020-04-22T03:57:21Z

ActiveJob
CourseRecommendationMailerJob
8010ccda-3b9d-42b6-b49b-42ddf6c89c53

Performed CourseRecommendationMailerJob (Job ID: 8010ccda-3b9d-42b6-b49b-42ddf6c89c53) from Async(default) in 0.2ms

 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:57:21.509899"], ["updated_at", "2020-04-22 03:57:21.509899"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.512114"], ["updated_at", "2020-04-22 03:57:21.512114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.514202"], ["updated_at", "2020-04-22 03:57:21.514202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (1.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:57:21.696460"], ["updated_at", "2020-04-22 03:57:21.696460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:57:21.720382"], ["updated_at", "2020-04-22 03:57:21.720382"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.726155"], ["updated_at", "2020-04-22 03:57:21.726155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.749538"], ["updated_at", "2020-04-22 03:57:21.749538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:57:21.801280"], ["updated_at", "2020-04-22 03:57:21.801280"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.803536"], ["updated_at", "2020-04-22 03:57:21.803536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.807090"], ["updated_at", "2020-04-22 03:57:21.807090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:57:21.819902"], ["updated_at", "2020-04-22 03:57:21.819902"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:21.822691"], ["updated_at", "2020-04-22 03:57:21.822691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:21.826593"], ["updated_at", "2020-04-22 03:57:21.826593"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (14.1ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:22.038941"], ["updated_at", "2020-04-22 03:57:22.038941"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:22.101087"], ["updated_at", "2020-04-22 03:57:22.101087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:22.135371"], ["updated_at", "2020-04-22 03:57:22.135371"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (8.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (25.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:22.640331"], ["updated_at", "2020-04-22 03:57:22.640331"]]
Bucket Create (17.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:22.718101"], ["updated_at", "2020-04-22 03:57:22.718101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:22.812060"], ["updated_at", "2020-04-22 03:57:22.812060"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (9.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (34.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:23.075858"], ["updated_at", "2020-04-22 03:57:23.075858"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:23.208468"], ["updated_at", "2020-04-22 03:57:23.208468"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:23.239921"], ["updated_at", "2020-04-22 03:57:23.239921"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (77.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (10.2ms)  rollback transaction
 (2.9ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (18.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:23.488827"], ["updated_at", "2020-04-22 03:57:23.488827"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:23.521075"], ["updated_at", "2020-04-22 03:57:23.521075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:23.766110"], ["updated_at", "2020-04-22 03:57:23.766110"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (45.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (1.4ms)  SAVEPOINT active_record_1
Course Create (7.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:24.050145"], ["updated_at", "2020-04-22 03:57:24.050145"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:24.072925"], ["updated_at", "2020-04-22 03:57:24.072925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:24.241708"], ["updated_at", "2020-04-22 03:57:24.241708"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:24.249385"], ["updated_at", "2020-04-22 03:57:24.249385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:24.253836"], ["updated_at", "2020-04-22 03:57:24.253836"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:24.214716"], ["updated_at", "2020-04-22 03:57:24.214716"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:57:24.506048"], ["updated_at", "2020-04-22 03:57:24.506048"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:57:24.645428"], ["updated_at", "2020-04-22 03:57:24.645428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (10.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Comment Load (1.7ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Recording Create (10.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:57:24.653289"], ["updated_at", "2020-04-22 03:57:24.653289"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (22.0ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.5ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.6ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (289.7ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (13.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (16.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:57:35.451771', '2020-04-22 03:57:35.451771'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:57:35.451771', '2020-04-22 03:57:35.451771'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:57:35.457158', '2020-04-22 03:57:35.457158', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:57:35.457158', '2020-04-22 03:57:35.457158', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:57:35.459722', '2020-04-22 03:57:35.459722'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:35.459722', '2020-04-22 03:57:35.459722'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:35.469662', '2020-04-22 03:57:35.469662'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:57:35.469662', '2020-04-22 03:57:35.469662'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:57:35.472177', '2020-04-22 03:57:35.472177'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:57:35.472177', '2020-04-22 03:57:35.472177'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:57:35.473429', '2020-04-22 03:57:35.473429'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:57:35.473429', '2020-04-22 03:57:35.473429'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:57:35.474678', '2020-04-22 03:57:35.474678'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:57:35.474678', '2020-04-22 03:57:35.474678')

 (9.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (2.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (26.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (24.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:58:12.030870', '2020-04-22 03:58:12.030870'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:58:12.030870', '2020-04-22 03:58:12.030870'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:58:12.035052', '2020-04-22 03:58:12.035052', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:58:12.035052', '2020-04-22 03:58:12.035052', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:58:12.036667', '2020-04-22 03:58:12.036667'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:12.036667', '2020-04-22 03:58:12.036667'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:12.038218', '2020-04-22 03:58:12.038218'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:12.038218', '2020-04-22 03:58:12.038218'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:58:12.040467', '2020-04-22 03:58:12.040467'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:58:12.040467', '2020-04-22 03:58:12.040467'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:58:12.042785', '2020-04-22 03:58:12.042785'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:58:12.042785', '2020-04-22 03:58:12.042785'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:58:12.044831', '2020-04-22 03:58:12.044831'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:12.044831', '2020-04-22 03:58:12.044831')

 (1.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (22.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (21.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:58:39.436881', '2020-04-22 03:58:39.436881'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:58:39.436881', '2020-04-22 03:58:39.436881'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:58:39.440044', '2020-04-22 03:58:39.440044', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:58:39.440044', '2020-04-22 03:58:39.440044', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:58:39.441969', '2020-04-22 03:58:39.441969'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:39.441969', '2020-04-22 03:58:39.441969'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:39.444343', '2020-04-22 03:58:39.444343'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:39.444343', '2020-04-22 03:58:39.444343'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:58:39.446427', '2020-04-22 03:58:39.446427'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:58:39.446427', '2020-04-22 03:58:39.446427'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:58:39.447883', '2020-04-22 03:58:39.447883'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:58:39.447883', '2020-04-22 03:58:39.447883'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:58:39.450776', '2020-04-22 03:58:39.450776'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:39.450776', '2020-04-22 03:58:39.450776')

 (1.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:58:39.439000', '2020-04-22 03:58:39.439000'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:58:39.439000', '2020-04-22 03:58:39.439000'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:58:39.443588', '2020-04-22 03:58:39.443588', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:58:39.443588', '2020-04-22 03:58:39.443588', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:58:39.445813', '2020-04-22 03:58:39.445813'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:39.445813', '2020-04-22 03:58:39.445813'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:39.447918', '2020-04-22 03:58:39.447918'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:39.447918', '2020-04-22 03:58:39.447918'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:58:39.453895', '2020-04-22 03:58:39.453895'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:58:39.453895', '2020-04-22 03:58:39.453895'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:58:39.456114', '2020-04-22 03:58:39.456114'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:58:39.456114', '2020-04-22 03:58:39.456114'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:58:39.458288', '2020-04-22 03:58:39.458288'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:39.458288', '2020-04-22 03:58:39.458288')

 (2.1ms)  commit transaction
 (0.1ms)  rollback transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:58:39.510301"], ["updated_at", "2020-04-22 03:58:39.510301"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:39.548630"], ["updated_at", "2020-04-22 03:58:39.548630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:39.563139"], ["updated_at", "2020-04-22 03:58:39.563139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (8.3ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (23.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:58:53.499341', '2020-04-22 03:58:53.499341'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:58:53.499341', '2020-04-22 03:58:53.499341'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:58:53.502506', '2020-04-22 03:58:53.502506', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:58:53.502506', '2020-04-22 03:58:53.502506', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:58:53.503787', '2020-04-22 03:58:53.503787'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:53.503787', '2020-04-22 03:58:53.503787'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:53.505043', '2020-04-22 03:58:53.505043'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:53.505043', '2020-04-22 03:58:53.505043'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:58:53.506460', '2020-04-22 03:58:53.506460'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:58:53.506460', '2020-04-22 03:58:53.506460'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:58:53.510482', '2020-04-22 03:58:53.510482'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:58:53.510482', '2020-04-22 03:58:53.510482'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:58:53.512668', '2020-04-22 03:58:53.512668'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:53.512668', '2020-04-22 03:58:53.512668')

 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:58:53.499403', '2020-04-22 03:58:53.499403'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:58:53.499403', '2020-04-22 03:58:53.499403'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:58:53.503370', '2020-04-22 03:58:53.503370', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:58:53.503370', '2020-04-22 03:58:53.503370', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:58:53.505018', '2020-04-22 03:58:53.505018'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:53.505018', '2020-04-22 03:58:53.505018'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:53.507560', '2020-04-22 03:58:53.507560'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:58:53.507560', '2020-04-22 03:58:53.507560'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:58:53.512701', '2020-04-22 03:58:53.512701'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:58:53.512701', '2020-04-22 03:58:53.512701'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:58:53.514471', '2020-04-22 03:58:53.514471'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:58:53.514471', '2020-04-22 03:58:53.514471'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:58:53.516463', '2020-04-22 03:58:53.516463'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:58:53.516463', '2020-04-22 03:58:53.516463')

 (4.1ms)  commit transaction
 (12.1ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course



CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.7ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:58:53.688995"], ["updated_at", "2020-04-22 03:58:53.688995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:58:53.702184"], ["updated_at", "2020-04-22 03:58:53.702184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 01a2eb15-01fd-448b-b36a-115e72bb69e1) to Async(default)

 (0.1ms)  SAVEPOINT active_record_1
Vault Create (1.0ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:58:53.723620"], ["updated_at", "2020-04-22 03:58:53.723620"]]
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.747080"], ["updated_at", "2020-04-22 03:58:53.747080"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.771929"], ["updated_at", "2020-04-22 03:58:53.771929"]]
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:53.793294"], ["updated_at", "2020-04-22 03:58:53.793294"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.806002"], ["updated_at", "2020-04-22 03:58:53.806002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:53.821097"], ["updated_at", "2020-04-22 03:58:53.821097"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.828300"], ["updated_at", "2020-04-22 03:58:53.828300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.830460"], ["updated_at", "2020-04-22 03:58:53.830460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:58:53.833165"], ["updated_at", "2020-04-22 03:58:53.833165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.833822"], ["updated_at", "2020-04-22 03:58:53.833822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:53.835926"], ["updated_at", "2020-04-22 03:58:53.835926"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.838357"], ["updated_at", "2020-04-22 03:58:53.838357"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
CACHE Recording Load (0.0ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.840678"], ["updated_at", "2020-04-22 03:58:53.840678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:58:53.856871"], ["updated_at", "2020-04-22 03:58:53.856871"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (2.6ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  begin transaction
 (0.1ms)  rollback transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:58:53.899332"], ["updated_at", "2020-04-22 03:58:53.899332"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.901691"], ["updated_at", "2020-04-22 03:58:53.901691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.904073"], ["updated_at", "2020-04-22 03:58:53.904073"]]
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:58:53.906088"], ["updated_at", "2020-04-22 03:58:53.906088"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:58:53.914027"], ["updated_at", "2020-04-22 03:58:53.914027"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.917395"], ["updated_at", "2020-04-22 03:58:53.917395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.909561"], ["updated_at", "2020-04-22 03:58:53.909561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.919577"], ["updated_at", "2020-04-22 03:58:53.919577"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.921554"], ["updated_at", "2020-04-22 03:58:53.921554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (3.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.0ms)  rollback transaction
 (0.5ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:53.964038"], ["updated_at", "2020-04-22 03:58:53.964038"]]
ActiveJob
CourseRecommendationMailerJob
01a2eb15-01fd-448b-b36a-115e72bb69e1

Performing CourseRecommendationMailerJob (Job ID: 01a2eb15-01fd-448b-b36a-115e72bb69e1) from Async(default) enqueued at 2020-04-22T03:58:53Z

ActiveJob
CourseRecommendationMailerJob
01a2eb15-01fd-448b-b36a-115e72bb69e1

Performed CourseRecommendationMailerJob (Job ID: 01a2eb15-01fd-448b-b36a-115e72bb69e1) from Async(default) in 0.14ms

Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.966989"], ["updated_at", "2020-04-22 03:58:53.966989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.969668"], ["updated_at", "2020-04-22 03:58:53.969668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:53.987191"], ["updated_at", "2020-04-22 03:58:53.987191"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:53.988876"], ["updated_at", "2020-04-22 03:58:53.988876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:53.990561"], ["updated_at", "2020-04-22 03:58:53.990561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.012953"], ["updated_at", "2020-04-22 03:58:54.012953"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.015262"], ["updated_at", "2020-04-22 03:58:54.015262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.016800"], ["updated_at", "2020-04-22 03:58:54.016800"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.022302"], ["updated_at", "2020-04-22 03:58:54.022302"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.024836"], ["updated_at", "2020-04-22 03:58:54.024836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.028889"], ["updated_at", "2020-04-22 03:58:54.028889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.049384"], ["updated_at", "2020-04-22 03:58:54.049384"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.053253"], ["updated_at", "2020-04-22 03:58:54.053253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.055321"], ["updated_at", "2020-04-22 03:58:54.055321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.072988"], ["updated_at", "2020-04-22 03:58:54.072988"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.074845"], ["updated_at", "2020-04-22 03:58:54.074845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.075956"], ["updated_at", "2020-04-22 03:58:54.075956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.084589"], ["updated_at", "2020-04-22 03:58:54.084589"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.086385"], ["updated_at", "2020-04-22 03:58:54.086385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.087473"], ["updated_at", "2020-04-22 03:58:54.087473"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.096113"], ["updated_at", "2020-04-22 03:58:54.096113"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.098141"], ["updated_at", "2020-04-22 03:58:54.098141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.099355"], ["updated_at", "2020-04-22 03:58:54.099355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:58:54.109996"], ["updated_at", "2020-04-22 03:58:54.109996"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.113790"], ["updated_at", "2020-04-22 03:58:54.113790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.116558"], ["updated_at", "2020-04-22 03:58:54.116558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.280849"], ["updated_at", "2020-04-22 03:58:54.280849"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.282901"], ["updated_at", "2020-04-22 03:58:54.282901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.284190"], ["updated_at", "2020-04-22 03:58:54.284190"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.9ms | Allocations: 441)

Completed 200 OK in 17ms (Views: 9.3ms | ActiveRecord: 0.4ms | Allocations: 5267)

 (8.7ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.324980"], ["updated_at", "2020-04-22 03:58:54.324980"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.328074"], ["updated_at", "2020-04-22 03:58:54.328074"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.331077"], ["updated_at", "2020-04-22 03:58:54.331077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 9)

Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 687)

 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.351618"], ["updated_at", "2020-04-22 03:58:54.351618"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.353497"], ["updated_at", "2020-04-22 03:58:54.353497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.354738"], ["updated_at", "2020-04-22 03:58:54.354738"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:58:54.357168"], ["updated_at", "2020-04-22 03:58:54.357168"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:58:54.365870"], ["updated_at", "2020-04-22 03:58:54.365870"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.367728"], ["updated_at", "2020-04-22 03:58:54.367728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.368751"], ["updated_at", "2020-04-22 03:58:54.368751"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:58:54.369917"], ["updated_at", "2020-04-22 03:58:54.369917"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:58:54.371122"], ["updated_at", "2020-04-22 03:58:54.371122"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:58:54.372250"], ["updated_at", "2020-04-22 03:58:54.372250"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.377070"], ["updated_at", "2020-04-22 03:58:54.377070"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.379119"], ["updated_at", "2020-04-22 03:58:54.379119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.380375"], ["updated_at", "2020-04-22 03:58:54.380375"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.385964"], ["updated_at", "2020-04-22 03:58:54.385964"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.387755"], ["updated_at", "2020-04-22 03:58:54.387755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.388990"], ["updated_at", "2020-04-22 03:58:54.388990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.399339"], ["updated_at", "2020-04-22 03:58:54.399339"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.401097"], ["updated_at", "2020-04-22 03:58:54.401097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.402485"], ["updated_at", "2020-04-22 03:58:54.402485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.410113"], ["updated_at", "2020-04-22 03:58:54.410113"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.412685"], ["updated_at", "2020-04-22 03:58:54.412685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.413874"], ["updated_at", "2020-04-22 03:58:54.413874"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.418481"], ["updated_at", "2020-04-22 03:58:54.418481"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.420304"], ["updated_at", "2020-04-22 03:58:54.420304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.421461"], ["updated_at", "2020-04-22 03:58:54.421461"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:58:54.433877"], ["updated_at", "2020-04-22 03:58:54.433877"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.435547"], ["updated_at", "2020-04-22 03:58:54.435547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.437072"], ["updated_at", "2020-04-22 03:58:54.437072"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.3ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 2.0ms | Allocations: 362)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 94ms (Views: 92.5ms | ActiveRecord: 0.3ms | Allocations: 8122)

 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:58:54.539772"], ["updated_at", "2020-04-22 03:58:54.539772"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:58:54.557651"], ["updated_at", "2020-04-22 03:58:54.557651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:58:54.559752"], ["updated_at", "2020-04-22 03:58:54.559752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (5.8ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (28.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (14.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.4ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:59:39.588643', '2020-04-22 03:59:39.588643'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:59:39.588643', '2020-04-22 03:59:39.588643'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:59:39.592688', '2020-04-22 03:59:39.592688', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:59:39.592688', '2020-04-22 03:59:39.592688', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:59:39.593881', '2020-04-22 03:59:39.593881'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:59:39.593881', '2020-04-22 03:59:39.593881'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:59:39.595090', '2020-04-22 03:59:39.595090'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:59:39.595090', '2020-04-22 03:59:39.595090'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:59:39.596294', '2020-04-22 03:59:39.596294'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:59:39.596294', '2020-04-22 03:59:39.596294'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:59:39.597659', '2020-04-22 03:59:39.597659'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:59:39.597659', '2020-04-22 03:59:39.597659'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:59:39.598857', '2020-04-22 03:59:39.598857'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:59:39.598857', '2020-04-22 03:59:39.598857')

 (12.0ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 03:59:39.579151', '2020-04-22 03:59:39.579151'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 03:59:39.579151', '2020-04-22 03:59:39.579151'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 03:59:39.583186', '2020-04-22 03:59:39.583186', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 03:59:39.583186', '2020-04-22 03:59:39.583186', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 03:59:39.587234', '2020-04-22 03:59:39.587234'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:59:39.587234', '2020-04-22 03:59:39.587234'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:59:39.589371', '2020-04-22 03:59:39.589371'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 03:59:39.589371', '2020-04-22 03:59:39.589371'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 03:59:39.596669', '2020-04-22 03:59:39.596669'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 03:59:39.596669', '2020-04-22 03:59:39.596669'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 03:59:39.598706', '2020-04-22 03:59:39.598706'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 03:59:39.598706', '2020-04-22 03:59:39.598706'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 03:59:39.601641', '2020-04-22 03:59:39.601641'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 03:59:39.601641', '2020-04-22 03:59:39.601641')

 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.647232"], ["updated_at", "2020-04-22 03:59:39.647232"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.671985"], ["updated_at", "2020-04-22 03:59:39.671985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.676519"], ["updated_at", "2020-04-22 03:59:39.676519"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.691700"], ["updated_at", "2020-04-22 03:59:39.691700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.693668"], ["updated_at", "2020-04-22 03:59:39.693668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.703712"], ["updated_at", "2020-04-22 03:59:39.703712"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.705309"], ["updated_at", "2020-04-22 03:59:39.705309"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.705205"], ["updated_at", "2020-04-22 03:59:39.705205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.706526"], ["updated_at", "2020-04-22 03:59:39.706526"]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:59:39.707170"], ["updated_at", "2020-04-22 03:59:39.707170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:59:39.710235"], ["updated_at", "2020-04-22 03:59:39.710235"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 03:59:39.712507"], ["updated_at", "2020-04-22 03:59:39.712507"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.718924"], ["updated_at", "2020-04-22 03:59:39.718924"]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:59:39.720758"], ["updated_at", "2020-04-22 03:59:39.720758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.721553"], ["updated_at", "2020-04-22 03:59:39.721553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.724891"], ["updated_at", "2020-04-22 03:59:39.724891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 03:59:39.733373"], ["updated_at", "2020-04-22 03:59:39.733373"]]
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.735660"], ["updated_at", "2020-04-22 03:59:39.735660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.737061"], ["updated_at", "2020-04-22 03:59:39.737061"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.754715"], ["updated_at", "2020-04-22 03:59:39.754715"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.757748"], ["updated_at", "2020-04-22 03:59:39.757748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.759465"], ["updated_at", "2020-04-22 03:59:39.759465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 03:59:39.761281"], ["updated_at", "2020-04-22 03:59:39.761281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.763824"], ["updated_at", "2020-04-22 03:59:39.763824"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.766108"], ["updated_at", "2020-04-22 03:59:39.766108"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.771223"], ["updated_at", "2020-04-22 03:59:39.771223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 03:59:39.773318"], ["updated_at", "2020-04-22 03:59:39.773318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success



CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.789841"], ["updated_at", "2020-04-22 03:59:39.789841"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.790372"], ["updated_at", "2020-04-22 03:59:39.790372"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.792693"], ["updated_at", "2020-04-22 03:59:39.792693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.794597"], ["updated_at", "2020-04-22 03:59:39.794597"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.793329"], ["updated_at", "2020-04-22 03:59:39.793329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.797234"], ["updated_at", "2020-04-22 03:59:39.797234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket



CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.823116"], ["updated_at", "2020-04-22 03:59:39.823116"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.825123"], ["updated_at", "2020-04-22 03:59:39.825123"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.827369"], ["updated_at", "2020-04-22 03:59:39.827369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.827439"], ["updated_at", "2020-04-22 03:59:39.827439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.828912"], ["updated_at", "2020-04-22 03:59:39.828912"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.829196"], ["updated_at", "2020-04-22 03:59:39.829196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.837650"], ["updated_at", "2020-04-22 03:59:39.837650"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.839487"], ["updated_at", "2020-04-22 03:59:39.839487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.841136"], ["updated_at", "2020-04-22 03:59:39.841136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.848329"], ["updated_at", "2020-04-22 03:59:39.848329"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.850843"], ["updated_at", "2020-04-22 03:59:39.850843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.853418"], ["updated_at", "2020-04-22 03:59:39.853418"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 03:59:39.853432"], ["updated_at", "2020-04-22 03:59:39.853432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.855366"], ["updated_at", "2020-04-22 03:59:39.855366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.856930"], ["updated_at", "2020-04-22 03:59:39.856930"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up

 (0.5ms)  rollback transaction

 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.920717"], ["updated_at", "2020-04-22 03:59:39.920717"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.924966"], ["updated_at", "2020-04-22 03:59:39.924966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.926462"], ["updated_at", "2020-04-22 03:59:39.926462"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (2.8ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.938916"], ["updated_at", "2020-04-22 03:59:39.938916"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.943354"], ["updated_at", "2020-04-22 03:59:39.943354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.945811"], ["updated_at", "2020-04-22 03:59:39.945811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.953531"], ["updated_at", "2020-04-22 03:59:39.953531"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.956057"], ["updated_at", "2020-04-22 03:59:39.956057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.958756"], ["updated_at", "2020-04-22 03:59:39.958756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.972192"], ["updated_at", "2020-04-22 03:59:39.972192"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.977405"], ["updated_at", "2020-04-22 03:59:39.977405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.979422"], ["updated_at", "2020-04-22 03:59:39.979422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:39.991362"], ["updated_at", "2020-04-22 03:59:39.991362"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:39.994602"], ["updated_at", "2020-04-22 03:59:39.994602"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:39.996654"], ["updated_at", "2020-04-22 03:59:39.996654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:40.030990"], ["updated_at", "2020-04-22 03:59:40.030990"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:40.035314"], ["updated_at", "2020-04-22 03:59:40.035314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:59:40.035923"], ["updated_at", "2020-04-22 03:59:40.035923"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:40.036803"], ["updated_at", "2020-04-22 03:59:40.036803"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


Processing by CoursesController#index as HTML

ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.8ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 03:59:40.048664"], ["updated_at", "2020-04-22 03:59:40.048664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: ed50cd82-a4af-4b0b-b8f2-23c3f724c8a7) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 3.9ms | Allocations: 668)
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 64ms (Views: 55.7ms | ActiveRecord: 0.2ms | Allocations: 11123)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (30.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:40.121286"], ["updated_at", "2020-04-22 03:59:40.121286"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:40.163612"], ["updated_at", "2020-04-22 03:59:40.163612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:40.209555"], ["updated_at", "2020-04-22 03:59:40.209555"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.8ms | Allocations: 152)

Completed 200 OK in 91ms (Views: 57.9ms | ActiveRecord: 1.0ms | Allocations: 2662)

 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 03:59:40.376089"], ["updated_at", "2020-04-22 03:59:40.376089"]]
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:40.405712"], ["updated_at", "2020-04-22 03:59:40.405712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:40.413044"], ["updated_at", "2020-04-22 03:59:40.413044"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
ActiveJob
CourseRecommendationMailerJob
ed50cd82-a4af-4b0b-b8f2-23c3f724c8a7

Performing CourseRecommendationMailerJob (Job ID: ed50cd82-a4af-4b0b-b8f2-23c3f724c8a7) from Async(default) enqueued at 2020-04-22T03:59:40Z

ActiveJob
CourseRecommendationMailerJob
ed50cd82-a4af-4b0b-b8f2-23c3f724c8a7

Performed CourseRecommendationMailerJob (Job ID: ed50cd82-a4af-4b0b-b8f2-23c3f724c8a7) from Async(default) in 0.48ms

 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.2ms)  rollback transaction
 (0.9ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (1.5ms)  SAVEPOINT active_record_1
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (35.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:59:40.693463"], ["updated_at", "2020-04-22 03:59:40.693463"]]
Rendering buckets/search.json.erb
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:40.759994"], ["updated_at", "2020-04-22 03:59:40.759994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:40.770703"], ["updated_at", "2020-04-22 03:59:40.770703"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
Rendered buckets/search.json.erb (Duration: 47.9ms | Allocations: 441)

Completed 200 OK in 318ms (Views: 183.8ms | ActiveRecord: 0.9ms | Allocations: 4337)

 (10.3ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.9ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (2.7ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (3.4ms)  SAVEPOINT active_record_1
Vault Create (5.6ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 03:59:40.948355"], ["updated_at", "2020-04-22 03:59:40.948355"]]
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:40.980281"], ["updated_at", "2020-04-22 03:59:40.980281"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:40.999688"], ["updated_at", "2020-04-22 03:59:40.999688"]]
Course Create (13.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:59:40.996177"], ["updated_at", "2020-04-22 03:59:40.996177"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:41.016426"], ["updated_at", "2020-04-22 03:59:41.016426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:41.023193"], ["updated_at", "2020-04-22 03:59:41.023193"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (10.2ms)  rollback transaction
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (1.9ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (2.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:59:41.105153"], ["updated_at", "2020-04-22 03:59:41.105153"]]
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:41.128120"], ["updated_at", "2020-04-22 03:59:41.128120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:41.133479"], ["updated_at", "2020-04-22 03:59:41.133479"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 03:59:41.138801"], ["updated_at", "2020-04-22 03:59:41.138801"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 03:59:41.166620"], ["updated_at", "2020-04-22 03:59:41.166620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (18.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 03:59:41.179294"], ["updated_at", "2020-04-22 03:59:41.179294"]]
 (0.2ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.2ms)  rollback transaction
 (13.0ms)  SELECT sqlite_version(*)
 (1.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT sqlite_version(*)
 (4.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (1.7ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  PRAGMA foreign_keys
 (15.9ms)  PRAGMA defer_foreign_keys
 (1.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (48.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (3.5ms)  PRAGMA foreign_keys = 1
Truncate Tables (146.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (1.1ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
 (0.3ms)  PRAGMA foreign_keys
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Fixtures Load (8.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:00:30.136100', '2020-04-22 04:00:30.136100'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:00:30.136100', '2020-04-22 04:00:30.136100'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:00:30.171039', '2020-04-22 04:00:30.171039', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:00:30.171039', '2020-04-22 04:00:30.171039', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:00:30.221903', '2020-04-22 04:00:30.221903'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:30.221903', '2020-04-22 04:00:30.221903'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:30.233657', '2020-04-22 04:00:30.233657'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:30.233657', '2020-04-22 04:00:30.233657'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:00:30.365311', '2020-04-22 04:00:30.365311'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:00:30.365311', '2020-04-22 04:00:30.365311'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:00:30.381731', '2020-04-22 04:00:30.381731'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:00:30.381731', '2020-04-22 04:00:30.381731'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:00:30.411466', '2020-04-22 04:00:30.411466'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:30.411466', '2020-04-22 04:00:30.411466')

Fixtures Load (11.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:00:30.141474', '2020-04-22 04:00:30.141474'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:00:30.141474', '2020-04-22 04:00:30.141474'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:00:30.162972', '2020-04-22 04:00:30.162972', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:00:30.162972', '2020-04-22 04:00:30.162972', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:00:30.214922', '2020-04-22 04:00:30.214922'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:30.214922', '2020-04-22 04:00:30.214922'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:30.347553', '2020-04-22 04:00:30.347553'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:30.347553', '2020-04-22 04:00:30.347553'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:00:30.361227', '2020-04-22 04:00:30.361227'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:00:30.361227', '2020-04-22 04:00:30.361227'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:00:30.396918', '2020-04-22 04:00:30.396918'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:00:30.396918', '2020-04-22 04:00:30.396918'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:00:30.408353', '2020-04-22 04:00:30.408353'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:30.408353', '2020-04-22 04:00:30.408353')

 (10.8ms)  commit transaction
 (0.5ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (19.4ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:00:30.767588"], ["updated_at", "2020-04-22 04:00:30.767588"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:30.976829"], ["updated_at", "2020-04-22 04:00:30.976829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:31.104738"], ["updated_at", "2020-04-22 04:00:31.104738"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (0.8ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:00:31.242225"], ["updated_at", "2020-04-22 04:00:31.242225"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:31.264103"], ["updated_at", "2020-04-22 04:00:31.264103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (44.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:31.277452"], ["updated_at", "2020-04-22 04:00:31.277452"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (17.4ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:00:31.368003"], ["updated_at", "2020-04-22 04:00:31.368003"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:31.393340"], ["updated_at", "2020-04-22 04:00:31.393340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:31.403473"], ["updated_at", "2020-04-22 04:00:31.403473"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.8ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (50.9ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.8ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (2.2ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.5ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.6ms)  PRAGMA foreign_keys
 (0.8ms)  PRAGMA defer_foreign_keys
 (4.9ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (421.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
Truncate Tables (507.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.7ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.7ms)  PRAGMA foreign_keys
 (7.9ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (64.7ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  begin transaction
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Fixtures Load (5.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:00:54.359717', '2020-04-22 04:00:54.359717'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:00:54.359717', '2020-04-22 04:00:54.359717'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:00:54.476870', '2020-04-22 04:00:54.476870', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:00:54.476870', '2020-04-22 04:00:54.476870', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:00:54.530841', '2020-04-22 04:00:54.530841'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:54.530841', '2020-04-22 04:00:54.530841'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:54.590839', '2020-04-22 04:00:54.590839'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:54.590839', '2020-04-22 04:00:54.590839'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:00:54.607486', '2020-04-22 04:00:54.607486'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:00:54.607486', '2020-04-22 04:00:54.607486'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:00:54.658541', '2020-04-22 04:00:54.658541'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:00:54.658541', '2020-04-22 04:00:54.658541'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:00:54.675194', '2020-04-22 04:00:54.675194'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:54.675194', '2020-04-22 04:00:54.675194')

Fixtures Load (9.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:00:54.413987', '2020-04-22 04:00:54.413987'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:00:54.413987', '2020-04-22 04:00:54.413987'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:00:54.492806', '2020-04-22 04:00:54.492806', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:00:54.492806', '2020-04-22 04:00:54.492806', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:00:54.503034', '2020-04-22 04:00:54.503034'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:54.503034', '2020-04-22 04:00:54.503034'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:54.586795', '2020-04-22 04:00:54.586795'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:00:54.586795', '2020-04-22 04:00:54.586795'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:00:54.623831', '2020-04-22 04:00:54.623831'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:00:54.623831', '2020-04-22 04:00:54.623831'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:00:54.655671', '2020-04-22 04:00:54.655671'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:00:54.655671', '2020-04-22 04:00:54.655671'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:00:54.835403', '2020-04-22 04:00:54.835403'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:00:54.835403', '2020-04-22 04:00:54.835403')

 (62.6ms)  commit transaction
 (0.8ms)  PRAGMA defer_foreign_keys = 0
 (69.3ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (18.7ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

CoursesControllerTest: test_index


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:55.641454"], ["updated_at", "2020-04-22 04:00:55.641454"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:56.251174"], ["updated_at", "2020-04-22 04:00:56.251174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:56.576600"], ["updated_at", "2020-04-22 04:00:56.576600"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.9ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (2.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:56.811348"], ["updated_at", "2020-04-22 04:00:56.811348"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:56.849846"], ["updated_at", "2020-04-22 04:00:56.849846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:56.860039"], ["updated_at", "2020-04-22 04:00:56.860039"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (67.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (12.6ms)  rollback transaction
 (0.4ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:56.977261"], ["updated_at", "2020-04-22 04:00:56.977261"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:56.990077"], ["updated_at", "2020-04-22 04:00:56.990077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:56.998358"], ["updated_at", "2020-04-22 04:00:56.998358"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (2.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (38.4ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (3.2ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:57.452579"], ["updated_at", "2020-04-22 04:00:57.452579"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:57.481690"], ["updated_at", "2020-04-22 04:00:57.481690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:57.560283"], ["updated_at", "2020-04-22 04:00:57.560283"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (41.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (20.0ms)  rollback transaction
 (99.3ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (59.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:57.782751"], ["updated_at", "2020-04-22 04:00:57.782751"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:57.853066"], ["updated_at", "2020-04-22 04:00:57.853066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:57.858906"], ["updated_at", "2020-04-22 04:00:57.858906"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (19.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:58.298122"], ["updated_at", "2020-04-22 04:00:58.298122"]]
ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:58.804144"], ["updated_at", "2020-04-22 04:00:58.804144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:00:58.814566"], ["updated_at", "2020-04-22 04:00:58.814566"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 0a22ac28-aa9d-4fc4-b69e-26d7cd7c1af3) to Async(default)

 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (13.9ms)  rollback transaction
 (1.8ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:59.110772"], ["updated_at", "2020-04-22 04:00:59.110772"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
ContentRecommendation Load (1.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


Processing by CoursesController#index as HTML

ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.6ms)  rollback transaction
 (0.6ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


Rendering courses/index.html.erb within layouts/application
ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (3.1ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:00:59.577568"], ["updated_at", "2020-04-22 04:00:59.577568"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (48.9ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 62.6ms | Allocations: 683)
 (10.5ms)  rollback transaction
 (0.2ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:00:59.629353"], ["updated_at", "2020-04-22 04:00:59.629353"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:00:59.641643"], ["updated_at", "2020-04-22 04:00:59.641643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:00:59.652840"], ["updated_at", "2020-04-22 04:00:59.652840"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (236.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
CACHE Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (20.8ms)  rollback transaction
 (0.2ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 1008ms (Views: 834.4ms | ActiveRecord: 48.9ms | Allocations: 11158)

 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (1.8ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (1.0ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org

Course Create (225.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:01:00.536919"], ["updated_at", "2020-04-22 04:01:00.536919"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:00.774465"], ["updated_at", "2020-04-22 04:01:00.774465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.8ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:00.819198"], ["updated_at", "2020-04-22 04:01:00.819198"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Load (1.0ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.2ms)  rollback transaction
 (11.3ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:01.038118"], ["updated_at", "2020-04-22 04:01:01.038118"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:01.052635"], ["updated_at", "2020-04-22 04:01:01.052635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.3ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:01.151114"], ["updated_at", "2020-04-22 04:01:01.151114"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:01.209502"], ["updated_at", "2020-04-22 04:01:01.209502"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:01.229268"], ["updated_at", "2020-04-22 04:01:01.229268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:01.239801"], ["updated_at", "2020-04-22 04:01:01.239801"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (39.2ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Comment Load (0.5ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:01.935557"], ["updated_at", "2020-04-22 04:01:01.935557"]]
 (16.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:02.042862"], ["updated_at", "2020-04-22 04:01:02.042862"]]
Bucket Create (11.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.035165"], ["updated_at", "2020-04-22 04:01:02.035165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (14.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.057065"], ["updated_at", "2020-04-22 04:01:02.057065"]]
 (28.7ms)  RELEASE SAVEPOINT active_record_1
ActiveJob
CourseRecommendationMailerJob
0a22ac28-aa9d-4fc4-b69e-26d7cd7c1af3

Performing CourseRecommendationMailerJob (Job ID: 0a22ac28-aa9d-4fc4-b69e-26d7cd7c1af3) from Async(default) enqueued at 2020-04-22T04:00:58Z

ActiveJob
CourseRecommendationMailerJob
0a22ac28-aa9d-4fc4-b69e-26d7cd7c1af3

Performed CourseRecommendationMailerJob (Job ID: 0a22ac28-aa9d-4fc4-b69e-26d7cd7c1af3) from Async(default) in 0.39ms

Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (112.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.053888"], ["updated_at", "2020-04-22 04:01:02.053888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.193013"], ["updated_at", "2020-04-22 04:01:02.193013"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (69.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (85.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Review Create (57.7ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
Comment Load (0.5ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (3.9ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:02.462932"], ["updated_at", "2020-04-22 04:01:02.462932"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.499753"], ["updated_at", "2020-04-22 04:01:02.499753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.505857"], ["updated_at", "2020-04-22 04:01:02.505857"]]
 (0.3ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:02.540024"], ["updated_at", "2020-04-22 04:01:02.540024"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.550546"], ["updated_at", "2020-04-22 04:01:02.550546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (11.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.562870"], ["updated_at", "2020-04-22 04:01:02.562870"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:02.592274"], ["updated_at", "2020-04-22 04:01:02.592274"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.613918"], ["updated_at", "2020-04-22 04:01:02.613918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.3ms)  rollback transaction
 (0.3ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.620890"], ["updated_at", "2020-04-22 04:01:02.620890"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (9.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:01:02.708198"], ["updated_at", "2020-04-22 04:01:02.708198"]]

BucketsControllerTest: test_search_result_doesnt_match


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.718200"], ["updated_at", "2020-04-22 04:01:02.718200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.726394"], ["updated_at", "2020-04-22 04:01:02.726394"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:01:02.877022"], ["updated_at", "2020-04-22 04:01:02.877022"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:02.900623"], ["updated_at", "2020-04-22 04:01:02.900623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.2ms | Allocations: 152)

Completed 200 OK in 92ms (Views: 50.6ms | ActiveRecord: 1.1ms | Allocations: 2662)

Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:02.935752"], ["updated_at", "2020-04-22 04:01:02.935752"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.0ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.8ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
 (0.2ms)  rollback transaction
 (0.6ms)  begin transaction

LessonTest: test_lesson_valid


Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 34.3ms | Allocations: 441)

Completed 200 OK in 195ms (Views: 114.0ms | ActiveRecord: 1.7ms | Allocations: 4196)

 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (17.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:01:03.501457"], ["updated_at", "2020-04-22 04:01:03.501457"]]
 (1.3ms)  SAVEPOINT active_record_1
Bucket Create (21.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:03.553614"], ["updated_at", "2020-04-22 04:01:03.553614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (18.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:03.541662"], ["updated_at", "2020-04-22 04:01:03.541662"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:03.618121"], ["updated_at", "2020-04-22 04:01:03.618121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:03.615386"], ["updated_at", "2020-04-22 04:01:03.615386"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Course Load (1.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Recording Create (5.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:03.643348"], ["updated_at", "2020-04-22 04:01:03.643348"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Track Create (1.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:01:03.659872"], ["updated_at", "2020-04-22 04:01:03.659872"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Track Create (1.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:01:03.821316"], ["updated_at", "2020-04-22 04:01:03.821316"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:03.849990"], ["updated_at", "2020-04-22 04:01:03.849990"]]
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (0.8ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:01:03.834202"], ["updated_at", "2020-04-22 04:01:03.834202"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:03.870517"], ["updated_at", "2020-04-22 04:01:03.870517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:03.877368"], ["updated_at", "2020-04-22 04:01:03.877368"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Lesson Create (1.4ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:01:03.871562"], ["updated_at", "2020-04-22 04:01:03.871562"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:01:03.890110"], ["updated_at", "2020-04-22 04:01:03.890110"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:01:03.920499"], ["updated_at", "2020-04-22 04:01:03.920499"]]
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_track_valid


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:03.938710"], ["updated_at", "2020-04-22 04:01:03.938710"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:03.957330"], ["updated_at", "2020-04-22 04:01:03.957330"]]
 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

TrackTest: test_associations


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (3.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:01:03.991378"], ["updated_at", "2020-04-22 04:01:03.991378"]]
 (7.7ms)  rollback transaction
 (3.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (16.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:01:04.035916"], ["updated_at", "2020-04-22 04:01:04.035916"]]
 (0.7ms)  SAVEPOINT active_record_1
Vault Create (1.7ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:01:04.047948"], ["updated_at", "2020-04-22 04:01:04.047948"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:04.052991"], ["updated_at", "2020-04-22 04:01:04.052991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:04.060551"], ["updated_at", "2020-04-22 04:01:04.060551"]]
 (6.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:04.058661"], ["updated_at", "2020-04-22 04:01:04.058661"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:04.104686"], ["updated_at", "2020-04-22 04:01:04.104686"]]
 (0.2ms)  begin transaction
 (1.0ms)  RELEASE SAVEPOINT active_record_1

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (4.3ms)  rollback transaction
 (0.3ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:01:04.195532"], ["updated_at", "2020-04-22 04:01:04.195532"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:04.228524"], ["updated_at", "2020-04-22 04:01:04.228524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:04.240638"], ["updated_at", "2020-04-22 04:01:04.240638"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Recording Load (4.6ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (264.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:01:04.613677"], ["updated_at", "2020-04-22 04:01:04.613677"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:04.681314"], ["updated_at", "2020-04-22 04:01:04.681314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:04.692844"], ["updated_at", "2020-04-22 04:01:04.692844"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.7ms)  rollback transaction
 (0.6ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:01:04.746938"], ["updated_at", "2020-04-22 04:01:04.746938"]]
Bucket Create (4.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:04.892660"], ["updated_at", "2020-04-22 04:01:04.892660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:04.903513"], ["updated_at", "2020-04-22 04:01:04.903513"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.6ms)  rollback transaction
 (0.6ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (9.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:01:04.989881"], ["updated_at", "2020-04-22 04:01:04.989881"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:01:05.006380"], ["updated_at", "2020-04-22 04:01:05.006380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:01:05.018151"], ["updated_at", "2020-04-22 04:01:05.018151"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (4.7ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (38.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (26.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:02:54.251150', '2020-04-22 04:02:54.251150'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:02:54.251150', '2020-04-22 04:02:54.251150'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:02:54.263055', '2020-04-22 04:02:54.263055', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:02:54.263055', '2020-04-22 04:02:54.263055', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:02:54.269211', '2020-04-22 04:02:54.269211'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:02:54.269211', '2020-04-22 04:02:54.269211'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:02:54.276278', '2020-04-22 04:02:54.276278'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:02:54.276278', '2020-04-22 04:02:54.276278'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:02:54.282088', '2020-04-22 04:02:54.282088'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:02:54.282088', '2020-04-22 04:02:54.282088'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:02:54.285499', '2020-04-22 04:02:54.285499'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:02:54.285499', '2020-04-22 04:02:54.285499'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:02:54.287171', '2020-04-22 04:02:54.287171'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:02:54.287171', '2020-04-22 04:02:54.287171')

 (20.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:02:54.245515', '2020-04-22 04:02:54.245515'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:02:54.245515', '2020-04-22 04:02:54.245515'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:02:54.283539', '2020-04-22 04:02:54.283539', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:02:54.283539', '2020-04-22 04:02:54.283539', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:02:54.326775', '2020-04-22 04:02:54.326775'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:02:54.326775', '2020-04-22 04:02:54.326775'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:02:54.329929', '2020-04-22 04:02:54.329929'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:02:54.329929', '2020-04-22 04:02:54.329929'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:02:54.335045', '2020-04-22 04:02:54.335045'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:02:54.335045', '2020-04-22 04:02:54.335045'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:02:54.337075', '2020-04-22 04:02:54.337075'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:02:54.337075', '2020-04-22 04:02:54.337075'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:02:54.339213', '2020-04-22 04:02:54.339213'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:02:54.339213', '2020-04-22 04:02:54.339213')

 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

VaultTest: test_has_many_:courses_association


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.347947"], ["updated_at", "2020-04-22 04:02:54.347947"]]
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (2.3ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:02:54.360596"], ["updated_at", "2020-04-22 04:02:54.360596"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.394084"], ["updated_at", "2020-04-22 04:02:54.394084"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.434519"], ["updated_at", "2020-04-22 04:02:54.434519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.455181"], ["updated_at", "2020-04-22 04:02:54.455181"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.484466"], ["updated_at", "2020-04-22 04:02:54.484466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (8.7ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:02:54.535427"], ["updated_at", "2020-04-22 04:02:54.535427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.605466"], ["updated_at", "2020-04-22 04:02:54.605466"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.615109"], ["updated_at", "2020-04-22 04:02:54.615109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.617211"], ["updated_at", "2020-04-22 04:02:54.617211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (5.9ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:54.646368"], ["updated_at", "2020-04-22 04:02:54.646368"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.661517"], ["updated_at", "2020-04-22 04:02:54.661517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.664025"], ["updated_at", "2020-04-22 04:02:54.664025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:02:54.682150"], ["updated_at", "2020-04-22 04:02:54.682150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:02:54.686829"], ["updated_at", "2020-04-22 04:02:54.686829"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:02:54.689349"], ["updated_at", "2020-04-22 04:02:54.689349"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.704811"], ["updated_at", "2020-04-22 04:02:54.704811"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.708351"], ["updated_at", "2020-04-22 04:02:54.708351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.711431"], ["updated_at", "2020-04-22 04:02:54.711431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (2.7ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.755081"], ["updated_at", "2020-04-22 04:02:54.755081"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.758042"], ["updated_at", "2020-04-22 04:02:54.758042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.760150"], ["updated_at", "2020-04-22 04:02:54.760150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (2.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.9ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.782155"], ["updated_at", "2020-04-22 04:02:54.782155"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.785760"], ["updated_at", "2020-04-22 04:02:54.785760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.787813"], ["updated_at", "2020-04-22 04:02:54.787813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.829805"], ["updated_at", "2020-04-22 04:02:54.829805"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.833836"], ["updated_at", "2020-04-22 04:02:54.833836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.835970"], ["updated_at", "2020-04-22 04:02:54.835970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.849744"], ["updated_at", "2020-04-22 04:02:54.849744"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.853469"], ["updated_at", "2020-04-22 04:02:54.853469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.856520"], ["updated_at", "2020-04-22 04:02:54.856520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.909061"], ["updated_at", "2020-04-22 04:02:54.909061"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.916518"], ["updated_at", "2020-04-22 04:02:54.916518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.919122"], ["updated_at", "2020-04-22 04:02:54.919122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.5ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 6.0ms | Allocations: 656)
 (53.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:54.964183"], ["updated_at", "2020-04-22 04:02:54.964183"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:54.968152"], ["updated_at", "2020-04-22 04:02:54.968152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:54.972894"], ["updated_at", "2020-04-22 04:02:54.972894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.028669"], ["updated_at", "2020-04-22 04:02:55.028669"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.031695"], ["updated_at", "2020-04-22 04:02:55.031695"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.034473"], ["updated_at", "2020-04-22 04:02:55.034473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:02:55.141192"], ["updated_at", "2020-04-22 04:02:55.141192"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.146995"], ["updated_at", "2020-04-22 04:02:55.146995"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.158256"], ["updated_at", "2020-04-22 04:02:55.158256"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.160789"], ["updated_at", "2020-04-22 04:02:55.160789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:02:55.176100"], ["updated_at", "2020-04-22 04:02:55.176100"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 366ms (Views: 356.9ms | ActiveRecord: 0.5ms | Allocations: 11145)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:55.324003"], ["updated_at", "2020-04-22 04:02:55.324003"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.347138"], ["updated_at", "2020-04-22 04:02:55.347138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.357150"], ["updated_at", "2020-04-22 04:02:55.357150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.6ms | Allocations: 152)

Completed 200 OK in 18ms (Views: 8.0ms | ActiveRecord: 0.6ms | Allocations: 2662)

 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (2.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:02:55.434045"], ["updated_at", "2020-04-22 04:02:55.434045"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.436457"], ["updated_at", "2020-04-22 04:02:55.436457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.438932"], ["updated_at", "2020-04-22 04:02:55.438932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (7.9ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:02:55.562258"], ["updated_at", "2020-04-22 04:02:55.562258"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.566968"], ["updated_at", "2020-04-22 04:02:55.566968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.569286"], ["updated_at", "2020-04-22 04:02:55.569286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.576277"], ["updated_at", "2020-04-22 04:02:55.576277"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.579926"], ["updated_at", "2020-04-22 04:02:55.579926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.585317"], ["updated_at", "2020-04-22 04:02:55.585317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Rendering buckets/search.json.erb
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Rendered buckets/search.json.erb (Duration: 10.5ms | Allocations: 441)

Completed 200 OK in 43ms (Views: 28.0ms | ActiveRecord: 0.4ms | Allocations: 5261)

 (1.0ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.625535"], ["updated_at", "2020-04-22 04:02:55.625535"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.629994"], ["updated_at", "2020-04-22 04:02:55.629994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.626996"], ["updated_at", "2020-04-22 04:02:55.626996"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.634806"], ["updated_at", "2020-04-22 04:02:55.634806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.635949"], ["updated_at", "2020-04-22 04:02:55.635949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.638045"], ["updated_at", "2020-04-22 04:02:55.638045"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.657016"], ["updated_at", "2020-04-22 04:02:55.657016"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.660171"], ["updated_at", "2020-04-22 04:02:55.660171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.662298"], ["updated_at", "2020-04-22 04:02:55.662298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.670108"], ["updated_at", "2020-04-22 04:02:55.670108"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.677247"], ["updated_at", "2020-04-22 04:02:55.677247"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.679122"], ["updated_at", "2020-04-22 04:02:55.679122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.680221"], ["updated_at", "2020-04-22 04:02:55.680221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.683435"], ["updated_at", "2020-04-22 04:02:55.683435"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.684263"], ["updated_at", "2020-04-22 04:02:55.684263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:02:55.694354"], ["updated_at", "2020-04-22 04:02:55.694354"]]

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.696916"], ["updated_at", "2020-04-22 04:02:55.696916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.698732"], ["updated_at", "2020-04-22 04:02:55.698732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:02:55.708947"], ["updated_at", "2020-04-22 04:02:55.708947"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.710782"], ["updated_at", "2020-04-22 04:02:55.710782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.712305"], ["updated_at", "2020-04-22 04:02:55.712305"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:02:55.727976"], ["updated_at", "2020-04-22 04:02:55.727976"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.731475"], ["updated_at", "2020-04-22 04:02:55.731475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.738121"], ["updated_at", "2020-04-22 04:02:55.738121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:02:55.841981"], ["updated_at", "2020-04-22 04:02:55.841981"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.845843"], ["updated_at", "2020-04-22 04:02:55.845843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.851780"], ["updated_at", "2020-04-22 04:02:55.851780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (9.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:02:55.879278"], ["updated_at", "2020-04-22 04:02:55.879278"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:02:55.881682"], ["updated_at", "2020-04-22 04:02:55.881682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:02:55.884044"], ["updated_at", "2020-04-22 04:02:55.884044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:02:55.929480"], ["updated_at", "2020-04-22 04:02:55.929480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:02:55.941828"], ["updated_at", "2020-04-22 04:02:55.941828"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: b3ed21c4-bf66-4ffe-8954-3908a7e3383d) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.7ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (26.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (33.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:07.404782', '2020-04-22 04:03:07.404782'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:07.404782', '2020-04-22 04:03:07.404782'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:07.408046', '2020-04-22 04:03:07.408046', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:07.408046', '2020-04-22 04:03:07.408046', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:07.409368', '2020-04-22 04:03:07.409368'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:07.409368', '2020-04-22 04:03:07.409368'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:07.410865', '2020-04-22 04:03:07.410865'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:07.410865', '2020-04-22 04:03:07.410865'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:07.412134', '2020-04-22 04:03:07.412134'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:07.412134', '2020-04-22 04:03:07.412134'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:07.413295', '2020-04-22 04:03:07.413295'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:07.413295', '2020-04-22 04:03:07.413295'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:07.415316', '2020-04-22 04:03:07.415316'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:07.415316', '2020-04-22 04:03:07.415316')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:07.408398', '2020-04-22 04:03:07.408398'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:07.408398', '2020-04-22 04:03:07.408398'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:07.410982', '2020-04-22 04:03:07.410982', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:07.410982', '2020-04-22 04:03:07.410982', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:07.412272', '2020-04-22 04:03:07.412272'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:07.412272', '2020-04-22 04:03:07.412272'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:07.413779', '2020-04-22 04:03:07.413779'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:07.413779', '2020-04-22 04:03:07.413779'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:07.415849', '2020-04-22 04:03:07.415849'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:07.415849', '2020-04-22 04:03:07.415849'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:07.419136', '2020-04-22 04:03:07.419136'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:07.419136', '2020-04-22 04:03:07.419136'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:07.421175', '2020-04-22 04:03:07.421175'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:07.421175', '2020-04-22 04:03:07.421175')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:07.476494"], ["updated_at", "2020-04-22 04:03:07.476494"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.487011"], ["updated_at", "2020-04-22 04:03:07.487011"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.500416"], ["updated_at", "2020-04-22 04:03:07.500416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.502804"], ["updated_at", "2020-04-22 04:03:07.502804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.515774"], ["updated_at", "2020-04-22 04:03:07.515774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.518283"], ["updated_at", "2020-04-22 04:03:07.518283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (1.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:03:07.528418"], ["updated_at", "2020-04-22 04:03:07.528418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:03:07.532663"], ["updated_at", "2020-04-22 04:03:07.532663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:03:07.538389"], ["updated_at", "2020-04-22 04:03:07.538389"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:03:07.541024"], ["updated_at", "2020-04-22 04:03:07.541024"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (30.9ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.6ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:03:07.596377"], ["updated_at", "2020-04-22 04:03:07.596377"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.622918"], ["updated_at", "2020-04-22 04:03:07.622918"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.657762"], ["updated_at", "2020-04-22 04:03:07.657762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.8ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:03:07.669225"], ["updated_at", "2020-04-22 04:03:07.669225"]]
 (12.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.671793"], ["updated_at", "2020-04-22 04:03:07.671793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.673971"], ["updated_at", "2020-04-22 04:03:07.673971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:07.688338"], ["updated_at", "2020-04-22 04:03:07.688338"]]
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.690876"], ["updated_at", "2020-04-22 04:03:07.690876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.692367"], ["updated_at", "2020-04-22 04:03:07.692367"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.693242"], ["updated_at", "2020-04-22 04:03:07.693242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.694894"], ["updated_at", "2020-04-22 04:03:07.694894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.696974"], ["updated_at", "2020-04-22 04:03:07.696974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (1.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.721236"], ["updated_at", "2020-04-22 04:03:07.721236"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.726167"], ["updated_at", "2020-04-22 04:03:07.726167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.728239"], ["updated_at", "2020-04-22 04:03:07.728239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.0ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.757649"], ["updated_at", "2020-04-22 04:03:07.757649"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.760854"], ["updated_at", "2020-04-22 04:03:07.760854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.762546"], ["updated_at", "2020-04-22 04:03:07.762546"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (3.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.797206"], ["updated_at", "2020-04-22 04:03:07.797206"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.799843"], ["updated_at", "2020-04-22 04:03:07.799843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.802791"], ["updated_at", "2020-04-22 04:03:07.802791"]]

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.805100"], ["updated_at", "2020-04-22 04:03:07.805100"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.807724"], ["updated_at", "2020-04-22 04:03:07.807724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.810740"], ["updated_at", "2020-04-22 04:03:07.810740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.812105"], ["updated_at", "2020-04-22 04:03:07.812105"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.817509"], ["updated_at", "2020-04-22 04:03:07.817509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.819508"], ["updated_at", "2020-04-22 04:03:07.819508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:07.827469"], ["updated_at", "2020-04-22 04:03:07.827469"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:07.829108"], ["updated_at", "2020-04-22 04:03:07.829108"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.830814"], ["updated_at", "2020-04-22 04:03:07.830814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:07.832094"], ["updated_at", "2020-04-22 04:03:07.832094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.832812"], ["updated_at", "2020-04-22 04:03:07.832812"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:07.834123"], ["updated_at", "2020-04-22 04:03:07.834123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.020538"], ["updated_at", "2020-04-22 04:03:08.020538"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.022497"], ["updated_at", "2020-04-22 04:03:08.022497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.024159"], ["updated_at", "2020-04-22 04:03:08.024159"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.043846"], ["updated_at", "2020-04-22 04:03:08.043846"]]
Rendering buckets/search.json.erb
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.046529"], ["updated_at", "2020-04-22 04:03:08.046529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Rendered buckets/search.json.erb (Duration: 3.1ms | Allocations: 441)

Completed 200 OK in 25ms (Views: 11.5ms | ActiveRecord: 0.5ms | Allocations: 5628)

Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.054366"], ["updated_at", "2020-04-22 04:03:08.054366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (8.5ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.2ms | Allocations: 445)

Completed 200 OK in 30ms (Views: 16.3ms | ActiveRecord: 0.4ms | Allocations: 5642)

 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.7ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:03:08.139253"], ["updated_at", "2020-04-22 04:03:08.139253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:03:08.172828"], ["updated_at", "2020-04-22 04:03:08.172828"]]
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 8a0a8255-c36a-4648-984a-80569c8e414c) to Async(default)

 (0.1ms)  rollback transaction
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association

 (0.1ms)  rollback transaction

 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:03:08.189339"], ["updated_at", "2020-04-22 04:03:08.189339"]]
 (0.0ms)  begin transaction

TrackTest: test_associations


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.192326"], ["updated_at", "2020-04-22 04:03:08.192326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.193782"], ["updated_at", "2020-04-22 04:03:08.193782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:08.200758"], ["updated_at", "2020-04-22 04:03:08.200758"]]
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.205173"], ["updated_at", "2020-04-22 04:03:08.205173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.207384"], ["updated_at", "2020-04-22 04:03:08.207384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:03:08.209737"], ["updated_at", "2020-04-22 04:03:08.209737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:03:08.212303"], ["updated_at", "2020-04-22 04:03:08.212303"]]
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.214036"], ["updated_at", "2020-04-22 04:03:08.214036"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.226052"], ["updated_at", "2020-04-22 04:03:08.226052"]]
 (0.1ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
8a0a8255-c36a-4648-984a-80569c8e414c

Performing CourseRecommendationMailerJob (Job ID: 8a0a8255-c36a-4648-984a-80569c8e414c) from Async(default) enqueued at 2020-04-22T04:03:08Z

 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob
CourseRecommendationMailerJob
8a0a8255-c36a-4648-984a-80569c8e414c

Performed CourseRecommendationMailerJob (Job ID: 8a0a8255-c36a-4648-984a-80569c8e414c) from Async(default) in 0.14ms

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:03:08.228450"], ["updated_at", "2020-04-22 04:03:08.228450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:03:08.235480"], ["updated_at", "2020-04-22 04:03:08.235480"]]
 (7.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.238245"], ["updated_at", "2020-04-22 04:03:08.238245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.240410"], ["updated_at", "2020-04-22 04:03:08.240410"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.7ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Create (8.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:03:08.247154"], ["updated_at", "2020-04-22 04:03:08.247154"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.257906"], ["updated_at", "2020-04-22 04:03:08.257906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.261055"], ["updated_at", "2020-04-22 04:03:08.261055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:03:08.261783"], ["updated_at", "2020-04-22 04:03:08.261783"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.265257"], ["updated_at", "2020-04-22 04:03:08.265257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.271158"], ["updated_at", "2020-04-22 04:03:08.271158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.285071"], ["updated_at", "2020-04-22 04:03:08.285071"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.289624"], ["updated_at", "2020-04-22 04:03:08.289624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.291898"], ["updated_at", "2020-04-22 04:03:08.291898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.3ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.7ms | Allocations: 363)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 82ms (Views: 79.8ms | ActiveRecord: 0.3ms | Allocations: 8202)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.414214"], ["updated_at", "2020-04-22 04:03:08.414214"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.417455"], ["updated_at", "2020-04-22 04:03:08.417455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.419755"], ["updated_at", "2020-04-22 04:03:08.419755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.430352"], ["updated_at", "2020-04-22 04:03:08.430352"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.435546"], ["updated_at", "2020-04-22 04:03:08.435546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.438822"], ["updated_at", "2020-04-22 04:03:08.438822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.447277"], ["updated_at", "2020-04-22 04:03:08.447277"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.449128"], ["updated_at", "2020-04-22 04:03:08.449128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.450768"], ["updated_at", "2020-04-22 04:03:08.450768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.460819"], ["updated_at", "2020-04-22 04:03:08.460819"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.462442"], ["updated_at", "2020-04-22 04:03:08.462442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.463415"], ["updated_at", "2020-04-22 04:03:08.463415"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.8ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:03:08.473390"], ["updated_at", "2020-04-22 04:03:08.473390"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:08.476209"], ["updated_at", "2020-04-22 04:03:08.476209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:08.477970"], ["updated_at", "2020-04-22 04:03:08.477970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.0ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (23.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (24.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:12.776006', '2020-04-22 04:03:12.776006'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:12.776006', '2020-04-22 04:03:12.776006'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:12.778837', '2020-04-22 04:03:12.778837', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:12.778837', '2020-04-22 04:03:12.778837', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:12.780373', '2020-04-22 04:03:12.780373'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:12.780373', '2020-04-22 04:03:12.780373'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:12.783637', '2020-04-22 04:03:12.783637'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:12.783637', '2020-04-22 04:03:12.783637'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:12.785827', '2020-04-22 04:03:12.785827'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:12.785827', '2020-04-22 04:03:12.785827'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:12.788055', '2020-04-22 04:03:12.788055'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:12.788055', '2020-04-22 04:03:12.788055'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:12.789932', '2020-04-22 04:03:12.789932'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:12.789932', '2020-04-22 04:03:12.789932')

 (5.7ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (21.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:29.171319', '2020-04-22 04:03:29.171319'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:29.171319', '2020-04-22 04:03:29.171319'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:29.175241', '2020-04-22 04:03:29.175241', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:29.175241', '2020-04-22 04:03:29.175241', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:29.176953', '2020-04-22 04:03:29.176953'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:29.176953', '2020-04-22 04:03:29.176953'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:29.178459', '2020-04-22 04:03:29.178459'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:29.178459', '2020-04-22 04:03:29.178459'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:29.180260', '2020-04-22 04:03:29.180260'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:29.180260', '2020-04-22 04:03:29.180260'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:29.182084', '2020-04-22 04:03:29.182084'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:29.182084', '2020-04-22 04:03:29.182084'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:29.183192', '2020-04-22 04:03:29.183192'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:29.183192', '2020-04-22 04:03:29.183192')

 (1.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (2.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:29.172881', '2020-04-22 04:03:29.172881'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:29.172881', '2020-04-22 04:03:29.172881'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:29.176995', '2020-04-22 04:03:29.176995', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:29.176995', '2020-04-22 04:03:29.176995', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:29.179024', '2020-04-22 04:03:29.179024'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:29.179024', '2020-04-22 04:03:29.179024'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:29.188031', '2020-04-22 04:03:29.188031'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:29.188031', '2020-04-22 04:03:29.188031'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:29.189568', '2020-04-22 04:03:29.189568'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:29.189568', '2020-04-22 04:03:29.189568'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:29.192167', '2020-04-22 04:03:29.192167'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:29.192167', '2020-04-22 04:03:29.192167'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:29.193324', '2020-04-22 04:03:29.193324'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:29.193324', '2020-04-22 04:03:29.193324')

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (2.7ms)  commit transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.0ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:03:29.234483"], ["updated_at", "2020-04-22 04:03:29.234483"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:29.253578"], ["updated_at", "2020-04-22 04:03:29.253578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:29.268937"], ["updated_at", "2020-04-22 04:03:29.268937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (2.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (48.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (52.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:55.697271', '2020-04-22 04:03:55.697271'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:55.697271', '2020-04-22 04:03:55.697271'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:55.703231', '2020-04-22 04:03:55.703231', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:55.703231', '2020-04-22 04:03:55.703231', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:55.705220', '2020-04-22 04:03:55.705220'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:55.705220', '2020-04-22 04:03:55.705220'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:55.707555', '2020-04-22 04:03:55.707555'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:55.707555', '2020-04-22 04:03:55.707555'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:55.709945', '2020-04-22 04:03:55.709945'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:55.709945', '2020-04-22 04:03:55.709945'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:55.711924', '2020-04-22 04:03:55.711924'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:55.711924', '2020-04-22 04:03:55.711924'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:55.715320', '2020-04-22 04:03:55.715320'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:55.715320', '2020-04-22 04:03:55.715320')

Fixtures Load (11.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:55.687285', '2020-04-22 04:03:55.687285'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:55.687285', '2020-04-22 04:03:55.687285'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:55.700957', '2020-04-22 04:03:55.700957', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:55.700957', '2020-04-22 04:03:55.700957', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:55.702879', '2020-04-22 04:03:55.702879'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:55.702879', '2020-04-22 04:03:55.702879'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:55.705387', '2020-04-22 04:03:55.705387'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:55.705387', '2020-04-22 04:03:55.705387'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:55.707539', '2020-04-22 04:03:55.707539'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:55.707539', '2020-04-22 04:03:55.707539'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:55.709889', '2020-04-22 04:03:55.709889'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:55.709889', '2020-04-22 04:03:55.709889'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:55.712037', '2020-04-22 04:03:55.712037'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:55.712037', '2020-04-22 04:03:55.712037')

 (9.5ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (6.7ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:03:55.836986"], ["updated_at", "2020-04-22 04:03:55.836986"]]
 (0.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:55.895634"], ["updated_at", "2020-04-22 04:03:55.895634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:55.920593"], ["updated_at", "2020-04-22 04:03:55.920593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (21.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
Truncate Tables (23.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:59.200615', '2020-04-22 04:03:59.200615'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:59.200615', '2020-04-22 04:03:59.200615'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:59.205832', '2020-04-22 04:03:59.205832', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:59.205832', '2020-04-22 04:03:59.205832', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:59.207693', '2020-04-22 04:03:59.207693'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:59.207693', '2020-04-22 04:03:59.207693'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:59.211374', '2020-04-22 04:03:59.211374'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:59.211374', '2020-04-22 04:03:59.211374'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:59.214631', '2020-04-22 04:03:59.214631'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:59.214631', '2020-04-22 04:03:59.214631'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:59.217282', '2020-04-22 04:03:59.217282'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:59.217282', '2020-04-22 04:03:59.217282'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:59.219754', '2020-04-22 04:03:59.219754'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:59.219754', '2020-04-22 04:03:59.219754')

 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (4.5ms)  commit transaction
 (0.1ms)  begin transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:03:59.206910', '2020-04-22 04:03:59.206910'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:03:59.206910', '2020-04-22 04:03:59.206910'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:03:59.212666', '2020-04-22 04:03:59.212666', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:03:59.212666', '2020-04-22 04:03:59.212666', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:03:59.214811', '2020-04-22 04:03:59.214811'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:59.214811', '2020-04-22 04:03:59.214811'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:59.219202', '2020-04-22 04:03:59.219202'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:03:59.219202', '2020-04-22 04:03:59.219202'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:03:59.221483', '2020-04-22 04:03:59.221483'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:03:59.221483', '2020-04-22 04:03:59.221483'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:03:59.223328', '2020-04-22 04:03:59.223328'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:03:59.223328', '2020-04-22 04:03:59.223328'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:03:59.225174', '2020-04-22 04:03:59.225174'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:03:59.225174', '2020-04-22 04:03:59.225174')

 (5.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:03:59.264871"], ["updated_at", "2020-04-22 04:03:59.264871"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.3ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:03:59.297256"], ["updated_at", "2020-04-22 04:03:59.297256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:03:59.323792"], ["updated_at", "2020-04-22 04:03:59.323792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.4ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (13.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (15.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
 (0.0ms)  begin transaction
Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:12.773602', '2020-04-22 04:04:12.773602'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:12.773602', '2020-04-22 04:04:12.773602'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:12.778294', '2020-04-22 04:04:12.778294', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:12.778294', '2020-04-22 04:04:12.778294', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:12.780088', '2020-04-22 04:04:12.780088'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:12.780088', '2020-04-22 04:04:12.780088'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:12.782293', '2020-04-22 04:04:12.782293'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:12.782293', '2020-04-22 04:04:12.782293'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:12.784060', '2020-04-22 04:04:12.784060'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:12.784060', '2020-04-22 04:04:12.784060'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:12.785546', '2020-04-22 04:04:12.785546'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:12.785546', '2020-04-22 04:04:12.785546'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:12.787926', '2020-04-22 04:04:12.787926'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:12.787926', '2020-04-22 04:04:12.787926')

Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:12.773724', '2020-04-22 04:04:12.773724'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:12.773724', '2020-04-22 04:04:12.773724'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:12.778022', '2020-04-22 04:04:12.778022', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:12.778022', '2020-04-22 04:04:12.778022', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:12.779236', '2020-04-22 04:04:12.779236'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:12.779236', '2020-04-22 04:04:12.779236'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:12.780610', '2020-04-22 04:04:12.780610'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:12.780610', '2020-04-22 04:04:12.780610'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:12.782530', '2020-04-22 04:04:12.782530'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:12.782530', '2020-04-22 04:04:12.782530'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:12.784304', '2020-04-22 04:04:12.784304'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:12.784304', '2020-04-22 04:04:12.784304'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:12.786311', '2020-04-22 04:04:12.786311'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:12.786311', '2020-04-22 04:04:12.786311')

 (1.2ms)  commit transaction
 (1.4ms)  commit transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails



LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:12.835475"], ["updated_at", "2020-04-22 04:04:12.835475"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:12.863656"], ["updated_at", "2020-04-22 04:04:12.863656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:12.880485"], ["updated_at", "2020-04-22 04:04:12.880485"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:12.882818"], ["updated_at", "2020-04-22 04:04:12.882818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:12.894729"], ["updated_at", "2020-04-22 04:04:12.894729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:04:12.904677"], ["updated_at", "2020-04-22 04:04:12.904677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:12.913660"], ["updated_at", "2020-04-22 04:04:12.913660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:04:12.916992"], ["updated_at", "2020-04-22 04:04:12.916992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:04:12.919656"], ["updated_at", "2020-04-22 04:04:12.919656"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.4ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:04:12.924785"], ["updated_at", "2020-04-22 04:04:12.924785"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.2ms)  rollback transaction
 (9.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:12.950559"], ["updated_at", "2020-04-22 04:04:12.950559"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:12.968075"], ["updated_at", "2020-04-22 04:04:12.968075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:12.971353"], ["updated_at", "2020-04-22 04:04:12.971353"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  rollback transaction
Bucket Load (1.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:04:12.996115"], ["updated_at", "2020-04-22 04:04:12.996115"]]
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:12.998648"], ["updated_at", "2020-04-22 04:04:12.998648"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.006704"], ["updated_at", "2020-04-22 04:04:13.006704"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (1.3ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:04:13.015267"], ["updated_at", "2020-04-22 04:04:13.015267"]]
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.018920"], ["updated_at", "2020-04-22 04:04:13.018920"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.023366"], ["updated_at", "2020-04-22 04:04:13.023366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (1.0ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:04:13.086125"], ["updated_at", "2020-04-22 04:04:13.086125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: ea53de62-99aa-441e-b85d-7f0737270a8c) to Async(default)

 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:04:13.130533"], ["updated_at", "2020-04-22 04:04:13.130533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (8.6ms)  rollback transaction
 (9.0ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.160519"], ["updated_at", "2020-04-22 04:04:13.160519"]]

SearchableTest: test_find_catchall_matches_classes

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.163680"], ["updated_at", "2020-04-22 04:04:13.163680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.166384"], ["updated_at", "2020-04-22 04:04:13.166384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.170803"], ["updated_at", "2020-04-22 04:04:13.170803"]]
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.177787"], ["updated_at", "2020-04-22 04:04:13.177787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.182645"], ["updated_at", "2020-04-22 04:04:13.182645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.184718"], ["updated_at", "2020-04-22 04:04:13.184718"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.188179"], ["updated_at", "2020-04-22 04:04:13.188179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.190040"], ["updated_at", "2020-04-22 04:04:13.190040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.202390"], ["updated_at", "2020-04-22 04:04:13.202390"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.207324"], ["updated_at", "2020-04-22 04:04:13.207324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.210650"], ["updated_at", "2020-04-22 04:04:13.210650"]]
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.220003"], ["updated_at", "2020-04-22 04:04:13.220003"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.222818"], ["updated_at", "2020-04-22 04:04:13.222818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.225152"], ["updated_at", "2020-04-22 04:04:13.225152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.233418"], ["updated_at", "2020-04-22 04:04:13.233418"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.239054"], ["updated_at", "2020-04-22 04:04:13.239054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.243294"], ["updated_at", "2020-04-22 04:04:13.243294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
Course Create (15.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.255017"], ["updated_at", "2020-04-22 04:04:13.255017"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.280225"], ["updated_at", "2020-04-22 04:04:13.280225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (8.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.282806"], ["updated_at", "2020-04-22 04:04:13.282806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.289683"], ["updated_at", "2020-04-22 04:04:13.289683"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.294102"], ["updated_at", "2020-04-22 04:04:13.294102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.296630"], ["updated_at", "2020-04-22 04:04:13.296630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.317683"], ["updated_at", "2020-04-22 04:04:13.317683"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.320579"], ["updated_at", "2020-04-22 04:04:13.320579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.323182"], ["updated_at", "2020-04-22 04:04:13.323182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
ea53de62-99aa-441e-b85d-7f0737270a8c

Performing CourseRecommendationMailerJob (Job ID: ea53de62-99aa-441e-b85d-7f0737270a8c) from Async(default) enqueued at 2020-04-22T04:04:13Z

ActiveJob
CourseRecommendationMailerJob
ea53de62-99aa-441e-b85d-7f0737270a8c

Performed CourseRecommendationMailerJob (Job ID: ea53de62-99aa-441e-b85d-7f0737270a8c) from Async(default) in 0.17ms

 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.337856"], ["updated_at", "2020-04-22 04:04:13.337856"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.340552"], ["updated_at", "2020-04-22 04:04:13.340552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.344852"], ["updated_at", "2020-04-22 04:04:13.344852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.354688"], ["updated_at", "2020-04-22 04:04:13.354688"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.354880"], ["updated_at", "2020-04-22 04:04:13.354880"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.358399"], ["updated_at", "2020-04-22 04:04:13.358399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.360945"], ["updated_at", "2020-04-22 04:04:13.360945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (10.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.360374"], ["updated_at", "2020-04-22 04:04:13.360374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.372818"], ["updated_at", "2020-04-22 04:04:13.372818"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

TrackTest: test_associations


Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.397050"], ["updated_at", "2020-04-22 04:04:13.397050"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.401765"], ["updated_at", "2020-04-22 04:04:13.401765"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.430197"], ["updated_at", "2020-04-22 04:04:13.430197"]]
 (4.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:04:13.437318"], ["updated_at", "2020-04-22 04:04:13.437318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:04:13.440528"], ["updated_at", "2020-04-22 04:04:13.440528"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.444185"], ["updated_at", "2020-04-22 04:04:13.444185"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.449684"], ["updated_at", "2020-04-22 04:04:13.449684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:04:13.454055"], ["updated_at", "2020-04-22 04:04:13.454055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.464757"], ["updated_at", "2020-04-22 04:04:13.464757"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.470933"], ["updated_at", "2020-04-22 04:04:13.470933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.475644"], ["updated_at", "2020-04-22 04:04:13.475644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.7ms | Allocations: 414)

Completed 200 OK in 24ms (Views: 16.9ms | ActiveRecord: 0.3ms | Allocations: 4057)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.522572"], ["updated_at", "2020-04-22 04:04:13.522572"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.528269"], ["updated_at", "2020-04-22 04:04:13.528269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.532003"], ["updated_at", "2020-04-22 04:04:13.532003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
CACHE Recording Load (0.0ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

Clients::GithubTest: test_github_org_constant_set


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.580264"], ["updated_at", "2020-04-22 04:04:13.580264"]]
 (0.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.583742"], ["updated_at", "2020-04-22 04:04:13.583742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.588620"], ["updated_at", "2020-04-22 04:04:13.588620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  rollback transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


Course Load (2.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:13.619331"], ["updated_at", "2020-04-22 04:04:13.619331"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.621980"], ["updated_at", "2020-04-22 04:04:13.621980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.624014"], ["updated_at", "2020-04-22 04:04:13.624014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
Rendering buckets/search.json.erb
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


Rendered buckets/search.json.erb (Duration: 1.8ms | Allocations: 418)

Completed 200 OK in 33ms (Views: 12.6ms | ActiveRecord: 2.6ms | Allocations: 5073)

 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:13.653438"], ["updated_at", "2020-04-22 04:04:13.653438"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.656292"], ["updated_at", "2020-04-22 04:04:13.656292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.658458"], ["updated_at", "2020-04-22 04:04:13.658458"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.0ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (4.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:13.672063"], ["updated_at", "2020-04-22 04:04:13.672063"]]

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.679275"], ["updated_at", "2020-04-22 04:04:13.679275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:13.680589"], ["updated_at", "2020-04-22 04:04:13.680589"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.681613"], ["updated_at", "2020-04-22 04:04:13.681613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.685165"], ["updated_at", "2020-04-22 04:04:13.685165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.687455"], ["updated_at", "2020-04-22 04:04:13.687455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:04:13.695941"], ["updated_at", "2020-04-22 04:04:13.695941"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:13.697933"], ["updated_at", "2020-04-22 04:04:13.697933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:13.700009"], ["updated_at", "2020-04-22 04:04:13.700009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (4.7ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 10.1ms | Allocations: 362)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 165ms (Views: 159.2ms | ActiveRecord: 4.7ms | Allocations: 8230)

 (10.9ms)  rollback transaction
 (0.5ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.8ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (26.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (15.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:35.801557', '2020-04-22 04:04:35.801557'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:35.801557', '2020-04-22 04:04:35.801557'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:35.806559', '2020-04-22 04:04:35.806559', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:35.806559', '2020-04-22 04:04:35.806559', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:35.809235', '2020-04-22 04:04:35.809235'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:35.809235', '2020-04-22 04:04:35.809235'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:35.813143', '2020-04-22 04:04:35.813143'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:35.813143', '2020-04-22 04:04:35.813143'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:35.816133', '2020-04-22 04:04:35.816133'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:35.816133', '2020-04-22 04:04:35.816133'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:35.831963', '2020-04-22 04:04:35.831963'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:35.831963', '2020-04-22 04:04:35.831963'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:35.837270', '2020-04-22 04:04:35.837270'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:35.837270', '2020-04-22 04:04:35.837270')

 (9.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
Fixtures Load (13.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:35.799680', '2020-04-22 04:04:35.799680'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:35.799680', '2020-04-22 04:04:35.799680'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:35.806528', '2020-04-22 04:04:35.806528', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:35.806528', '2020-04-22 04:04:35.806528', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:35.809273', '2020-04-22 04:04:35.809273'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:35.809273', '2020-04-22 04:04:35.809273'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:35.811858', '2020-04-22 04:04:35.811858'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:35.811858', '2020-04-22 04:04:35.811858'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:35.815315', '2020-04-22 04:04:35.815315'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:35.815315', '2020-04-22 04:04:35.815315'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:35.818929', '2020-04-22 04:04:35.818929'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:35.818929', '2020-04-22 04:04:35.818929'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:35.821608', '2020-04-22 04:04:35.821608'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:35.821608', '2020-04-22 04:04:35.821608')

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (27.8ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:36.064757"], ["updated_at", "2020-04-22 04:04:36.064757"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:36.113481"], ["updated_at", "2020-04-22 04:04:36.113481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:36.147514"], ["updated_at", "2020-04-22 04:04:36.147514"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (7.8ms)  rollback transaction
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (13.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (12.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (2.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:36.275777', '2020-04-22 04:04:36.275777'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:36.275777', '2020-04-22 04:04:36.275777'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:36.280840', '2020-04-22 04:04:36.280840', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:36.280840', '2020-04-22 04:04:36.280840', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:36.283182', '2020-04-22 04:04:36.283182'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:36.283182', '2020-04-22 04:04:36.283182'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:36.285625', '2020-04-22 04:04:36.285625'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:36.285625', '2020-04-22 04:04:36.285625'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:36.288496', '2020-04-22 04:04:36.288496'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:36.288496', '2020-04-22 04:04:36.288496'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:36.290375', '2020-04-22 04:04:36.290375'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:36.290375', '2020-04-22 04:04:36.290375'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:36.292233', '2020-04-22 04:04:36.292233'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:36.292233', '2020-04-22 04:04:36.292233')

 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:36.265794', '2020-04-22 04:04:36.265794'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:36.265794', '2020-04-22 04:04:36.265794'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:36.273033', '2020-04-22 04:04:36.273033', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:36.273033', '2020-04-22 04:04:36.273033', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:36.290207', '2020-04-22 04:04:36.290207'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:36.290207', '2020-04-22 04:04:36.290207'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:36.292361', '2020-04-22 04:04:36.292361'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:36.292361', '2020-04-22 04:04:36.292361'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:36.294642', '2020-04-22 04:04:36.294642'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:36.294642', '2020-04-22 04:04:36.294642'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:36.296723', '2020-04-22 04:04:36.296723'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:36.296723', '2020-04-22 04:04:36.296723'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:36.299402', '2020-04-22 04:04:36.299402'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:36.299402', '2020-04-22 04:04:36.299402')

 (8.8ms)  commit transaction
 (3.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:36.421729"], ["updated_at", "2020-04-22 04:04:36.421729"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:36.490162"], ["updated_at", "2020-04-22 04:04:36.490162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:36.526277"], ["updated_at", "2020-04-22 04:04:36.526277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (8.8ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (1.0ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.6ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Truncate Tables (44.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (8.6ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (6.3ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:46.367299', '2020-04-22 04:04:46.367299'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:46.367299', '2020-04-22 04:04:46.367299'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:46.379839', '2020-04-22 04:04:46.379839', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:46.379839', '2020-04-22 04:04:46.379839', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:46.382076', '2020-04-22 04:04:46.382076'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.382076', '2020-04-22 04:04:46.382076'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.389415', '2020-04-22 04:04:46.389415'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.389415', '2020-04-22 04:04:46.389415'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:46.405692', '2020-04-22 04:04:46.405692'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:46.405692', '2020-04-22 04:04:46.405692'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:46.410419', '2020-04-22 04:04:46.410419'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:46.410419', '2020-04-22 04:04:46.410419'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:46.423489', '2020-04-22 04:04:46.423489'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.423489', '2020-04-22 04:04:46.423489')

 (8.9ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:46.314960', '2020-04-22 04:04:46.314960'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:46.314960', '2020-04-22 04:04:46.314960'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:46.320427', '2020-04-22 04:04:46.320427', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:46.320427', '2020-04-22 04:04:46.320427', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:46.323259', '2020-04-22 04:04:46.323259'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.323259', '2020-04-22 04:04:46.323259'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.326367', '2020-04-22 04:04:46.326367'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.326367', '2020-04-22 04:04:46.326367'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:46.381995', '2020-04-22 04:04:46.381995'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:46.381995', '2020-04-22 04:04:46.381995'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:46.507638', '2020-04-22 04:04:46.507638'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:46.507638', '2020-04-22 04:04:46.507638'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:46.533389', '2020-04-22 04:04:46.533389'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.533389', '2020-04-22 04:04:46.533389')

 (10.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:46.605929"], ["updated_at", "2020-04-22 04:04:46.605929"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:46.731239"], ["updated_at", "2020-04-22 04:04:46.731239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  PRAGMA foreign_keys
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:46.763906"], ["updated_at", "2020-04-22 04:04:46.763906"]]
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
Fixtures Load (2.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:46.733470', '2020-04-22 04:04:46.733470'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:46.733470', '2020-04-22 04:04:46.733470'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:46.745615', '2020-04-22 04:04:46.745615', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:46.745615', '2020-04-22 04:04:46.745615', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:46.747977', '2020-04-22 04:04:46.747977'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.747977', '2020-04-22 04:04:46.747977'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.751289', '2020-04-22 04:04:46.751289'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.751289', '2020-04-22 04:04:46.751289'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:46.754233', '2020-04-22 04:04:46.754233'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:46.754233', '2020-04-22 04:04:46.754233'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:46.756394', '2020-04-22 04:04:46.756394'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:46.756394', '2020-04-22 04:04:46.756394'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:46.758637', '2020-04-22 04:04:46.758637'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.758637', '2020-04-22 04:04:46.758637')

 (7.8ms)  rollback transaction
 (8.9ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Truncate Tables (209.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:04:46.884103"], ["updated_at", "2020-04-22 04:04:46.884103"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  begin transaction
Fixtures Load (13.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:46.896782', '2020-04-22 04:04:46.896782'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:46.896782', '2020-04-22 04:04:46.896782'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:46.902987', '2020-04-22 04:04:46.902987', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:46.902987', '2020-04-22 04:04:46.902987', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:46.905735', '2020-04-22 04:04:46.905735'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.905735', '2020-04-22 04:04:46.905735'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.908478', '2020-04-22 04:04:46.908478'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:46.908478', '2020-04-22 04:04:46.908478'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:46.911012', '2020-04-22 04:04:46.911012'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:46.911012', '2020-04-22 04:04:46.911012'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:46.913148', '2020-04-22 04:04:46.913148'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:46.913148', '2020-04-22 04:04:46.913148'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:46.915161', '2020-04-22 04:04:46.915161'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:46.915161', '2020-04-22 04:04:46.915161')

 (10.2ms)  commit transaction
 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:46.999200"], ["updated_at", "2020-04-22 04:04:46.999200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:47.092134"], ["updated_at", "2020-04-22 04:04:47.092134"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (1.4ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (26.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
Truncate Tables (27.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT sqlite_version(*)
Truncate Tables (22.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (30.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.6ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:56.065024', '2020-04-22 04:04:56.065024'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:56.065024', '2020-04-22 04:04:56.065024'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:56.089526', '2020-04-22 04:04:56.089526', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:56.089526', '2020-04-22 04:04:56.089526', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:56.091767', '2020-04-22 04:04:56.091767'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.091767', '2020-04-22 04:04:56.091767'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.094526', '2020-04-22 04:04:56.094526'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.094526', '2020-04-22 04:04:56.094526'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:56.124757', '2020-04-22 04:04:56.124757'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:56.124757', '2020-04-22 04:04:56.124757'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:56.127051', '2020-04-22 04:04:56.127051'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:56.127051', '2020-04-22 04:04:56.127051'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:56.129343', '2020-04-22 04:04:56.129343'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.129343', '2020-04-22 04:04:56.129343')

 (9.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.6ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.7ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (15.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:56.099606', '2020-04-22 04:04:56.099606'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:56.099606', '2020-04-22 04:04:56.099606'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:56.109310', '2020-04-22 04:04:56.109310', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:56.109310', '2020-04-22 04:04:56.109310', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:56.121938', '2020-04-22 04:04:56.121938'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.121938', '2020-04-22 04:04:56.121938'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.139941', '2020-04-22 04:04:56.139941'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.139941', '2020-04-22 04:04:56.139941'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:56.142145', '2020-04-22 04:04:56.142145'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:56.142145', '2020-04-22 04:04:56.142145'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:56.145153', '2020-04-22 04:04:56.145153'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:56.145153', '2020-04-22 04:04:56.145153'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:56.147725', '2020-04-22 04:04:56.147725'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.147725', '2020-04-22 04:04:56.147725')

 (1.7ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (5.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (4.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:56.139036', '2020-04-22 04:04:56.139036'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:56.139036', '2020-04-22 04:04:56.139036'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:56.143775', '2020-04-22 04:04:56.143775', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:56.143775', '2020-04-22 04:04:56.143775', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:56.146219', '2020-04-22 04:04:56.146219'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.146219', '2020-04-22 04:04:56.146219'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.178893', '2020-04-22 04:04:56.178893'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.178893', '2020-04-22 04:04:56.178893'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:56.183687', '2020-04-22 04:04:56.183687'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:56.183687', '2020-04-22 04:04:56.183687'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:56.187891', '2020-04-22 04:04:56.187891'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:56.187891', '2020-04-22 04:04:56.187891'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:56.190454', '2020-04-22 04:04:56.190454'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.190454', '2020-04-22 04:04:56.190454')

 (1.9ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:04:56.173953', '2020-04-22 04:04:56.173953'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:04:56.173953', '2020-04-22 04:04:56.173953'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:04:56.180344', '2020-04-22 04:04:56.180344', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:04:56.180344', '2020-04-22 04:04:56.180344', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:04:56.182705', '2020-04-22 04:04:56.182705'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.182705', '2020-04-22 04:04:56.182705'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.187842', '2020-04-22 04:04:56.187842'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:04:56.187842', '2020-04-22 04:04:56.187842'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:04:56.190696', '2020-04-22 04:04:56.190696'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:04:56.190696', '2020-04-22 04:04:56.190696'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:04:56.192689', '2020-04-22 04:04:56.192689'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:04:56.192689', '2020-04-22 04:04:56.192689'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:04:56.194859', '2020-04-22 04:04:56.194859'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:04:56.194859', '2020-04-22 04:04:56.194859')

 (1.4ms)  commit transaction
 (0.1ms)  rollback transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:04:56.268534"], ["updated_at", "2020-04-22 04:04:56.268534"]]
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:56.340328"], ["updated_at", "2020-04-22 04:04:56.340328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:56.400597"], ["updated_at", "2020-04-22 04:04:56.400597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.5ms)  rollback transaction
Course Create (87.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:04:56.355900"], ["updated_at", "2020-04-22 04:04:56.355900"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:04:56.465925"], ["updated_at", "2020-04-22 04:04:56.465925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:04:56.501748"], ["updated_at", "2020-04-22 04:04:56.501748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.9ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (22.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (19.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Truncate Tables (39.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:05:47.375527', '2020-04-22 04:05:47.375527'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:05:47.375527', '2020-04-22 04:05:47.375527'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:05:47.379402', '2020-04-22 04:05:47.379402', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:05:47.379402', '2020-04-22 04:05:47.379402', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:05:47.382236', '2020-04-22 04:05:47.382236'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:47.382236', '2020-04-22 04:05:47.382236'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.385046', '2020-04-22 04:05:47.385046'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.385046', '2020-04-22 04:05:47.385046'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:05:47.440211', '2020-04-22 04:05:47.440211'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:05:47.440211', '2020-04-22 04:05:47.440211'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:05:47.444316', '2020-04-22 04:05:47.444316'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:05:47.444316', '2020-04-22 04:05:47.444316'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:05:47.449109', '2020-04-22 04:05:47.449109'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:47.449109', '2020-04-22 04:05:47.449109')

 (9.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Fixtures Load (70.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:05:47.394178', '2020-04-22 04:05:47.394178'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:05:47.394178', '2020-04-22 04:05:47.394178'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:05:47.406229', '2020-04-22 04:05:47.406229', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:05:47.406229', '2020-04-22 04:05:47.406229', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:05:47.409120', '2020-04-22 04:05:47.409120'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:47.409120', '2020-04-22 04:05:47.409120'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.412779', '2020-04-22 04:05:47.412779'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.412779', '2020-04-22 04:05:47.412779'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:05:47.416289', '2020-04-22 04:05:47.416289'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:05:47.416289', '2020-04-22 04:05:47.416289'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:05:47.418921', '2020-04-22 04:05:47.418921'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:05:47.418921', '2020-04-22 04:05:47.418921'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:05:47.421674', '2020-04-22 04:05:47.421674'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:47.421674', '2020-04-22 04:05:47.421674')

 (21.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.527101"], ["updated_at", "2020-04-22 04:05:47.527101"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.567809"], ["updated_at", "2020-04-22 04:05:47.567809"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.673958"], ["updated_at", "2020-04-22 04:05:47.673958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.711604"], ["updated_at", "2020-04-22 04:05:47.711604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.746695"], ["updated_at", "2020-04-22 04:05:47.746695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.787171"], ["updated_at", "2020-04-22 04:05:47.787171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.811690"], ["updated_at", "2020-04-22 04:05:47.811690"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.815434"], ["updated_at", "2020-04-22 04:05:47.815434"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SELECT sqlite_version(*)
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.819884"], ["updated_at", "2020-04-22 04:05:47.819884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (42.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Truncate Tables (32.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.6ms)  rollback transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Course Create (13.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.884806"], ["updated_at", "2020-04-22 04:05:47.884806"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.901395"], ["updated_at", "2020-04-22 04:05:47.901395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.904124"], ["updated_at", "2020-04-22 04:05:47.904124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Truncate Tables (112.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.947941"], ["updated_at", "2020-04-22 04:05:47.947941"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.951007"], ["updated_at", "2020-04-22 04:05:47.951007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.953639"], ["updated_at", "2020-04-22 04:05:47.953639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:47.990171"], ["updated_at", "2020-04-22 04:05:47.990171"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:47.993600"], ["updated_at", "2020-04-22 04:05:47.993600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:47.996222"], ["updated_at", "2020-04-22 04:05:47.996222"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.015691"], ["updated_at", "2020-04-22 04:05:48.015691"]]
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.018764"], ["updated_at", "2020-04-22 04:05:48.018764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.024733"], ["updated_at", "2020-04-22 04:05:48.024733"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Comment Load (51.9ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:05:47.978314', '2020-04-22 04:05:47.978314'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:05:47.978314', '2020-04-22 04:05:47.978314'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:05:47.986686', '2020-04-22 04:05:47.986686', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:05:47.986686', '2020-04-22 04:05:47.986686', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:05:47.992131', '2020-04-22 04:05:47.992131'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:47.992131', '2020-04-22 04:05:47.992131'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.994919', '2020-04-22 04:05:47.994919'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:47.994919', '2020-04-22 04:05:47.994919'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:05:48.032389', '2020-04-22 04:05:48.032389'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:05:48.032389', '2020-04-22 04:05:48.032389'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:05:48.035427', '2020-04-22 04:05:48.035427'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:05:48.035427', '2020-04-22 04:05:48.035427'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:05:48.037940', '2020-04-22 04:05:48.037940'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:48.037940', '2020-04-22 04:05:48.037940')

 (1.4ms)  commit transaction
 (0.9ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Fixtures Load (24.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:05:48.005335', '2020-04-22 04:05:48.005335'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:05:48.005335', '2020-04-22 04:05:48.005335'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:05:48.010670', '2020-04-22 04:05:48.010670', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:05:48.010670', '2020-04-22 04:05:48.010670', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:05:48.012803', '2020-04-22 04:05:48.012803'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:48.012803', '2020-04-22 04:05:48.012803'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:48.015655', '2020-04-22 04:05:48.015655'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:05:48.015655', '2020-04-22 04:05:48.015655'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:05:48.038185', '2020-04-22 04:05:48.038185'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:05:48.038185', '2020-04-22 04:05:48.038185'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:05:48.042546', '2020-04-22 04:05:48.042546'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:05:48.042546', '2020-04-22 04:05:48.042546'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:05:48.045056', '2020-04-22 04:05:48.045056'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:05:48.045056', '2020-04-22 04:05:48.045056')

 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.098810"], ["updated_at", "2020-04-22 04:05:48.098810"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.124511"], ["updated_at", "2020-04-22 04:05:48.124511"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.172691"], ["updated_at", "2020-04-22 04:05:48.172691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.185258"], ["updated_at", "2020-04-22 04:05:48.185258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.206227"], ["updated_at", "2020-04-22 04:05:48.206227"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.247924"], ["updated_at", "2020-04-22 04:05:48.247924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (5.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.366139"], ["updated_at", "2020-04-22 04:05:48.366139"]]
Course Create (8.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.359223"], ["updated_at", "2020-04-22 04:05:48.359223"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.370021"], ["updated_at", "2020-04-22 04:05:48.370021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.373112"], ["updated_at", "2020-04-22 04:05:48.373112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.369392"], ["updated_at", "2020-04-22 04:05:48.369392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.376906"], ["updated_at", "2020-04-22 04:05:48.376906"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.399730"], ["updated_at", "2020-04-22 04:05:48.399730"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.402674"], ["updated_at", "2020-04-22 04:05:48.402674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.406898"], ["updated_at", "2020-04-22 04:05:48.406898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.416359"], ["updated_at", "2020-04-22 04:05:48.416359"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:05:48.416809"], ["updated_at", "2020-04-22 04:05:48.416809"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.419868"], ["updated_at", "2020-04-22 04:05:48.419868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:05:48.419457"], ["updated_at", "2020-04-22 04:05:48.419457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.422715"], ["updated_at", "2020-04-22 04:05:48.422715"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:05:48.423989"], ["updated_at", "2020-04-22 04:05:48.423989"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (27.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (4.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:02.562545', '2020-04-22 04:06:02.562545'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:02.562545', '2020-04-22 04:06:02.562545'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:02.568420', '2020-04-22 04:06:02.568420', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:02.568420', '2020-04-22 04:06:02.568420', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:02.571583', '2020-04-22 04:06:02.571583'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:02.571583', '2020-04-22 04:06:02.571583'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:02.573633', '2020-04-22 04:06:02.573633'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:02.573633', '2020-04-22 04:06:02.573633'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:02.599723', '2020-04-22 04:06:02.599723'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:02.599723', '2020-04-22 04:06:02.599723'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:02.635215', '2020-04-22 04:06:02.635215'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:02.635215', '2020-04-22 04:06:02.635215'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:02.637564', '2020-04-22 04:06:02.637564'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:02.637564', '2020-04-22 04:06:02.637564')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CommentTest: test_comment_validity


Fixtures Load (7.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:02.568153', '2020-04-22 04:06:02.568153'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:02.568153', '2020-04-22 04:06:02.568153'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:02.575887', '2020-04-22 04:06:02.575887', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:02.575887', '2020-04-22 04:06:02.575887', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:02.577969', '2020-04-22 04:06:02.577969'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:02.577969', '2020-04-22 04:06:02.577969'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:02.584877', '2020-04-22 04:06:02.584877'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:02.584877', '2020-04-22 04:06:02.584877'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:02.599690', '2020-04-22 04:06:02.599690'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:02.599690', '2020-04-22 04:06:02.599690'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:02.644360', '2020-04-22 04:06:02.644360'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:02.644360', '2020-04-22 04:06:02.644360'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:02.646892', '2020-04-22 04:06:02.646892'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:02.646892', '2020-04-22 04:06:02.646892')

 (15.4ms)  commit transaction
 (1.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:02.724009"], ["updated_at", "2020-04-22 04:06:02.724009"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:02.747716"], ["updated_at", "2020-04-22 04:06:02.747716"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:02.774248"], ["updated_at", "2020-04-22 04:06:02.774248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:02.780801"], ["updated_at", "2020-04-22 04:06:02.780801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:02.852144"], ["updated_at", "2020-04-22 04:06:02.852144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (23.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:02.836647"], ["updated_at", "2020-04-22 04:06:02.836647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (13.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (9.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (4.7ms)  rollback transaction
 (8.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:02.931606"], ["updated_at", "2020-04-22 04:06:02.931606"]]

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:02.934863"], ["updated_at", "2020-04-22 04:06:02.934863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:02.934410"], ["updated_at", "2020-04-22 04:06:02.934410"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:02.938102"], ["updated_at", "2020-04-22 04:06:02.938102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:02.937616"], ["updated_at", "2020-04-22 04:06:02.937616"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:02.940242"], ["updated_at", "2020-04-22 04:06:02.940242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:02.955761"], ["updated_at", "2020-04-22 04:06:02.955761"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:02.958435"], ["updated_at", "2020-04-22 04:06:02.958435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:02.960968"], ["updated_at", "2020-04-22 04:06:02.960968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.4ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.021491"], ["updated_at", "2020-04-22 04:06:03.021491"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.023655"], ["updated_at", "2020-04-22 04:06:03.023655"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.024696"], ["updated_at", "2020-04-22 04:06:03.024696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.027196"], ["updated_at", "2020-04-22 04:06:03.027196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.027438"], ["updated_at", "2020-04-22 04:06:03.027438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.030072"], ["updated_at", "2020-04-22 04:06:03.030072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (66.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Truncate Tables (33.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:03.400149', '2020-04-22 04:06:03.400149'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:03.400149', '2020-04-22 04:06:03.400149'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:03.405045', '2020-04-22 04:06:03.405045', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:03.405045', '2020-04-22 04:06:03.405045', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:03.407296', '2020-04-22 04:06:03.407296'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:03.407296', '2020-04-22 04:06:03.407296'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:03.410721', '2020-04-22 04:06:03.410721'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:03.410721', '2020-04-22 04:06:03.410721'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:03.415324', '2020-04-22 04:06:03.415324'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:03.415324', '2020-04-22 04:06:03.415324'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:03.417884', '2020-04-22 04:06:03.417884'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:03.417884', '2020-04-22 04:06:03.417884'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:03.420239', '2020-04-22 04:06:03.420239'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:03.420239', '2020-04-22 04:06:03.420239')

 (11.8ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:03.406240', '2020-04-22 04:06:03.406240'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:03.406240', '2020-04-22 04:06:03.406240'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:03.413598', '2020-04-22 04:06:03.413598', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:03.413598', '2020-04-22 04:06:03.413598', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:03.426987', '2020-04-22 04:06:03.426987'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:03.426987', '2020-04-22 04:06:03.426987'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:03.430813', '2020-04-22 04:06:03.430813'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:03.430813', '2020-04-22 04:06:03.430813'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:03.433099', '2020-04-22 04:06:03.433099'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:03.433099', '2020-04-22 04:06:03.433099'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:03.435088', '2020-04-22 04:06:03.435088'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:03.435088', '2020-04-22 04:06:03.435088'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:03.456345', '2020-04-22 04:06:03.456345'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:03.456345', '2020-04-22 04:06:03.456345')

 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.500413"], ["updated_at", "2020-04-22 04:06:03.500413"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.497200"], ["updated_at", "2020-04-22 04:06:03.497200"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.535945"], ["updated_at", "2020-04-22 04:06:03.535945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.541196"], ["updated_at", "2020-04-22 04:06:03.541196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.564057"], ["updated_at", "2020-04-22 04:06:03.564057"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.564576"], ["updated_at", "2020-04-22 04:06:03.564576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (32.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (8.1ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.665921"], ["updated_at", "2020-04-22 04:06:03.665921"]]
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.668758"], ["updated_at", "2020-04-22 04:06:03.668758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.670109"], ["updated_at", "2020-04-22 04:06:03.670109"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.672396"], ["updated_at", "2020-04-22 04:06:03.672396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.672880"], ["updated_at", "2020-04-22 04:06:03.672880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.674951"], ["updated_at", "2020-04-22 04:06:03.674951"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.682529"], ["updated_at", "2020-04-22 04:06:03.682529"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.687223"], ["updated_at", "2020-04-22 04:06:03.687223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.689697"], ["updated_at", "2020-04-22 04:06:03.689697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.689027"], ["updated_at", "2020-04-22 04:06:03.689027"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.693267"], ["updated_at", "2020-04-22 04:06:03.693267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.695948"], ["updated_at", "2020-04-22 04:06:03.695948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (11.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]

CommentTest: test_no_bucket_no_comment


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:03.724993"], ["updated_at", "2020-04-22 04:06:03.724993"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:03.728403"], ["updated_at", "2020-04-22 04:06:03.728403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:03.731619"], ["updated_at", "2020-04-22 04:06:03.731619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.0ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (25.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (21.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:08.065455', '2020-04-22 04:06:08.065455'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:08.065455', '2020-04-22 04:06:08.065455'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:08.069969', '2020-04-22 04:06:08.069969', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:08.069969', '2020-04-22 04:06:08.069969', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:08.071651', '2020-04-22 04:06:08.071651'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:08.071651', '2020-04-22 04:06:08.071651'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:08.081235', '2020-04-22 04:06:08.081235'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:08.081235', '2020-04-22 04:06:08.081235'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:08.083203', '2020-04-22 04:06:08.083203'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:08.083203', '2020-04-22 04:06:08.083203'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:08.085081', '2020-04-22 04:06:08.085081'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:08.085081', '2020-04-22 04:06:08.085081'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:08.087793', '2020-04-22 04:06:08.087793'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:08.087793', '2020-04-22 04:06:08.087793')

 (9.2ms)  commit transaction
 (0.6ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:08.078377', '2020-04-22 04:06:08.078377'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:08.078377', '2020-04-22 04:06:08.078377'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:08.083557', '2020-04-22 04:06:08.083557', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:08.083557', '2020-04-22 04:06:08.083557', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:08.085146', '2020-04-22 04:06:08.085146'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:08.085146', '2020-04-22 04:06:08.085146'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:08.087914', '2020-04-22 04:06:08.087914'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:08.087914', '2020-04-22 04:06:08.087914'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:08.092135', '2020-04-22 04:06:08.092135'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:08.092135', '2020-04-22 04:06:08.092135'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:08.094145', '2020-04-22 04:06:08.094145'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:08.094145', '2020-04-22 04:06:08.094145'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:08.097393', '2020-04-22 04:06:08.097393'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:08.097393', '2020-04-22 04:06:08.097393')

 (1.7ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.144494"], ["updated_at", "2020-04-22 04:06:08.144494"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.150192"], ["updated_at", "2020-04-22 04:06:08.150192"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.163258"], ["updated_at", "2020-04-22 04:06:08.163258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.178080"], ["updated_at", "2020-04-22 04:06:08.178080"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.222302"], ["updated_at", "2020-04-22 04:06:08.222302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (8.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.234783"], ["updated_at", "2020-04-22 04:06:08.234783"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.237586"], ["updated_at", "2020-04-22 04:06:08.237586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.240661"], ["updated_at", "2020-04-22 04:06:08.240661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.252002"], ["updated_at", "2020-04-22 04:06:08.252002"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.260943"], ["updated_at", "2020-04-22 04:06:08.260943"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.264670"], ["updated_at", "2020-04-22 04:06:08.264670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.340893"], ["updated_at", "2020-04-22 04:06:08.340893"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.343791"], ["updated_at", "2020-04-22 04:06:08.343791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.345804"], ["updated_at", "2020-04-22 04:06:08.345804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.267188"], ["updated_at", "2020-04-22 04:06:08.267188"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.361119"], ["updated_at", "2020-04-22 04:06:08.361119"]]
 (3.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.364219"], ["updated_at", "2020-04-22 04:06:08.364219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.366558"], ["updated_at", "2020-04-22 04:06:08.366558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_comments_on_course_via_proxy


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:08.369143"], ["updated_at", "2020-04-22 04:06:08.369143"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:08.374858"], ["updated_at", "2020-04-22 04:06:08.374858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:08.376712"], ["updated_at", "2020-04-22 04:06:08.376712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (15.0ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.8ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.0ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (1.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (23.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
Truncate Tables (24.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:34.768446', '2020-04-22 04:06:34.768446'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:34.768446', '2020-04-22 04:06:34.768446'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:34.772922', '2020-04-22 04:06:34.772922', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:34.772922', '2020-04-22 04:06:34.772922', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:34.775206', '2020-04-22 04:06:34.775206'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:34.775206', '2020-04-22 04:06:34.775206'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:34.777692', '2020-04-22 04:06:34.777692'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:34.777692', '2020-04-22 04:06:34.777692'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:34.780998', '2020-04-22 04:06:34.780998'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:34.780998', '2020-04-22 04:06:34.780998'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:34.782029', '2020-04-22 04:06:34.782029'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:34.782029', '2020-04-22 04:06:34.782029'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:34.783231', '2020-04-22 04:06:34.783231'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:34.783231', '2020-04-22 04:06:34.783231')

 (1.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket

 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF

 (0.1ms)  begin transaction
Fixtures Load (1.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:06:34.775741', '2020-04-22 04:06:34.775741'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:06:34.775741', '2020-04-22 04:06:34.775741'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:06:34.780736', '2020-04-22 04:06:34.780736', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:06:34.780736', '2020-04-22 04:06:34.780736', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:06:34.782055', '2020-04-22 04:06:34.782055'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:34.782055', '2020-04-22 04:06:34.782055'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:34.783414', '2020-04-22 04:06:34.783414'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:06:34.783414', '2020-04-22 04:06:34.783414'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:06:34.784967', '2020-04-22 04:06:34.784967'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:06:34.784967', '2020-04-22 04:06:34.784967'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:06:34.786722', '2020-04-22 04:06:34.786722'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:06:34.786722', '2020-04-22 04:06:34.786722'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:06:34.789056', '2020-04-22 04:06:34.789056'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:06:34.789056', '2020-04-22 04:06:34.789056')

 (4.9ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:34.808398"], ["updated_at", "2020-04-22 04:06:34.808398"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:34.814486"], ["updated_at", "2020-04-22 04:06:34.814486"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:34.836300"], ["updated_at", "2020-04-22 04:06:34.836300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:34.855022"], ["updated_at", "2020-04-22 04:06:34.855022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:34.859658"], ["updated_at", "2020-04-22 04:06:34.859658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:34.875979"], ["updated_at", "2020-04-22 04:06:34.875979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (8.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:34.942975"], ["updated_at", "2020-04-22 04:06:34.942975"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:34.952533"], ["updated_at", "2020-04-22 04:06:34.952533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:34.957964"], ["updated_at", "2020-04-22 04:06:34.957964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:34.968459"], ["updated_at", "2020-04-22 04:06:34.968459"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:34.971297"], ["updated_at", "2020-04-22 04:06:34.971297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:34.973124"], ["updated_at", "2020-04-22 04:06:34.973124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:34.995444"], ["updated_at", "2020-04-22 04:06:34.995444"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:35.002669"], ["updated_at", "2020-04-22 04:06:35.002669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:35.004538"], ["updated_at", "2020-04-22 04:06:35.004538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (14.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:35.028935"], ["updated_at", "2020-04-22 04:06:35.028935"]]
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:06:35.067057"], ["updated_at", "2020-04-22 04:06:35.067057"]]
Bucket Create (7.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:35.051282"], ["updated_at", "2020-04-22 04:06:35.051282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:35.081112"], ["updated_at", "2020-04-22 04:06:35.081112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:06:35.070203"], ["updated_at", "2020-04-22 04:06:35.070203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (5.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:06:35.084764"], ["updated_at", "2020-04-22 04:06:35.084764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (15.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (1.5ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (21.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (15.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.5ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:10.291974', '2020-04-22 04:07:10.291974'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:10.291974', '2020-04-22 04:07:10.291974'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:10.296138', '2020-04-22 04:07:10.296138', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:10.296138', '2020-04-22 04:07:10.296138', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:10.298143', '2020-04-22 04:07:10.298143'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:10.298143', '2020-04-22 04:07:10.298143'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:10.299657', '2020-04-22 04:07:10.299657'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:10.299657', '2020-04-22 04:07:10.299657'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:10.301008', '2020-04-22 04:07:10.301008'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:10.301008', '2020-04-22 04:07:10.301008'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:10.302251', '2020-04-22 04:07:10.302251'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:10.302251', '2020-04-22 04:07:10.302251'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:10.304165', '2020-04-22 04:07:10.304165'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:10.304165', '2020-04-22 04:07:10.304165')

 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.4ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:10.292691', '2020-04-22 04:07:10.292691'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:10.292691', '2020-04-22 04:07:10.292691'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:10.296569', '2020-04-22 04:07:10.296569', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:10.296569', '2020-04-22 04:07:10.296569', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:10.302915', '2020-04-22 04:07:10.302915'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:10.302915', '2020-04-22 04:07:10.302915'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:10.304590', '2020-04-22 04:07:10.304590'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:10.304590', '2020-04-22 04:07:10.304590'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:10.306157', '2020-04-22 04:07:10.306157'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:10.306157', '2020-04-22 04:07:10.306157'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:10.307412', '2020-04-22 04:07:10.307412'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:10.307412', '2020-04-22 04:07:10.307412'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:10.309544', '2020-04-22 04:07:10.309544'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:10.309544', '2020-04-22 04:07:10.309544')

 (1.0ms)  commit transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:07:10.340895"], ["updated_at", "2020-04-22 04:07:10.340895"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:10.364154"], ["updated_at", "2020-04-22 04:07:10.364154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:10.380226"], ["updated_at", "2020-04-22 04:07:10.380226"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  SELECT sqlite_version(*)
 (2.6ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.4ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  PRAGMA foreign_keys = OFF
Truncate Tables (22.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (21.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:15.449301', '2020-04-22 04:07:15.449301'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:15.449301', '2020-04-22 04:07:15.449301'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:15.452047', '2020-04-22 04:07:15.452047', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:15.452047', '2020-04-22 04:07:15.452047', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:15.453548', '2020-04-22 04:07:15.453548'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:15.453548', '2020-04-22 04:07:15.453548'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:15.455959', '2020-04-22 04:07:15.455959'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:15.455959', '2020-04-22 04:07:15.455959'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:15.457291', '2020-04-22 04:07:15.457291'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:15.457291', '2020-04-22 04:07:15.457291'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:15.458764', '2020-04-22 04:07:15.458764'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:15.458764', '2020-04-22 04:07:15.458764'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:15.460807', '2020-04-22 04:07:15.460807'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:15.460807', '2020-04-22 04:07:15.460807')

Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:15.448564', '2020-04-22 04:07:15.448564'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:15.448564', '2020-04-22 04:07:15.448564'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:15.451424', '2020-04-22 04:07:15.451424', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:15.451424', '2020-04-22 04:07:15.451424', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:15.452741', '2020-04-22 04:07:15.452741'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:15.452741', '2020-04-22 04:07:15.452741'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:15.455455', '2020-04-22 04:07:15.455455'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:15.455455', '2020-04-22 04:07:15.455455'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:15.457460', '2020-04-22 04:07:15.457460'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:15.457460', '2020-04-22 04:07:15.457460'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:15.458788', '2020-04-22 04:07:15.458788'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:15.458788', '2020-04-22 04:07:15.458788'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:15.460613', '2020-04-22 04:07:15.460613'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:15.460613', '2020-04-22 04:07:15.460613')

 (1.6ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.9ms)  commit transaction
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0

CommentTest: test_comment_created_success


 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.484913"], ["updated_at", "2020-04-22 04:07:15.484913"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.484918"], ["updated_at", "2020-04-22 04:07:15.484918"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.503952"], ["updated_at", "2020-04-22 04:07:15.503952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.504011"], ["updated_at", "2020-04-22 04:07:15.504011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.516616"], ["updated_at", "2020-04-22 04:07:15.516616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.519643"], ["updated_at", "2020-04-22 04:07:15.519643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.565463"], ["updated_at", "2020-04-22 04:07:15.565463"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.567064"], ["updated_at", "2020-04-22 04:07:15.567064"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.568464"], ["updated_at", "2020-04-22 04:07:15.568464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.569760"], ["updated_at", "2020-04-22 04:07:15.569760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.571263"], ["updated_at", "2020-04-22 04:07:15.571263"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.574221"], ["updated_at", "2020-04-22 04:07:15.574221"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.588006"], ["updated_at", "2020-04-22 04:07:15.588006"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.589948"], ["updated_at", "2020-04-22 04:07:15.589948"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.590831"], ["updated_at", "2020-04-22 04:07:15.590831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.592399"], ["updated_at", "2020-04-22 04:07:15.592399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.592643"], ["updated_at", "2020-04-22 04:07:15.592643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.594779"], ["updated_at", "2020-04-22 04:07:15.594779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:07:15.606646"], ["updated_at", "2020-04-22 04:07:15.606646"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:15.609834"], ["updated_at", "2020-04-22 04:07:15.609834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:15.612294"], ["updated_at", "2020-04-22 04:07:15.612294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (18.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (20.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:36.075165', '2020-04-22 04:07:36.075165'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:36.075165', '2020-04-22 04:07:36.075165'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:36.079202', '2020-04-22 04:07:36.079202', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:36.079202', '2020-04-22 04:07:36.079202', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:36.080829', '2020-04-22 04:07:36.080829'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:36.080829', '2020-04-22 04:07:36.080829'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:36.082884', '2020-04-22 04:07:36.082884'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:36.082884', '2020-04-22 04:07:36.082884'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:36.085060', '2020-04-22 04:07:36.085060'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:36.085060', '2020-04-22 04:07:36.085060'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:36.087185', '2020-04-22 04:07:36.087185'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:36.087185', '2020-04-22 04:07:36.087185'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:36.088482', '2020-04-22 04:07:36.088482'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:36.088482', '2020-04-22 04:07:36.088482')

Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:07:36.075264', '2020-04-22 04:07:36.075264'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:07:36.075264', '2020-04-22 04:07:36.075264'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:07:36.079002', '2020-04-22 04:07:36.079002', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:07:36.079002', '2020-04-22 04:07:36.079002', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:07:36.080165', '2020-04-22 04:07:36.080165'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:36.080165', '2020-04-22 04:07:36.080165'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:36.081621', '2020-04-22 04:07:36.081621'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:07:36.081621', '2020-04-22 04:07:36.081621'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:07:36.082923', '2020-04-22 04:07:36.082923'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:07:36.082923', '2020-04-22 04:07:36.082923'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:07:36.084259', '2020-04-22 04:07:36.084259'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:07:36.084259', '2020-04-22 04:07:36.084259'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:07:36.085801', '2020-04-22 04:07:36.085801'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:07:36.085801', '2020-04-22 04:07:36.085801')

 (1.4ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.2ms)  commit transaction
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction
 (0.0ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails



CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:07:36.127889"], ["updated_at", "2020-04-22 04:07:36.127889"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:07:36.144764"], ["updated_at", "2020-04-22 04:07:36.144764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:07:36.159059"], ["updated_at", "2020-04-22 04:07:36.159059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (16.4ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (16.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (17.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (0.9ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:08:03.388655', '2020-04-22 04:08:03.388655'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:08:03.388655', '2020-04-22 04:08:03.388655'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:08:03.391456', '2020-04-22 04:08:03.391456', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:08:03.391456', '2020-04-22 04:08:03.391456', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:08:03.392861', '2020-04-22 04:08:03.392861'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:03.392861', '2020-04-22 04:08:03.392861'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:03.394207', '2020-04-22 04:08:03.394207'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:03.394207', '2020-04-22 04:08:03.394207'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:08:03.395378', '2020-04-22 04:08:03.395378'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:08:03.395378', '2020-04-22 04:08:03.395378'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:08:03.396380', '2020-04-22 04:08:03.396380'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:08:03.396380', '2020-04-22 04:08:03.396380'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:08:03.397517', '2020-04-22 04:08:03.397517'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:03.397517', '2020-04-22 04:08:03.397517')

Fixtures Load (0.9ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:08:03.388655', '2020-04-22 04:08:03.388655'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:08:03.388655', '2020-04-22 04:08:03.388655'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:08:03.391459', '2020-04-22 04:08:03.391459', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:08:03.391459', '2020-04-22 04:08:03.391459', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:08:03.392942', '2020-04-22 04:08:03.392942'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:03.392942', '2020-04-22 04:08:03.392942'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:03.394210', '2020-04-22 04:08:03.394210'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:03.394210', '2020-04-22 04:08:03.394210'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:08:03.395377', '2020-04-22 04:08:03.395377'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:08:03.395377', '2020-04-22 04:08:03.395377'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:08:03.396371', '2020-04-22 04:08:03.396371'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:08:03.396371', '2020-04-22 04:08:03.396371'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:08:03.397548', '2020-04-22 04:08:03.397548'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:03.397548', '2020-04-22 04:08:03.397548')

 (1.2ms)  commit transaction
 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction
 (0.1ms)  begin transaction


CourseTest: test_belongs_to_:vault_association CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails



 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:08:03.417472"], ["updated_at", "2020-04-22 04:08:03.417472"]]
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:08:03.434583"], ["updated_at", "2020-04-22 04:08:03.434583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:08:03.452373"], ["updated_at", "2020-04-22 04:08:03.452373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.0ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (17.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:08:47.610254', '2020-04-22 04:08:47.610254'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:08:47.610254', '2020-04-22 04:08:47.610254'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:08:47.615617', '2020-04-22 04:08:47.615617', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:08:47.615617', '2020-04-22 04:08:47.615617', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:08:47.617957', '2020-04-22 04:08:47.617957'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:47.617957', '2020-04-22 04:08:47.617957'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:47.619402', '2020-04-22 04:08:47.619402'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:47.619402', '2020-04-22 04:08:47.619402'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:08:47.620735', '2020-04-22 04:08:47.620735'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:08:47.620735', '2020-04-22 04:08:47.620735'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:08:47.622110', '2020-04-22 04:08:47.622110'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:08:47.622110', '2020-04-22 04:08:47.622110'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:08:47.625363', '2020-04-22 04:08:47.625363'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:47.625363', '2020-04-22 04:08:47.625363')

Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:08:47.613252', '2020-04-22 04:08:47.613252'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:08:47.613252', '2020-04-22 04:08:47.613252'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:08:47.617361', '2020-04-22 04:08:47.617361', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:08:47.617361', '2020-04-22 04:08:47.617361', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:08:47.618896', '2020-04-22 04:08:47.618896'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:47.618896', '2020-04-22 04:08:47.618896'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:47.620286', '2020-04-22 04:08:47.620286'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:08:47.620286', '2020-04-22 04:08:47.620286'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:08:47.621705', '2020-04-22 04:08:47.621705'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:08:47.621705', '2020-04-22 04:08:47.621705'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:08:47.624994', '2020-04-22 04:08:47.624994'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:08:47.624994', '2020-04-22 04:08:47.624994'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:08:47.627010', '2020-04-22 04:08:47.627010'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:08:47.627010', '2020-04-22 04:08:47.627010')

 (1.3ms)  commit transaction
 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CourseTest: test_belongs_to_:vault_association CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails



 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:08:47.661954"], ["updated_at", "2020-04-22 04:08:47.661954"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:08:47.681631"], ["updated_at", "2020-04-22 04:08:47.681631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:08:47.694199"], ["updated_at", "2020-04-22 04:08:47.694199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (20.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (18.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:09:07.508041', '2020-04-22 04:09:07.508041'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:09:07.508041', '2020-04-22 04:09:07.508041'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:09:07.512883', '2020-04-22 04:09:07.512883', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:09:07.512883', '2020-04-22 04:09:07.512883', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:09:07.515801', '2020-04-22 04:09:07.515801'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:07.515801', '2020-04-22 04:09:07.515801'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:07.518640', '2020-04-22 04:09:07.518640'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:07.518640', '2020-04-22 04:09:07.518640'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:09:07.521097', '2020-04-22 04:09:07.521097'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:09:07.521097', '2020-04-22 04:09:07.521097'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:09:07.522458', '2020-04-22 04:09:07.522458'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:09:07.522458', '2020-04-22 04:09:07.522458'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:09:07.524032', '2020-04-22 04:09:07.524032'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:07.524032', '2020-04-22 04:09:07.524032')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:09:07.517703', '2020-04-22 04:09:07.517703'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:09:07.517703', '2020-04-22 04:09:07.517703'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:09:07.521744', '2020-04-22 04:09:07.521744', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:09:07.521744', '2020-04-22 04:09:07.521744', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:09:07.523270', '2020-04-22 04:09:07.523270'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:07.523270', '2020-04-22 04:09:07.523270'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:07.528274', '2020-04-22 04:09:07.528274'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:07.528274', '2020-04-22 04:09:07.528274'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:09:07.530686', '2020-04-22 04:09:07.530686'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:09:07.530686', '2020-04-22 04:09:07.530686'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:09:07.532322', '2020-04-22 04:09:07.532322'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:09:07.532322', '2020-04-22 04:09:07.532322'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:09:07.534594', '2020-04-22 04:09:07.534594'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:07.534594', '2020-04-22 04:09:07.534594')

 (1.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.553829"], ["updated_at", "2020-04-22 04:09:07.553829"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.558280"], ["updated_at", "2020-04-22 04:09:07.558280"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.567728"], ["updated_at", "2020-04-22 04:09:07.567728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.576077"], ["updated_at", "2020-04-22 04:09:07.576077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.584025"], ["updated_at", "2020-04-22 04:09:07.584025"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.586366"], ["updated_at", "2020-04-22 04:09:07.586366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.610852"], ["updated_at", "2020-04-22 04:09:07.610852"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.614162"], ["updated_at", "2020-04-22 04:09:07.614162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.616129"], ["updated_at", "2020-04-22 04:09:07.616129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.622739"], ["updated_at", "2020-04-22 04:09:07.622739"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.626082"], ["updated_at", "2020-04-22 04:09:07.626082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.628143"], ["updated_at", "2020-04-22 04:09:07.628143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.641063"], ["updated_at", "2020-04-22 04:09:07.641063"]]
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.648237"], ["updated_at", "2020-04-22 04:09:07.648237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.648938"], ["updated_at", "2020-04-22 04:09:07.648938"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.650027"], ["updated_at", "2020-04-22 04:09:07.650027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.651113"], ["updated_at", "2020-04-22 04:09:07.651113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.652454"], ["updated_at", "2020-04-22 04:09:07.652454"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:07.658643"], ["updated_at", "2020-04-22 04:09:07.658643"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:07.660716"], ["updated_at", "2020-04-22 04:09:07.660716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:07.662606"], ["updated_at", "2020-04-22 04:09:07.662606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.9ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (27.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
Fixtures Load (1.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:09:20.222397', '2020-04-22 04:09:20.222397'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:09:20.222397', '2020-04-22 04:09:20.222397'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:09:20.225490', '2020-04-22 04:09:20.225490', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:09:20.225490', '2020-04-22 04:09:20.225490', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:09:20.227033', '2020-04-22 04:09:20.227033'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:20.227033', '2020-04-22 04:09:20.227033'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:20.228381', '2020-04-22 04:09:20.228381'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:20.228381', '2020-04-22 04:09:20.228381'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:09:20.230575', '2020-04-22 04:09:20.230575'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:09:20.230575', '2020-04-22 04:09:20.230575'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:09:20.232194', '2020-04-22 04:09:20.232194'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:09:20.232194', '2020-04-22 04:09:20.232194'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:09:20.234985', '2020-04-22 04:09:20.234985'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:20.234985', '2020-04-22 04:09:20.234985')

 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (1.4ms)  commit transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:09:20.220131', '2020-04-22 04:09:20.220131'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:09:20.220131', '2020-04-22 04:09:20.220131'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:09:20.224666', '2020-04-22 04:09:20.224666', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:09:20.224666', '2020-04-22 04:09:20.224666', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:09:20.229832', '2020-04-22 04:09:20.229832'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:20.229832', '2020-04-22 04:09:20.229832'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:20.231596', '2020-04-22 04:09:20.231596'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:09:20.231596', '2020-04-22 04:09:20.231596'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:09:20.233967', '2020-04-22 04:09:20.233967'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:09:20.233967', '2020-04-22 04:09:20.233967'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:09:20.236033', '2020-04-22 04:09:20.236033'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:09:20.236033', '2020-04-22 04:09:20.236033'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:09:20.237389', '2020-04-22 04:09:20.237389'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:09:20.237389', '2020-04-22 04:09:20.237389')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:09:20.301137"], ["updated_at", "2020-04-22 04:09:20.301137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 13b61ce9-d013-4456-babf-b0615c61eb0d) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
ContentRecommendation Create (0.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:09:20.307684"], ["updated_at", "2020-04-22 04:09:20.307684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.337032"], ["updated_at", "2020-04-22 04:09:20.337032"]]
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.354701"], ["updated_at", "2020-04-22 04:09:20.354701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.372477"], ["updated_at", "2020-04-22 04:09:20.372477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.383212"], ["updated_at", "2020-04-22 04:09:20.383212"]]
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:09:20.392599"], ["updated_at", "2020-04-22 04:09:20.392599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.395916"], ["updated_at", "2020-04-22 04:09:20.395916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:09:20.396504"], ["updated_at", "2020-04-22 04:09:20.396504"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (1.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:09:20.398646"], ["updated_at", "2020-04-22 04:09:20.398646"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:09:20.425705"], ["updated_at", "2020-04-22 04:09:20.425705"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.428058"], ["updated_at", "2020-04-22 04:09:20.428058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.430483"], ["updated_at", "2020-04-22 04:09:20.430483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.439515"], ["updated_at", "2020-04-22 04:09:20.439515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:09:20.452683"], ["updated_at", "2020-04-22 04:09:20.452683"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.456986"], ["updated_at", "2020-04-22 04:09:20.456986"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.465652"], ["updated_at", "2020-04-22 04:09:20.465652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SELECT COUNT(*) FROM "content_recommendations"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
 (0.1ms)  rollback transaction
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:09:20.493442"], ["updated_at", "2020-04-22 04:09:20.493442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.504538"], ["updated_at", "2020-04-22 04:09:20.504538"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.507448"], ["updated_at", "2020-04-22 04:09:20.507448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.511665"], ["updated_at", "2020-04-22 04:09:20.511665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.4ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.523799"], ["updated_at", "2020-04-22 04:09:20.523799"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.526339"], ["updated_at", "2020-04-22 04:09:20.526339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.538359"], ["updated_at", "2020-04-22 04:09:20.538359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.545047"], ["updated_at", "2020-04-22 04:09:20.545047"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.547843"], ["updated_at", "2020-04-22 04:09:20.547843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.553379"], ["updated_at", "2020-04-22 04:09:20.553379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (1.2ms)  rollback transaction
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.562954"], ["updated_at", "2020-04-22 04:09:20.562954"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.563529"], ["updated_at", "2020-04-22 04:09:20.563529"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.566076"], ["updated_at", "2020-04-22 04:09:20.566076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.566179"], ["updated_at", "2020-04-22 04:09:20.566179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.569698"], ["updated_at", "2020-04-22 04:09:20.569698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.569606"], ["updated_at", "2020-04-22 04:09:20.569606"]]
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (6.6ms)  rollback transaction
 (6.2ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.590331"], ["updated_at", "2020-04-22 04:09:20.590331"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.593439"], ["updated_at", "2020-04-22 04:09:20.593439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.597876"], ["updated_at", "2020-04-22 04:09:20.597876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (2.6ms)  rollback transaction
Course Load (3.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:09:20.622439"], ["updated_at", "2020-04-22 04:09:20.622439"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.626206"], ["updated_at", "2020-04-22 04:09:20.626206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.628098"], ["updated_at", "2020-04-22 04:09:20.628098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:09:20.634866"], ["updated_at", "2020-04-22 04:09:20.634866"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.637714"], ["updated_at", "2020-04-22 04:09:20.637714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.639317"], ["updated_at", "2020-04-22 04:09:20.639317"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
13b61ce9-d013-4456-babf-b0615c61eb0d

Performing CourseRecommendationMailerJob (Job ID: 13b61ce9-d013-4456-babf-b0615c61eb0d) from Async(default) enqueued at 2020-04-22T04:09:20Z

ActiveJob
CourseRecommendationMailerJob
13b61ce9-d013-4456-babf-b0615c61eb0d

Performed CourseRecommendationMailerJob (Job ID: 13b61ce9-d013-4456-babf-b0615c61eb0d) from Async(default) in 0.14ms

 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:09:20.649623"], ["updated_at", "2020-04-22 04:09:20.649623"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.652769"], ["updated_at", "2020-04-22 04:09:20.652769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.655093"], ["updated_at", "2020-04-22 04:09:20.655093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.661993"], ["updated_at", "2020-04-22 04:09:20.661993"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.664442"], ["updated_at", "2020-04-22 04:09:20.664442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.666353"], ["updated_at", "2020-04-22 04:09:20.666353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.705447"], ["updated_at", "2020-04-22 04:09:20.705447"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.709420"], ["updated_at", "2020-04-22 04:09:20.709420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.713735"], ["updated_at", "2020-04-22 04:09:20.713735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:09:20.716107"], ["updated_at", "2020-04-22 04:09:20.716107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.718735"], ["updated_at", "2020-04-22 04:09:20.718735"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.720855"], ["updated_at", "2020-04-22 04:09:20.720855"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.722632"], ["updated_at", "2020-04-22 04:09:20.722632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:09:20.724742"], ["updated_at", "2020-04-22 04:09:20.724742"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.728611"], ["updated_at", "2020-04-22 04:09:20.728611"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.730707"], ["updated_at", "2020-04-22 04:09:20.730707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.732467"], ["updated_at", "2020-04-22 04:09:20.732467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.783957"], ["updated_at", "2020-04-22 04:09:20.783957"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.786771"], ["updated_at", "2020-04-22 04:09:20.786771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.788739"], ["updated_at", "2020-04-22 04:09:20.788739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.798494"], ["updated_at", "2020-04-22 04:09:20.798494"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.801408"], ["updated_at", "2020-04-22 04:09:20.801408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.803054"], ["updated_at", "2020-04-22 04:09:20.803054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.815666"], ["updated_at", "2020-04-22 04:09:20.815666"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.817923"], ["updated_at", "2020-04-22 04:09:20.817923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.820396"], ["updated_at", "2020-04-22 04:09:20.820396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.829907"], ["updated_at", "2020-04-22 04:09:20.829907"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.832546"], ["updated_at", "2020-04-22 04:09:20.832546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.835663"], ["updated_at", "2020-04-22 04:09:20.835663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.860243"], ["updated_at", "2020-04-22 04:09:20.860243"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.862796"], ["updated_at", "2020-04-22 04:09:20.862796"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.865003"], ["updated_at", "2020-04-22 04:09:20.865003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:09:20.876932"], ["updated_at", "2020-04-22 04:09:20.876932"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.880128"], ["updated_at", "2020-04-22 04:09:20.880128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.882024"], ["updated_at", "2020-04-22 04:09:20.882024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.898129"], ["updated_at", "2020-04-22 04:09:20.898129"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.901384"], ["updated_at", "2020-04-22 04:09:20.901384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.902912"], ["updated_at", "2020-04-22 04:09:20.902912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.6ms | Allocations: 441)

Completed 200 OK in 17ms (Views: 12.4ms | ActiveRecord: 0.2ms | Allocations: 4197)

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.930113"], ["updated_at", "2020-04-22 04:09:20.930113"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.932823"], ["updated_at", "2020-04-22 04:09:20.932823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.935006"], ["updated_at", "2020-04-22 04:09:20.935006"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 9)

Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 674)

 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:09:20.952902"], ["updated_at", "2020-04-22 04:09:20.952902"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:20.955804"], ["updated_at", "2020-04-22 04:09:20.955804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:20.957672"], ["updated_at", "2020-04-22 04:09:20.957672"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 362)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 74ms (Views: 73.0ms | ActiveRecord: 0.2ms | Allocations: 8237)

 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:09:21.045089"], ["updated_at", "2020-04-22 04:09:21.045089"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:09:21.048541"], ["updated_at", "2020-04-22 04:09:21.048541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:09:21.050022"], ["updated_at", "2020-04-22 04:09:21.050022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.7ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (15.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (15.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:10:28.522639', '2020-04-22 04:10:28.522639'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:10:28.522639', '2020-04-22 04:10:28.522639'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:10:28.525826', '2020-04-22 04:10:28.525826', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:10:28.525826', '2020-04-22 04:10:28.525826', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:10:28.527932', '2020-04-22 04:10:28.527932'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:10:28.527932', '2020-04-22 04:10:28.527932'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:10:28.530072', '2020-04-22 04:10:28.530072'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:10:28.530072', '2020-04-22 04:10:28.530072'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:10:28.531430', '2020-04-22 04:10:28.531430'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:10:28.531430', '2020-04-22 04:10:28.531430'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:10:28.533188', '2020-04-22 04:10:28.533188'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:10:28.533188', '2020-04-22 04:10:28.533188'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:10:28.535021', '2020-04-22 04:10:28.535021'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:10:28.535021', '2020-04-22 04:10:28.535021')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  PRAGMA foreign_keys
 (0.6ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:10:28.525457', '2020-04-22 04:10:28.525457'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:10:28.525457', '2020-04-22 04:10:28.525457'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:10:28.528860', '2020-04-22 04:10:28.528860', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:10:28.528860', '2020-04-22 04:10:28.528860', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:10:28.530521', '2020-04-22 04:10:28.530521'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:10:28.530521', '2020-04-22 04:10:28.530521'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:10:28.532914', '2020-04-22 04:10:28.532914'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:10:28.532914', '2020-04-22 04:10:28.532914'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:10:28.535037', '2020-04-22 04:10:28.535037'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:10:28.535037', '2020-04-22 04:10:28.535037'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:10:28.536809', '2020-04-22 04:10:28.536809'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:10:28.536809', '2020-04-22 04:10:28.536809'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:10:28.538684', '2020-04-22 04:10:28.538684'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:10:28.538684', '2020-04-22 04:10:28.538684')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.648350"], ["updated_at", "2020-04-22 04:10:28.648350"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.653693"], ["updated_at", "2020-04-22 04:10:28.653693"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.664882"], ["updated_at", "2020-04-22 04:10:28.664882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.669196"], ["updated_at", "2020-04-22 04:10:28.669196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.676189"], ["updated_at", "2020-04-22 04:10:28.676189"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.678613"], ["updated_at", "2020-04-22 04:10:28.678613"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.6ms | Allocations: 446)

Completed 200 OK in 24ms (Views: 11.5ms | ActiveRecord: 0.4ms | Allocations: 5723)

Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.2ms | Allocations: 442)

Completed 200 OK in 25ms (Views: 11.1ms | ActiveRecord: 0.3ms | Allocations: 5712)

 (3.4ms)  rollback transaction
 (7.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails



 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.719940"], ["updated_at", "2020-04-22 04:10:28.719940"]]
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.722661"], ["updated_at", "2020-04-22 04:10:28.722661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:10:28.722583"], ["updated_at", "2020-04-22 04:10:28.722583"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.724568"], ["updated_at", "2020-04-22 04:10:28.724568"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.725544"], ["updated_at", "2020-04-22 04:10:28.725544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.728085"], ["updated_at", "2020-04-22 04:10:28.728085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.6ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.748708"], ["updated_at", "2020-04-22 04:10:28.748708"]]
Vault Create (0.8ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:10:28.748250"], ["updated_at", "2020-04-22 04:10:28.748250"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.751489"], ["updated_at", "2020-04-22 04:10:28.751489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.751317"], ["updated_at", "2020-04-22 04:10:28.751317"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.753800"], ["updated_at", "2020-04-22 04:10:28.753800"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.753703"], ["updated_at", "2020-04-22 04:10:28.753703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.0ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.757642"], ["updated_at", "2020-04-22 04:10:28.757642"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.761306"], ["updated_at", "2020-04-22 04:10:28.761306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.762917"], ["updated_at", "2020-04-22 04:10:28.762917"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.760700"], ["updated_at", "2020-04-22 04:10:28.760700"]]
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.768449"], ["updated_at", "2020-04-22 04:10:28.768449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.768961"], ["updated_at", "2020-04-22 04:10:28.768961"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.770967"], ["updated_at", "2020-04-22 04:10:28.770967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.771646"], ["updated_at", "2020-04-22 04:10:28.771646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.773822"], ["updated_at", "2020-04-22 04:10:28.773822"]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  begin transaction
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"

SearchableTest: test_find_all_matches_classes


Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.778838"], ["updated_at", "2020-04-22 04:10:28.778838"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.781310"], ["updated_at", "2020-04-22 04:10:28.781310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.783833"], ["updated_at", "2020-04-22 04:10:28.783833"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:28.782926"], ["updated_at", "2020-04-22 04:10:28.782926"]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.787747"], ["updated_at", "2020-04-22 04:10:28.787747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.790136"], ["updated_at", "2020-04-22 04:10:28.790136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.806074"], ["updated_at", "2020-04-22 04:10:28.806074"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.810779"], ["updated_at", "2020-04-22 04:10:28.810779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.813187"], ["updated_at", "2020-04-22 04:10:28.813187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.847101"], ["updated_at", "2020-04-22 04:10:28.847101"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.853757"], ["updated_at", "2020-04-22 04:10:28.853757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.856251"], ["updated_at", "2020-04-22 04:10:28.856251"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.855970"], ["updated_at", "2020-04-22 04:10:28.855970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.864552"], ["updated_at", "2020-04-22 04:10:28.864552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.868829"], ["updated_at", "2020-04-22 04:10:28.868829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.895697"], ["updated_at", "2020-04-22 04:10:28.895697"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.898434"], ["updated_at", "2020-04-22 04:10:28.898434"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.900362"], ["updated_at", "2020-04-22 04:10:28.900362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.907743"], ["updated_at", "2020-04-22 04:10:28.907743"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.910557"], ["updated_at", "2020-04-22 04:10:28.910557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.912519"], ["updated_at", "2020-04-22 04:10:28.912519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.912504"], ["updated_at", "2020-04-22 04:10:28.912504"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.915462"], ["updated_at", "2020-04-22 04:10:28.915462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.917654"], ["updated_at", "2020-04-22 04:10:28.917654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.923023"], ["updated_at", "2020-04-22 04:10:28.923023"]]
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.926674"], ["updated_at", "2020-04-22 04:10:28.926674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.928777"], ["updated_at", "2020-04-22 04:10:28.928777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.2ms)  begin transaction
 (0.6ms)  rollback transaction

TrackTest: test_associations


 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.962393"], ["updated_at", "2020-04-22 04:10:28.962393"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.965206"], ["updated_at", "2020-04-22 04:10:28.965206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.969083"], ["updated_at", "2020-04-22 04:10:28.969083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:10:28.972708"], ["updated_at", "2020-04-22 04:10:28.972708"]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:10:28.972453"], ["updated_at", "2020-04-22 04:10:28.972453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.974314"], ["updated_at", "2020-04-22 04:10:28.974314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:28.974845"], ["updated_at", "2020-04-22 04:10:28.974845"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.976222"], ["updated_at", "2020-04-22 04:10:28.976222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:28.978495"], ["updated_at", "2020-04-22 04:10:28.978495"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:28.980723"], ["updated_at", "2020-04-22 04:10:28.980723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:10:28.983078"], ["updated_at", "2020-04-22 04:10:28.983078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.3ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (1.7ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:10:29.034505"], ["updated_at", "2020-04-22 04:10:29.034505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.0ms)  rollback transaction
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:10:29.042024"], ["updated_at", "2020-04-22 04:10:29.042024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (1.3ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: e60aa669-0a3d-4033-b0d3-3480cb941ead) to Async(default)

Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:10:29.054154"], ["updated_at", "2020-04-22 04:10:29.054154"]]
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.057107"], ["updated_at", "2020-04-22 04:10:29.057107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.060802"], ["updated_at", "2020-04-22 04:10:29.060802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
e60aa669-0a3d-4033-b0d3-3480cb941ead

Performing CourseRecommendationMailerJob (Job ID: e60aa669-0a3d-4033-b0d3-3480cb941ead) from Async(default) enqueued at 2020-04-22T04:10:29Z

ActiveJob
CourseRecommendationMailerJob
e60aa669-0a3d-4033-b0d3-3480cb941ead

Performed CourseRecommendationMailerJob (Job ID: e60aa669-0a3d-4033-b0d3-3480cb941ead) from Async(default) in 0.15ms

 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:10:29.083301"], ["updated_at", "2020-04-22 04:10:29.083301"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.090964"], ["updated_at", "2020-04-22 04:10:29.090964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.094225"], ["updated_at", "2020-04-22 04:10:29.094225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:10:29.104225"], ["updated_at", "2020-04-22 04:10:29.104225"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.106789"], ["updated_at", "2020-04-22 04:10:29.106789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.108794"], ["updated_at", "2020-04-22 04:10:29.108794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:29.143274"], ["updated_at", "2020-04-22 04:10:29.143274"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.145389"], ["updated_at", "2020-04-22 04:10:29.145389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.147069"], ["updated_at", "2020-04-22 04:10:29.147069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (23.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:10:29.151093"], ["updated_at", "2020-04-22 04:10:29.151093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:10:29.181893"], ["updated_at", "2020-04-22 04:10:29.181893"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.183812"], ["updated_at", "2020-04-22 04:10:29.183812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.187834"], ["updated_at", "2020-04-22 04:10:29.187834"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:10:29.190936"], ["updated_at", "2020-04-22 04:10:29.190936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:10:29.196039"], ["updated_at", "2020-04-22 04:10:29.196039"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:10:29.199224"], ["updated_at", "2020-04-22 04:10:29.199224"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:10:29.226645"], ["updated_at", "2020-04-22 04:10:29.226645"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:10:29.232031"], ["updated_at", "2020-04-22 04:10:29.232031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:10:29.234794"], ["updated_at", "2020-04-22 04:10:29.234794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 368)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 218ms (Views: 216.3ms | ActiveRecord: 0.2ms | Allocations: 8275)

 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (2.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (18.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:12:56.383291', '2020-04-22 04:12:56.383291'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:12:56.383291', '2020-04-22 04:12:56.383291'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:12:56.387797', '2020-04-22 04:12:56.387797', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:12:56.387797', '2020-04-22 04:12:56.387797', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:12:56.389800', '2020-04-22 04:12:56.389800'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:12:56.389800', '2020-04-22 04:12:56.389800'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:12:56.397718', '2020-04-22 04:12:56.397718'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:12:56.397718', '2020-04-22 04:12:56.397718'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:12:56.400340', '2020-04-22 04:12:56.400340'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:12:56.400340', '2020-04-22 04:12:56.400340'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:12:56.401492', '2020-04-22 04:12:56.401492'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:12:56.401492', '2020-04-22 04:12:56.401492'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:12:56.403081', '2020-04-22 04:12:56.403081'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:12:56.403081', '2020-04-22 04:12:56.403081')

 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:12:56.388572', '2020-04-22 04:12:56.388572'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:12:56.388572', '2020-04-22 04:12:56.388572'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:12:56.393608', '2020-04-22 04:12:56.393608', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:12:56.393608', '2020-04-22 04:12:56.393608', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:12:56.395646', '2020-04-22 04:12:56.395646'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:12:56.395646', '2020-04-22 04:12:56.395646'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:12:56.398462', '2020-04-22 04:12:56.398462'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:12:56.398462', '2020-04-22 04:12:56.398462'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:12:56.400338', '2020-04-22 04:12:56.400338'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:12:56.400338', '2020-04-22 04:12:56.400338'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:12:56.401896', '2020-04-22 04:12:56.401896'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:12:56.401896', '2020-04-22 04:12:56.401896'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:12:56.405249', '2020-04-22 04:12:56.405249'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:12:56.405249', '2020-04-22 04:12:56.405249')

 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (2.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.432893"], ["updated_at", "2020-04-22 04:12:56.432893"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.439178"], ["updated_at", "2020-04-22 04:12:56.439178"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.448603"], ["updated_at", "2020-04-22 04:12:56.448603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.458474"], ["updated_at", "2020-04-22 04:12:56.458474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.463470"], ["updated_at", "2020-04-22 04:12:56.463470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.479120"], ["updated_at", "2020-04-22 04:12:56.479120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.489803"], ["updated_at", "2020-04-22 04:12:56.489803"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.492696"], ["updated_at", "2020-04-22 04:12:56.492696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.495245"], ["updated_at", "2020-04-22 04:12:56.495245"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.519218"], ["updated_at", "2020-04-22 04:12:56.519218"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.523792"], ["updated_at", "2020-04-22 04:12:56.523792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.526165"], ["updated_at", "2020-04-22 04:12:56.526165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.538579"], ["updated_at", "2020-04-22 04:12:56.538579"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.539344"], ["updated_at", "2020-04-22 04:12:56.539344"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.541088"], ["updated_at", "2020-04-22 04:12:56.541088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.541930"], ["updated_at", "2020-04-22 04:12:56.541930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.543158"], ["updated_at", "2020-04-22 04:12:56.543158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.545160"], ["updated_at", "2020-04-22 04:12:56.545160"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:12:56.554690"], ["updated_at", "2020-04-22 04:12:56.554690"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:12:56.557824"], ["updated_at", "2020-04-22 04:12:56.557824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:12:56.560710"], ["updated_at", "2020-04-22 04:12:56.560710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (2.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (22.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (18.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (1.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:13:04.750687', '2020-04-22 04:13:04.750687'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:13:04.750687', '2020-04-22 04:13:04.750687'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:13:04.754463', '2020-04-22 04:13:04.754463', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:13:04.754463', '2020-04-22 04:13:04.754463', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:13:04.760022', '2020-04-22 04:13:04.760022'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:13:04.760022', '2020-04-22 04:13:04.760022'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:13:04.765290', '2020-04-22 04:13:04.765290'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:13:04.765290', '2020-04-22 04:13:04.765290'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:13:04.767515', '2020-04-22 04:13:04.767515'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:13:04.767515', '2020-04-22 04:13:04.767515'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:13:04.769661', '2020-04-22 04:13:04.769661'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:13:04.769661', '2020-04-22 04:13:04.769661'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:13:04.771952', '2020-04-22 04:13:04.771952'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:13:04.771952', '2020-04-22 04:13:04.771952')

 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:13:04.764550', '2020-04-22 04:13:04.764550'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:13:04.764550', '2020-04-22 04:13:04.764550'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:13:04.768321', '2020-04-22 04:13:04.768321', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:13:04.768321', '2020-04-22 04:13:04.768321', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:13:04.770547', '2020-04-22 04:13:04.770547'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:13:04.770547', '2020-04-22 04:13:04.770547'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:13:04.773475', '2020-04-22 04:13:04.773475'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:13:04.773475', '2020-04-22 04:13:04.773475'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:13:04.776561', '2020-04-22 04:13:04.776561'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:13:04.776561', '2020-04-22 04:13:04.776561'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:13:04.778663', '2020-04-22 04:13:04.778663'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:13:04.778663', '2020-04-22 04:13:04.778663'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:13:04.781949', '2020-04-22 04:13:04.781949'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:13:04.781949', '2020-04-22 04:13:04.781949')

 (2.0ms)  commit transaction
 (8.9ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CourseTest: test_fails_validation_if_there_is_no_'title'_attribute CourseTest: test_belongs_to_:vault_association



 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:04.826678"], ["updated_at", "2020-04-22 04:13:04.826678"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:13:04.825146"], ["updated_at", "2020-04-22 04:13:04.825146"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.852438"], ["updated_at", "2020-04-22 04:13:04.852438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.856387"], ["updated_at", "2020-04-22 04:13:04.856387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.869968"], ["updated_at", "2020-04-22 04:13:04.869968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.871593"], ["updated_at", "2020-04-22 04:13:04.871593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:13:04.885425"], ["updated_at", "2020-04-22 04:13:04.885425"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.888721"], ["updated_at", "2020-04-22 04:13:04.888721"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.895824"], ["updated_at", "2020-04-22 04:13:04.895824"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:04.902464"], ["updated_at", "2020-04-22 04:13:04.902464"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.913410"], ["updated_at", "2020-04-22 04:13:04.913410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.915744"], ["updated_at", "2020-04-22 04:13:04.915744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:04.956139"], ["updated_at", "2020-04-22 04:13:04.956139"]]
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.958912"], ["updated_at", "2020-04-22 04:13:04.958912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.960757"], ["updated_at", "2020-04-22 04:13:04.960757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:04.966712"], ["updated_at", "2020-04-22 04:13:04.966712"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.969772"], ["updated_at", "2020-04-22 04:13:04.969772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:04.972756"], ["updated_at", "2020-04-22 04:13:04.972756"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.972376"], ["updated_at", "2020-04-22 04:13:04.972376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:04.979130"], ["updated_at", "2020-04-22 04:13:04.979130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:04.982583"], ["updated_at", "2020-04-22 04:13:04.982583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:04.996954"], ["updated_at", "2020-04-22 04:13:04.996954"]]

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:05.000021"], ["updated_at", "2020-04-22 04:13:05.000021"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.000369"], ["updated_at", "2020-04-22 04:13:05.000369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.001782"], ["updated_at", "2020-04-22 04:13:05.001782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.002083"], ["updated_at", "2020-04-22 04:13:05.002083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.003930"], ["updated_at", "2020-04-22 04:13:05.003930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:05.020805"], ["updated_at", "2020-04-22 04:13:05.020805"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.026541"], ["updated_at", "2020-04-22 04:13:05.026541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.028318"], ["updated_at", "2020-04-22 04:13:05.028318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:05.037921"], ["updated_at", "2020-04-22 04:13:05.037921"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.042255"], ["updated_at", "2020-04-22 04:13:05.042255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.045627"], ["updated_at", "2020-04-22 04:13:05.045627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:13:05.054307"], ["updated_at", "2020-04-22 04:13:05.054307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:05.058914"], ["updated_at", "2020-04-22 04:13:05.058914"]]
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.064195"], ["updated_at", "2020-04-22 04:13:05.064195"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.066424"], ["updated_at", "2020-04-22 04:13:05.066424"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:13:05.068452"], ["updated_at", "2020-04-22 04:13:05.068452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
 (1.9ms)  rollback transaction
 (1.0ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:13:05.097452"], ["updated_at", "2020-04-22 04:13:05.097452"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.100143"], ["updated_at", "2020-04-22 04:13:05.100143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.101862"], ["updated_at", "2020-04-22 04:13:05.101862"]]
 (0.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.5ms)  rollback transaction
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.110051"], ["updated_at", "2020-04-22 04:13:05.110051"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.112901"], ["updated_at", "2020-04-22 04:13:05.112901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:13:05.112429"], ["updated_at", "2020-04-22 04:13:05.112429"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.115346"], ["updated_at", "2020-04-22 04:13:05.115346"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.115551"], ["updated_at", "2020-04-22 04:13:05.115551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.119125"], ["updated_at", "2020-04-22 04:13:05.119125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:13:05.131886"], ["updated_at", "2020-04-22 04:13:05.131886"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.134683"], ["updated_at", "2020-04-22 04:13:05.134683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.136794"], ["updated_at", "2020-04-22 04:13:05.136794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:13:05.147756"], ["updated_at", "2020-04-22 04:13:05.147756"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.149999"], ["updated_at", "2020-04-22 04:13:05.149999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.152270"], ["updated_at", "2020-04-22 04:13:05.152270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:13:05.178937"], ["updated_at", "2020-04-22 04:13:05.178937"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.182083"], ["updated_at", "2020-04-22 04:13:05.182083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.183937"], ["updated_at", "2020-04-22 04:13:05.183937"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:13:05.185905"], ["updated_at", "2020-04-22 04:13:05.185905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.7ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:13:05.188781"], ["updated_at", "2020-04-22 04:13:05.188781"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.5ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:13:05.193095"], ["updated_at", "2020-04-22 04:13:05.193095"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.209164"], ["updated_at", "2020-04-22 04:13:05.209164"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.213570"], ["updated_at", "2020-04-22 04:13:05.213570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.214917"], ["updated_at", "2020-04-22 04:13:05.214917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:13:05.217789"], ["updated_at", "2020-04-22 04:13:05.217789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.1ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:13:05.261374"], ["updated_at", "2020-04-22 04:13:05.261374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:13:05.282154"], ["updated_at", "2020-04-22 04:13:05.282154"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: eaa945de-80af-4f3b-ad9d-976fe0cef3c2) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.406045"], ["updated_at", "2020-04-22 04:13:05.406045"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.410291"], ["updated_at", "2020-04-22 04:13:05.410291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.413366"], ["updated_at", "2020-04-22 04:13:05.413366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

ActiveJob
CourseRecommendationMailerJob
eaa945de-80af-4f3b-ad9d-976fe0cef3c2

Performing CourseRecommendationMailerJob (Job ID: eaa945de-80af-4f3b-ad9d-976fe0cef3c2) from Async(default) enqueued at 2020-04-22T04:13:05Z

ActiveJob
CourseRecommendationMailerJob
eaa945de-80af-4f3b-ad9d-976fe0cef3c2

Performed CourseRecommendationMailerJob (Job ID: eaa945de-80af-4f3b-ad9d-976fe0cef3c2) from Async(default) in 0.12ms

Rendering courses/index.html.erb within layouts/application
Course Load (0.3ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 3.0ms | Allocations: 655)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 69ms (Views: 58.5ms | ActiveRecord: 0.3ms | Allocations: 10786)

 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.492386"], ["updated_at", "2020-04-22 04:13:05.492386"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.496190"], ["updated_at", "2020-04-22 04:13:05.496190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.498556"], ["updated_at", "2020-04-22 04:13:05.498556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.516271"], ["updated_at", "2020-04-22 04:13:05.516271"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.518868"], ["updated_at", "2020-04-22 04:13:05.518868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.520701"], ["updated_at", "2020-04-22 04:13:05.520701"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.527687"], ["updated_at", "2020-04-22 04:13:05.527687"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.530442"], ["updated_at", "2020-04-22 04:13:05.530442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.531751"], ["updated_at", "2020-04-22 04:13:05.531751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.537135"], ["updated_at", "2020-04-22 04:13:05.537135"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.541104"], ["updated_at", "2020-04-22 04:13:05.541104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.543028"], ["updated_at", "2020-04-22 04:13:05.543028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.550106"], ["updated_at", "2020-04-22 04:13:05.550106"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.554325"], ["updated_at", "2020-04-22 04:13:05.554325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.556448"], ["updated_at", "2020-04-22 04:13:05.556448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.572527"], ["updated_at", "2020-04-22 04:13:05.572527"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.576497"], ["updated_at", "2020-04-22 04:13:05.576497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.578211"], ["updated_at", "2020-04-22 04:13:05.578211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.0ms | Allocations: 155)

Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 2297)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:13:05.597840"], ["updated_at", "2020-04-22 04:13:05.597840"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:13:05.600618"], ["updated_at", "2020-04-22 04:13:05.600618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:13:05.602082"], ["updated_at", "2020-04-22 04:13:05.602082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.0ms | Allocations: 5)

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 679)

 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.2ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (18.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (19.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:25:52.525837', '2020-04-22 04:25:52.525837'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:25:52.525837', '2020-04-22 04:25:52.525837'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:25:52.530019', '2020-04-22 04:25:52.530019', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:25:52.530019', '2020-04-22 04:25:52.530019', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:25:52.531613', '2020-04-22 04:25:52.531613'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:25:52.531613', '2020-04-22 04:25:52.531613'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:25:52.533193', '2020-04-22 04:25:52.533193'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:25:52.533193', '2020-04-22 04:25:52.533193'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:25:52.535374', '2020-04-22 04:25:52.535374'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:25:52.535374', '2020-04-22 04:25:52.535374'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:25:52.536959', '2020-04-22 04:25:52.536959'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:25:52.536959', '2020-04-22 04:25:52.536959'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:25:52.538639', '2020-04-22 04:25:52.538639'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:25:52.538639', '2020-04-22 04:25:52.538639')

Fixtures Load (1.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:25:52.525834', '2020-04-22 04:25:52.525834'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:25:52.525834', '2020-04-22 04:25:52.525834'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:25:52.530000', '2020-04-22 04:25:52.530000', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:25:52.530000', '2020-04-22 04:25:52.530000', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:25:52.531605', '2020-04-22 04:25:52.531605'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:25:52.531605', '2020-04-22 04:25:52.531605'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:25:52.533943', '2020-04-22 04:25:52.533943'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:25:52.533943', '2020-04-22 04:25:52.533943'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:25:52.536436', '2020-04-22 04:25:52.536436'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:25:52.536436', '2020-04-22 04:25:52.536436'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:25:52.538122', '2020-04-22 04:25:52.538122'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:25:52.538122', '2020-04-22 04:25:52.538122'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:25:52.539369', '2020-04-22 04:25:52.539369'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:25:52.539369', '2020-04-22 04:25:52.539369')

 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (1.3ms)  commit transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys = 1

CommentTest: test_comment_created_success


 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.558458"], ["updated_at", "2020-04-22 04:25:52.558458"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.558574"], ["updated_at", "2020-04-22 04:25:52.558574"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.574166"], ["updated_at", "2020-04-22 04:25:52.574166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.574161"], ["updated_at", "2020-04-22 04:25:52.574161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.585575"], ["updated_at", "2020-04-22 04:25:52.585575"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.585579"], ["updated_at", "2020-04-22 04:25:52.585579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_comments_on_course_via_proxy


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.614706"], ["updated_at", "2020-04-22 04:25:52.614706"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.616859"], ["updated_at", "2020-04-22 04:25:52.616859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.618784"], ["updated_at", "2020-04-22 04:25:52.618784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.618899"], ["updated_at", "2020-04-22 04:25:52.618899"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.622070"], ["updated_at", "2020-04-22 04:25:52.622070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.624041"], ["updated_at", "2020-04-22 04:25:52.624041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.630737"], ["updated_at", "2020-04-22 04:25:52.630737"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.632967"], ["updated_at", "2020-04-22 04:25:52.632967"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.633398"], ["updated_at", "2020-04-22 04:25:52.633398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.639425"], ["updated_at", "2020-04-22 04:25:52.639425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.639562"], ["updated_at", "2020-04-22 04:25:52.639562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.640828"], ["updated_at", "2020-04-22 04:25:52.640828"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:25:52.649488"], ["updated_at", "2020-04-22 04:25:52.649488"]]
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:25:52.655684"], ["updated_at", "2020-04-22 04:25:52.655684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:25:52.657693"], ["updated_at", "2020-04-22 04:25:52.657693"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (14.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (14.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:26:38.361194', '2020-04-22 04:26:38.361194'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:26:38.361194', '2020-04-22 04:26:38.361194'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:26:38.365075', '2020-04-22 04:26:38.365075', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:26:38.365075', '2020-04-22 04:26:38.365075', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:26:38.367090', '2020-04-22 04:26:38.367090'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:38.367090', '2020-04-22 04:26:38.367090'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:38.369574', '2020-04-22 04:26:38.369574'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:38.369574', '2020-04-22 04:26:38.369574'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:26:38.371767', '2020-04-22 04:26:38.371767'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:26:38.371767', '2020-04-22 04:26:38.371767'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:26:38.373457', '2020-04-22 04:26:38.373457'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:26:38.373457', '2020-04-22 04:26:38.373457'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:26:38.376571', '2020-04-22 04:26:38.376571'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:38.376571', '2020-04-22 04:26:38.376571')

 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (1.2ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:26:38.361194', '2020-04-22 04:26:38.361194'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:26:38.361194', '2020-04-22 04:26:38.361194'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:26:38.365603', '2020-04-22 04:26:38.365603', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:26:38.365603', '2020-04-22 04:26:38.365603', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:26:38.367437', '2020-04-22 04:26:38.367437'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:38.367437', '2020-04-22 04:26:38.367437'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:38.369141', '2020-04-22 04:26:38.369141'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:38.369141', '2020-04-22 04:26:38.369141'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:26:38.370912', '2020-04-22 04:26:38.370912'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:26:38.370912', '2020-04-22 04:26:38.370912'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:26:38.374247', '2020-04-22 04:26:38.374247'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:26:38.374247', '2020-04-22 04:26:38.374247'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:26:38.377116', '2020-04-22 04:26:38.377116'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:38.377116', '2020-04-22 04:26:38.377116')


BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (1.3ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.403163"], ["updated_at", "2020-04-22 04:26:38.403163"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.421973"], ["updated_at", "2020-04-22 04:26:38.421973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.432941"], ["updated_at", "2020-04-22 04:26:38.432941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.444354"], ["updated_at", "2020-04-22 04:26:38.444354"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.447220"], ["updated_at", "2020-04-22 04:26:38.447220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.449256"], ["updated_at", "2020-04-22 04:26:38.449256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.472324"], ["updated_at", "2020-04-22 04:26:38.472324"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.475636"], ["updated_at", "2020-04-22 04:26:38.475636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.477915"], ["updated_at", "2020-04-22 04:26:38.477915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:38.498175"], ["updated_at", "2020-04-22 04:26:38.498175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:38.540537"], ["updated_at", "2020-04-22 04:26:38.540537"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.546863"], ["updated_at", "2020-04-22 04:26:38.546863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.548333"], ["updated_at", "2020-04-22 04:26:38.548333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:38.550734"], ["updated_at", "2020-04-22 04:26:38.550734"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:26:38.554410"], ["updated_at", "2020-04-22 04:26:38.554410"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:26:38.556256"], ["updated_at", "2020-04-22 04:26:38.556256"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.560259"], ["updated_at", "2020-04-22 04:26:38.560259"]]

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.579449"], ["updated_at", "2020-04-22 04:26:38.579449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.593325"], ["updated_at", "2020-04-22 04:26:38.593325"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:38.594400"], ["updated_at", "2020-04-22 04:26:38.594400"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.597572"], ["updated_at", "2020-04-22 04:26:38.597572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.599652"], ["updated_at", "2020-04-22 04:26:38.599652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction

Processing by CoursesController#index as HTML

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.7ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:26:38.626906"], ["updated_at", "2020-04-22 04:26:38.626906"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.630539"], ["updated_at", "2020-04-22 04:26:38.630539"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.632262"], ["updated_at", "2020-04-22 04:26:38.632262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


Rendering courses/index.html.erb within layouts/application
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses"
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:38.643506"], ["updated_at", "2020-04-22 04:26:38.643506"]]
Rendered courses/index.html.erb within layouts/application (Duration: 3.9ms | Allocations: 683)
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.645849"], ["updated_at", "2020-04-22 04:26:38.645849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.647260"], ["updated_at", "2020-04-22 04:26:38.647260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:38.648949"], ["updated_at", "2020-04-22 04:26:38.648949"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:38.652719"], ["updated_at", "2020-04-22 04:26:38.652719"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.654514"], ["updated_at", "2020-04-22 04:26:38.654514"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.656059"], ["updated_at", "2020-04-22 04:26:38.656059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:26:38.659369"], ["updated_at", "2020-04-22 04:26:38.659369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:38.677076"], ["updated_at", "2020-04-22 04:26:38.677076"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.679907"], ["updated_at", "2020-04-22 04:26:38.679907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.682361"], ["updated_at", "2020-04-22 04:26:38.682361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 87ms (Views: 67.3ms | ActiveRecord: 0.3ms | Allocations: 11299)

 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:38.723957"], ["updated_at", "2020-04-22 04:26:38.723957"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.728444"], ["updated_at", "2020-04-22 04:26:38.728444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.730916"], ["updated_at", "2020-04-22 04:26:38.730916"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:38.736975"], ["updated_at", "2020-04-22 04:26:38.736975"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.738606"], ["updated_at", "2020-04-22 04:26:38.738606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.740138"], ["updated_at", "2020-04-22 04:26:38.740138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:26:38.761649"], ["updated_at", "2020-04-22 04:26:38.761649"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.764122"], ["updated_at", "2020-04-22 04:26:38.764122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.766785"], ["updated_at", "2020-04-22 04:26:38.766785"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:26:38.815832"], ["updated_at", "2020-04-22 04:26:38.815832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 1cdd4bc0-398b-4814-b93c-6b6f6f883477) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:26:38.846026"], ["updated_at", "2020-04-22 04:26:38.846026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.852540"], ["updated_at", "2020-04-22 04:26:38.852540"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.855208"], ["updated_at", "2020-04-22 04:26:38.855208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.856925"], ["updated_at", "2020-04-22 04:26:38.856925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.866309"], ["updated_at", "2020-04-22 04:26:38.866309"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.870904"], ["updated_at", "2020-04-22 04:26:38.870904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.872482"], ["updated_at", "2020-04-22 04:26:38.872482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.879348"], ["updated_at", "2020-04-22 04:26:38.879348"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.881323"], ["updated_at", "2020-04-22 04:26:38.881323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.882677"], ["updated_at", "2020-04-22 04:26:38.882677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.891717"], ["updated_at", "2020-04-22 04:26:38.891717"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.893758"], ["updated_at", "2020-04-22 04:26:38.893758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.895401"], ["updated_at", "2020-04-22 04:26:38.895401"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.903760"], ["updated_at", "2020-04-22 04:26:38.903760"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.905792"], ["updated_at", "2020-04-22 04:26:38.905792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.907355"], ["updated_at", "2020-04-22 04:26:38.907355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


ActiveJob
CourseRecommendationMailerJob
1cdd4bc0-398b-4814-b93c-6b6f6f883477

Performing CourseRecommendationMailerJob (Job ID: 1cdd4bc0-398b-4814-b93c-6b6f6f883477) from Async(default) enqueued at 2020-04-22T04:26:38Z

ActiveJob
CourseRecommendationMailerJob
1cdd4bc0-398b-4814-b93c-6b6f6f883477

Performed CourseRecommendationMailerJob (Job ID: 1cdd4bc0-398b-4814-b93c-6b6f6f883477) from Async(default) in 0.12ms

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.920069"], ["updated_at", "2020-04-22 04:26:38.920069"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.923118"], ["updated_at", "2020-04-22 04:26:38.923118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.926130"], ["updated_at", "2020-04-22 04:26:38.926130"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.6ms | Allocations: 149)

Completed 200 OK in 9ms (Views: 6.2ms | ActiveRecord: 0.3ms | Allocations: 2312)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:38.947014"], ["updated_at", "2020-04-22 04:26:38.947014"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.949022"], ["updated_at", "2020-04-22 04:26:38.949022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.953399"], ["updated_at", "2020-04-22 04:26:38.953399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (1.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 8)

Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 1.4ms | Allocations: 673)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:38.962954"], ["updated_at", "2020-04-22 04:26:38.962954"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:38.964697"], ["updated_at", "2020-04-22 04:26:38.964697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:38.996706"], ["updated_at", "2020-04-22 04:26:38.996706"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.021241"], ["updated_at", "2020-04-22 04:26:39.021241"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.025262"], ["updated_at", "2020-04-22 04:26:39.025262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.026564"], ["updated_at", "2020-04-22 04:26:39.026564"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.042676"], ["updated_at", "2020-04-22 04:26:39.042676"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.044621"], ["updated_at", "2020-04-22 04:26:39.044621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.045958"], ["updated_at", "2020-04-22 04:26:39.045958"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.052027"], ["updated_at", "2020-04-22 04:26:39.052027"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.053690"], ["updated_at", "2020-04-22 04:26:39.053690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.054758"], ["updated_at", "2020-04-22 04:26:39.054758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.061738"], ["updated_at", "2020-04-22 04:26:39.061738"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.063675"], ["updated_at", "2020-04-22 04:26:39.063675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.065076"], ["updated_at", "2020-04-22 04:26:39.065076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.072720"], ["updated_at", "2020-04-22 04:26:39.072720"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.075097"], ["updated_at", "2020-04-22 04:26:39.075097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.076264"], ["updated_at", "2020-04-22 04:26:39.076264"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:39.085352"], ["updated_at", "2020-04-22 04:26:39.085352"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:39.087484"], ["updated_at", "2020-04-22 04:26:39.087484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:39.089007"], ["updated_at", "2020-04-22 04:26:39.089007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.7ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT sqlite_version(*)
 (3.8ms)  SELECT sqlite_version(*)
 (1.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.6ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (25.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (25.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:26:58.786096', '2020-04-22 04:26:58.786096'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:26:58.786096', '2020-04-22 04:26:58.786096'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:26:58.791032', '2020-04-22 04:26:58.791032', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:26:58.791032', '2020-04-22 04:26:58.791032', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:26:58.794039', '2020-04-22 04:26:58.794039'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:58.794039', '2020-04-22 04:26:58.794039'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:58.795859', '2020-04-22 04:26:58.795859'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:58.795859', '2020-04-22 04:26:58.795859'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:26:58.797128', '2020-04-22 04:26:58.797128'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:26:58.797128', '2020-04-22 04:26:58.797128'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:26:58.798380', '2020-04-22 04:26:58.798380'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:26:58.798380', '2020-04-22 04:26:58.798380'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:26:58.799579', '2020-04-22 04:26:58.799579'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:58.799579', '2020-04-22 04:26:58.799579')

Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:26:58.786096', '2020-04-22 04:26:58.786096'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:26:58.786096', '2020-04-22 04:26:58.786096'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:26:58.791021', '2020-04-22 04:26:58.791021', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:26:58.791021', '2020-04-22 04:26:58.791021', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:26:58.794328', '2020-04-22 04:26:58.794328'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:58.794328', '2020-04-22 04:26:58.794328'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:58.795909', '2020-04-22 04:26:58.795909'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:26:58.795909', '2020-04-22 04:26:58.795909'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:26:58.797168', '2020-04-22 04:26:58.797168'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:26:58.797168', '2020-04-22 04:26:58.797168'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:26:58.798331', '2020-04-22 04:26:58.798331'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:26:58.798331', '2020-04-22 04:26:58.798331'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:26:58.799455', '2020-04-22 04:26:58.799455'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:26:58.799455', '2020-04-22 04:26:58.799455')

 (1.2ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (1.7ms)  commit transaction
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association



CourseTest: test_has_one_:bucket_association


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:26:58.831187"], ["updated_at", "2020-04-22 04:26:58.831187"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.856745"], ["updated_at", "2020-04-22 04:26:58.856745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.856793"], ["updated_at", "2020-04-22 04:26:58.856793"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.873009"], ["updated_at", "2020-04-22 04:26:58.873009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.878624"], ["updated_at", "2020-04-22 04:26:58.878624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.890003"], ["updated_at", "2020-04-22 04:26:58.890003"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.893133"], ["updated_at", "2020-04-22 04:26:58.893133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.893456"], ["updated_at", "2020-04-22 04:26:58.893456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.895660"], ["updated_at", "2020-04-22 04:26:58.895660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.909050"], ["updated_at", "2020-04-22 04:26:58.909050"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.909142"], ["updated_at", "2020-04-22 04:26:58.909142"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.911873"], ["updated_at", "2020-04-22 04:26:58.911873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.911983"], ["updated_at", "2020-04-22 04:26:58.911983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.914013"], ["updated_at", "2020-04-22 04:26:58.914013"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.913752"], ["updated_at", "2020-04-22 04:26:58.913752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.7ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.921633"], ["updated_at", "2020-04-22 04:26:58.921633"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:58.922656"], ["updated_at", "2020-04-22 04:26:58.922656"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.924414"], ["updated_at", "2020-04-22 04:26:58.924414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.925147"], ["updated_at", "2020-04-22 04:26:58.925147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.927092"], ["updated_at", "2020-04-22 04:26:58.927092"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.927631"], ["updated_at", "2020-04-22 04:26:58.927631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:58.940406"], ["updated_at", "2020-04-22 04:26:58.940406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:58.948864"], ["updated_at", "2020-04-22 04:26:58.948864"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.951899"], ["updated_at", "2020-04-22 04:26:58.951899"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.953821"], ["updated_at", "2020-04-22 04:26:58.953821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:58.963696"], ["updated_at", "2020-04-22 04:26:58.963696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:26:58.966161"], ["updated_at", "2020-04-22 04:26:58.966161"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:26:58.968095"], ["updated_at", "2020-04-22 04:26:58.968095"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:58.986269"], ["updated_at", "2020-04-22 04:26:58.986269"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:58.989139"], ["updated_at", "2020-04-22 04:26:58.989139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:58.992680"], ["updated_at", "2020-04-22 04:26:58.992680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:59.006251"], ["updated_at", "2020-04-22 04:26:59.006251"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.011663"], ["updated_at", "2020-04-22 04:26:59.011663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.014133"], ["updated_at", "2020-04-22 04:26:59.014133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:59.033892"], ["updated_at", "2020-04-22 04:26:59.033892"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.035825"], ["updated_at", "2020-04-22 04:26:59.035825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.037025"], ["updated_at", "2020-04-22 04:26:59.037025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.044739"], ["updated_at", "2020-04-22 04:26:59.044739"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.046886"], ["updated_at", "2020-04-22 04:26:59.046886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.048451"], ["updated_at", "2020-04-22 04:26:59.048451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.075494"], ["updated_at", "2020-04-22 04:26:59.075494"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.079934"], ["updated_at", "2020-04-22 04:26:59.079934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.082699"], ["updated_at", "2020-04-22 04:26:59.082699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.094710"], ["updated_at", "2020-04-22 04:26:59.094710"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.096683"], ["updated_at", "2020-04-22 04:26:59.096683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.098277"], ["updated_at", "2020-04-22 04:26:59.098277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.108813"], ["updated_at", "2020-04-22 04:26:59.108813"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.111027"], ["updated_at", "2020-04-22 04:26:59.111027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.112711"], ["updated_at", "2020-04-22 04:26:59.112711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.120897"], ["updated_at", "2020-04-22 04:26:59.120897"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.122736"], ["updated_at", "2020-04-22 04:26:59.122736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.124258"], ["updated_at", "2020-04-22 04:26:59.124258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.132924"], ["updated_at", "2020-04-22 04:26:59.132924"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.135095"], ["updated_at", "2020-04-22 04:26:59.135095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.136461"], ["updated_at", "2020-04-22 04:26:59.136461"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.143542"], ["updated_at", "2020-04-22 04:26:59.143542"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.145317"], ["updated_at", "2020-04-22 04:26:59.145317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.146868"], ["updated_at", "2020-04-22 04:26:59.146868"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:59.154934"], ["updated_at", "2020-04-22 04:26:59.154934"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.157645"], ["updated_at", "2020-04-22 04:26:59.157645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.161554"], ["updated_at", "2020-04-22 04:26:59.161554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:59.194717"], ["updated_at", "2020-04-22 04:26:59.194717"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.197259"], ["updated_at", "2020-04-22 04:26:59.197259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.198557"], ["updated_at", "2020-04-22 04:26:59.198557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:59.302587"], ["updated_at", "2020-04-22 04:26:59.302587"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.309577"], ["updated_at", "2020-04-22 04:26:59.309577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.311832"], ["updated_at", "2020-04-22 04:26:59.311832"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.5ms | Allocations: 441)

Completed 200 OK in 32ms (Views: 15.2ms | ActiveRecord: 0.6ms | Allocations: 5261)

 (8.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:59.361134"], ["updated_at", "2020-04-22 04:26:59.361134"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.363334"], ["updated_at", "2020-04-22 04:26:59.363334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.364813"], ["updated_at", "2020-04-22 04:26:59.364813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 9)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 674)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.2ms)  SAVEPOINT active_record_1
Vault Create (0.4ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:26:59.381714"], ["updated_at", "2020-04-22 04:26:59.381714"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.383947"], ["updated_at", "2020-04-22 04:26:59.383947"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.385802"], ["updated_at", "2020-04-22 04:26:59.385802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:26:59.418491"], ["updated_at", "2020-04-22 04:26:59.418491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.7ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:26:59.433099"], ["updated_at", "2020-04-22 04:26:59.433099"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: b3bec70b-29d0-497d-bf37-859bfd8859f0) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.9ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:26:59.482413"], ["updated_at", "2020-04-22 04:26:59.482413"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.484000"], ["updated_at", "2020-04-22 04:26:59.484000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.486207"], ["updated_at", "2020-04-22 04:26:59.486207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
b3bec70b-29d0-497d-bf37-859bfd8859f0

Performing CourseRecommendationMailerJob (Job ID: b3bec70b-29d0-497d-bf37-859bfd8859f0) from Async(default) enqueued at 2020-04-22T04:26:59Z

ActiveJob
CourseRecommendationMailerJob
b3bec70b-29d0-497d-bf37-859bfd8859f0

Performed CourseRecommendationMailerJob (Job ID: b3bec70b-29d0-497d-bf37-859bfd8859f0) from Async(default) in 0.18ms

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:26:59.502690"], ["updated_at", "2020-04-22 04:26:59.502690"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.505001"], ["updated_at", "2020-04-22 04:26:59.505001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.530741"], ["updated_at", "2020-04-22 04:26:59.530741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.1ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 364)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.1ms | Allocations: 8330)

 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.600309"], ["updated_at", "2020-04-22 04:26:59.600309"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.605280"], ["updated_at", "2020-04-22 04:26:59.605280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.606883"], ["updated_at", "2020-04-22 04:26:59.606883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:26:59.608766"], ["updated_at", "2020-04-22 04:26:59.608766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:26:59.613104"], ["updated_at", "2020-04-22 04:26:59.613104"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:26:59.615884"], ["updated_at", "2020-04-22 04:26:59.615884"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:26:59.618172"], ["updated_at", "2020-04-22 04:26:59.618172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:26:59.622703"], ["updated_at", "2020-04-22 04:26:59.622703"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (5.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.9ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (20.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.7ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (23.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:27:17.554167', '2020-04-22 04:27:17.554167'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:27:17.554167', '2020-04-22 04:27:17.554167'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:27:17.558221', '2020-04-22 04:27:17.558221', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:27:17.558221', '2020-04-22 04:27:17.558221', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:27:17.559409', '2020-04-22 04:27:17.559409'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:27:17.559409', '2020-04-22 04:27:17.559409'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:27:17.560933', '2020-04-22 04:27:17.560933'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:27:17.560933', '2020-04-22 04:27:17.560933'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:27:17.562219', '2020-04-22 04:27:17.562219'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:27:17.562219', '2020-04-22 04:27:17.562219'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:27:17.563751', '2020-04-22 04:27:17.563751'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:27:17.563751', '2020-04-22 04:27:17.563751'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:27:17.565432', '2020-04-22 04:27:17.565432'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:27:17.565432', '2020-04-22 04:27:17.565432')

Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 04:27:17.554246', '2020-04-22 04:27:17.554246'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 04:27:17.554246', '2020-04-22 04:27:17.554246'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 04:27:17.558204', '2020-04-22 04:27:17.558204', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 04:27:17.558204', '2020-04-22 04:27:17.558204', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 04:27:17.559414', '2020-04-22 04:27:17.559414'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:27:17.559414', '2020-04-22 04:27:17.559414'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:27:17.560896', '2020-04-22 04:27:17.560896'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 04:27:17.560896', '2020-04-22 04:27:17.560896'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 04:27:17.562164', '2020-04-22 04:27:17.562164'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 04:27:17.562164', '2020-04-22 04:27:17.562164'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 04:27:17.563706', '2020-04-22 04:27:17.563706'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 04:27:17.563706', '2020-04-22 04:27:17.563706'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 04:27:17.565483', '2020-04-22 04:27:17.565483'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 04:27:17.565483', '2020-04-22 04:27:17.565483')

 (1.6ms)  commit transaction
 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job



CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:27:17.628011"], ["updated_at", "2020-04-22 04:27:17.628011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 04:27:17.631735"], ["updated_at", "2020-04-22 04:27:17.631735"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 62cbadce-6374-41b2-9c14-ed50960f7499) to Async(default)

ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.649332"], ["updated_at", "2020-04-22 04:27:17.649332"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:17.652940"], ["updated_at", "2020-04-22 04:27:17.652940"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.657909"], ["updated_at", "2020-04-22 04:27:17.657909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.660486"], ["updated_at", "2020-04-22 04:27:17.660486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.668240"], ["updated_at", "2020-04-22 04:27:17.668240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.670737"], ["updated_at", "2020-04-22 04:27:17.670737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:27:17.678213"], ["updated_at", "2020-04-22 04:27:17.678213"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:27:17.680210"], ["updated_at", "2020-04-22 04:27:17.680210"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 04:27:17.682182"], ["updated_at", "2020-04-22 04:27:17.682182"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:27:17.686939"], ["updated_at", "2020-04-22 04:27:17.686939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.717903"], ["updated_at", "2020-04-22 04:27:17.717903"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.722748"], ["updated_at", "2020-04-22 04:27:17.722748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.727012"], ["updated_at", "2020-04-22 04:27:17.727012"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
CACHE Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.747163"], ["updated_at", "2020-04-22 04:27:17.747163"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.749635"], ["updated_at", "2020-04-22 04:27:17.749635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.752118"], ["updated_at", "2020-04-22 04:27:17.752118"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.849156"], ["updated_at", "2020-04-22 04:27:17.849156"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.851760"], ["updated_at", "2020-04-22 04:27:17.851760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.851440"], ["updated_at", "2020-04-22 04:27:17.851440"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.854642"], ["updated_at", "2020-04-22 04:27:17.854642"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.855244"], ["updated_at", "2020-04-22 04:27:17.855244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.857192"], ["updated_at", "2020-04-22 04:27:17.857192"]]
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  RELEASE SAVEPOINT active_record_1
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')

Processing by CoursesController#index as HTML

 (8.4ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.874217"], ["updated_at", "2020-04-22 04:27:17.874217"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.877341"], ["updated_at", "2020-04-22 04:27:17.877341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.879541"], ["updated_at", "2020-04-22 04:27:17.879541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Rendering courses/index.html.erb within layouts/application
 (0.9ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 4.5ms | Allocations: 671)
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.898014"], ["updated_at", "2020-04-22 04:27:17.898014"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.901409"], ["updated_at", "2020-04-22 04:27:17.901409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.903619"], ["updated_at", "2020-04-22 04:27:17.903619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.918144"], ["updated_at", "2020-04-22 04:27:17.918144"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.920863"], ["updated_at", "2020-04-22 04:27:17.920863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.922466"], ["updated_at", "2020-04-22 04:27:17.922466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 66ms (Views: 54.7ms | ActiveRecord: 0.2ms | Allocations: 11326)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association



RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:17.938313"], ["updated_at", "2020-04-22 04:27:17.938313"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.942138"], ["updated_at", "2020-04-22 04:27:17.942138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.6ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 04:27:17.942982"], ["updated_at", "2020-04-22 04:27:17.942982"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.944517"], ["updated_at", "2020-04-22 04:27:17.944517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.946428"], ["updated_at", "2020-04-22 04:27:17.946428"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
CACHE Recording Load (0.0ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.948806"], ["updated_at", "2020-04-22 04:27:17.948806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (6.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.4ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:27:17.973534"], ["updated_at", "2020-04-22 04:27:17.973534"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.976265"], ["updated_at", "2020-04-22 04:27:17.976265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.978413"], ["updated_at", "2020-04-22 04:27:17.978413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
ActiveJob
CourseRecommendationMailerJob
62cbadce-6374-41b2-9c14-ed50960f7499

Performing CourseRecommendationMailerJob (Job ID: 62cbadce-6374-41b2-9c14-ed50960f7499) from Async(default) enqueued at 2020-04-22T04:27:17Z

ActiveJob
CourseRecommendationMailerJob
62cbadce-6374-41b2-9c14-ed50960f7499

Performed CourseRecommendationMailerJob (Job ID: 62cbadce-6374-41b2-9c14-ed50960f7499) from Async(default) in 0.15ms

 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:27:17.983594"], ["updated_at", "2020-04-22 04:27:17.983594"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.986834"], ["updated_at", "2020-04-22 04:27:17.986834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:17.989025"], ["updated_at", "2020-04-22 04:27:17.989025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:27:17.997513"], ["updated_at", "2020-04-22 04:27:17.997513"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:17.999829"], ["updated_at", "2020-04-22 04:27:17.999829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.001786"], ["updated_at", "2020-04-22 04:27:18.001786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 04:27:18.010195"], ["updated_at", "2020-04-22 04:27:18.010195"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.013403"], ["updated_at", "2020-04-22 04:27:18.013403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.015060"], ["updated_at", "2020-04-22 04:27:18.015060"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 04:27:18.028781"], ["updated_at", "2020-04-22 04:27:18.028781"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.031372"], ["updated_at", "2020-04-22 04:27:18.031372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.033158"], ["updated_at", "2020-04-22 04:27:18.033158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.052175"], ["updated_at", "2020-04-22 04:27:18.052175"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.056489"], ["updated_at", "2020-04-22 04:27:18.056489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.057906"], ["updated_at", "2020-04-22 04:27:18.057906"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.073902"], ["updated_at", "2020-04-22 04:27:18.073902"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.076797"], ["updated_at", "2020-04-22 04:27:18.076797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.078599"], ["updated_at", "2020-04-22 04:27:18.078599"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.094234"], ["updated_at", "2020-04-22 04:27:18.094234"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.097721"], ["updated_at", "2020-04-22 04:27:18.097721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.100545"], ["updated_at", "2020-04-22 04:27:18.100545"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.112730"], ["updated_at", "2020-04-22 04:27:18.112730"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.116615"], ["updated_at", "2020-04-22 04:27:18.116615"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.120301"], ["updated_at", "2020-04-22 04:27:18.120301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.139254"], ["updated_at", "2020-04-22 04:27:18.139254"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.144032"], ["updated_at", "2020-04-22 04:27:18.144032"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.146268"], ["updated_at", "2020-04-22 04:27:18.146268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (1.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.172239"], ["updated_at", "2020-04-22 04:27:18.172239"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.177026"], ["updated_at", "2020-04-22 04:27:18.177026"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.224518"], ["updated_at", "2020-04-22 04:27:18.224518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.245427"], ["updated_at", "2020-04-22 04:27:18.245427"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.249145"], ["updated_at", "2020-04-22 04:27:18.249145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.251327"], ["updated_at", "2020-04-22 04:27:18.251327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.3ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:18.275414"], ["updated_at", "2020-04-22 04:27:18.275414"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.278391"], ["updated_at", "2020-04-22 04:27:18.278391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.280580"], ["updated_at", "2020-04-22 04:27:18.280580"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.5ms | Allocations: 151)

Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms | Allocations: 2316)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 04:27:18.293319"], ["updated_at", "2020-04-22 04:27:18.293319"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.295307"], ["updated_at", "2020-04-22 04:27:18.295307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.296488"], ["updated_at", "2020-04-22 04:27:18.296488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 8)

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 674)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.317764"], ["updated_at", "2020-04-22 04:27:18.317764"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.320115"], ["updated_at", "2020-04-22 04:27:18.320115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.321955"], ["updated_at", "2020-04-22 04:27:18.321955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 04:27:18.323645"], ["updated_at", "2020-04-22 04:27:18.323645"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 04:27:18.326311"], ["updated_at", "2020-04-22 04:27:18.326311"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 04:27:18.333674"], ["updated_at", "2020-04-22 04:27:18.333674"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 04:27:18.338136"], ["updated_at", "2020-04-22 04:27:18.338136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 04:27:18.340576"], ["updated_at", "2020-04-22 04:27:18.340576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  rollback transaction
 (2.1ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (21.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:30:15.711591', '2020-04-22 05:30:15.711591'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:30:15.711591', '2020-04-22 05:30:15.711591'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:30:15.716306', '2020-04-22 05:30:15.716306', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:30:15.716306', '2020-04-22 05:30:15.716306', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:30:15.718714', '2020-04-22 05:30:15.718714'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:15.718714', '2020-04-22 05:30:15.718714'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:15.720698', '2020-04-22 05:30:15.720698'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:15.720698', '2020-04-22 05:30:15.720698'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:30:15.722052', '2020-04-22 05:30:15.722052'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:30:15.722052', '2020-04-22 05:30:15.722052'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:30:15.723151', '2020-04-22 05:30:15.723151'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:30:15.723151', '2020-04-22 05:30:15.723151'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:30:15.725129', '2020-04-22 05:30:15.725129'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:15.725129', '2020-04-22 05:30:15.725129')

Fixtures Load (1.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:30:15.711609', '2020-04-22 05:30:15.711609'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:30:15.711609', '2020-04-22 05:30:15.711609'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:30:15.715938', '2020-04-22 05:30:15.715938', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:30:15.715938', '2020-04-22 05:30:15.715938', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:30:15.718714', '2020-04-22 05:30:15.718714'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:15.718714', '2020-04-22 05:30:15.718714'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:15.720913', '2020-04-22 05:30:15.720913'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:15.720913', '2020-04-22 05:30:15.720913'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:30:15.722195', '2020-04-22 05:30:15.722195'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:30:15.722195', '2020-04-22 05:30:15.722195'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:30:15.723642', '2020-04-22 05:30:15.723642'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:30:15.723642', '2020-04-22 05:30:15.723642'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:30:15.725398', '2020-04-22 05:30:15.725398'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:15.725398', '2020-04-22 05:30:15.725398')

 (1.2ms)  commit transaction
 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute



LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:15.787683"], ["updated_at", "2020-04-22 05:30:15.787683"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.806469"], ["updated_at", "2020-04-22 05:30:15.806469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.805167"], ["updated_at", "2020-04-22 05:30:15.805167"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.816904"], ["updated_at", "2020-04-22 05:30:15.816904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.818823"], ["updated_at", "2020-04-22 05:30:15.818823"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:15.824655"], ["updated_at", "2020-04-22 05:30:15.824655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.827002"], ["updated_at", "2020-04-22 05:30:15.827002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:30:15.828631"], ["updated_at", "2020-04-22 05:30:15.828631"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:30:15.830594"], ["updated_at", "2020-04-22 05:30:15.830594"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.836264"], ["updated_at", "2020-04-22 05:30:15.836264"]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:15.837440"], ["updated_at", "2020-04-22 05:30:15.837440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.839373"], ["updated_at", "2020-04-22 05:30:15.839373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.840916"], ["updated_at", "2020-04-22 05:30:15.840916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.854432"], ["updated_at", "2020-04-22 05:30:15.854432"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.854182"], ["updated_at", "2020-04-22 05:30:15.854182"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.856237"], ["updated_at", "2020-04-22 05:30:15.856237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.856285"], ["updated_at", "2020-04-22 05:30:15.856285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.857501"], ["updated_at", "2020-04-22 05:30:15.857501"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.857664"], ["updated_at", "2020-04-22 05:30:15.857664"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.4ms)  rollback transaction
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.0ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.866527"], ["updated_at", "2020-04-22 05:30:15.866527"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.867090"], ["updated_at", "2020-04-22 05:30:15.867090"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.869086"], ["updated_at", "2020-04-22 05:30:15.869086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.868812"], ["updated_at", "2020-04-22 05:30:15.868812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.870397"], ["updated_at", "2020-04-22 05:30:15.870397"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.870577"], ["updated_at", "2020-04-22 05:30:15.870577"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:15.876143"], ["updated_at", "2020-04-22 05:30:15.876143"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:15.880035"], ["updated_at", "2020-04-22 05:30:15.880035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:15.881389"], ["updated_at", "2020-04-22 05:30:15.881389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:16.018015"], ["updated_at", "2020-04-22 05:30:16.018015"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.020213"], ["updated_at", "2020-04-22 05:30:16.020213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.022639"], ["updated_at", "2020-04-22 05:30:16.022639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:16.025867"], ["updated_at", "2020-04-22 05:30:16.025867"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.029174"], ["updated_at", "2020-04-22 05:30:16.029174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Processing by CoursesController#index as HTML

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.031235"], ["updated_at", "2020-04-22 05:30:16.031235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering courses/index.html.erb within layouts/application
Course Load (0.3ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 6.6ms | Allocations: 656)
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.3ms | Allocations: 442)

Completed 200 OK in 23ms (Views: 13.5ms | ActiveRecord: 0.3ms | Allocations: 5262)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:16.068160"], ["updated_at", "2020-04-22 05:30:16.068160"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.071188"], ["updated_at", "2020-04-22 05:30:16.071188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.074212"], ["updated_at", "2020-04-22 05:30:16.074212"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.2ms | Allocations: 9)

Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.3ms | Allocations: 674)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:30:16.112479"], ["updated_at", "2020-04-22 05:30:16.112479"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.115325"], ["updated_at", "2020-04-22 05:30:16.115325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.117333"], ["updated_at", "2020-04-22 05:30:16.117333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
Webpacker

Everything's up-to-date. Nothing to do

 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


Completed 200 OK in 97ms (Views: 86.5ms | ActiveRecord: 0.3ms | Allocations: 11325)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:16.145106"], ["updated_at", "2020-04-22 05:30:16.145106"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:16.152700"], ["updated_at", "2020-04-22 05:30:16.152700"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.148182"], ["updated_at", "2020-04-22 05:30:16.148182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.155180"], ["updated_at", "2020-04-22 05:30:16.155180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.157301"], ["updated_at", "2020-04-22 05:30:16.157301"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.156814"], ["updated_at", "2020-04-22 05:30:16.156814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:16.169232"], ["updated_at", "2020-04-22 05:30:16.169232"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.171961"], ["updated_at", "2020-04-22 05:30:16.171961"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.173468"], ["updated_at", "2020-04-22 05:30:16.173468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.191588"], ["updated_at", "2020-04-22 05:30:16.191588"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.196010"], ["updated_at", "2020-04-22 05:30:16.196010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.198327"], ["updated_at", "2020-04-22 05:30:16.198327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:16.201160"], ["updated_at", "2020-04-22 05:30:16.201160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.203716"], ["updated_at", "2020-04-22 05:30:16.203716"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.206615"], ["updated_at", "2020-04-22 05:30:16.206615"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.209221"], ["updated_at", "2020-04-22 05:30:16.209221"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:30:16.214019"], ["updated_at", "2020-04-22 05:30:16.214019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:16.253293"], ["updated_at", "2020-04-22 05:30:16.253293"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.255349"], ["updated_at", "2020-04-22 05:30:16.255349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.256598"], ["updated_at", "2020-04-22 05:30:16.256598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.270331"], ["updated_at", "2020-04-22 05:30:16.270331"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.271870"], ["updated_at", "2020-04-22 05:30:16.271870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.273109"], ["updated_at", "2020-04-22 05:30:16.273109"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.299025"], ["updated_at", "2020-04-22 05:30:16.299025"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.302709"], ["updated_at", "2020-04-22 05:30:16.302709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.304928"], ["updated_at", "2020-04-22 05:30:16.304928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.313722"], ["updated_at", "2020-04-22 05:30:16.313722"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.316408"], ["updated_at", "2020-04-22 05:30:16.316408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.318540"], ["updated_at", "2020-04-22 05:30:16.318540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.337497"], ["updated_at", "2020-04-22 05:30:16.337497"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.339702"], ["updated_at", "2020-04-22 05:30:16.339702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.341496"], ["updated_at", "2020-04-22 05:30:16.341496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.349157"], ["updated_at", "2020-04-22 05:30:16.349157"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.351573"], ["updated_at", "2020-04-22 05:30:16.351573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.353746"], ["updated_at", "2020-04-22 05:30:16.353746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.366461"], ["updated_at", "2020-04-22 05:30:16.366461"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.369687"], ["updated_at", "2020-04-22 05:30:16.369687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.371323"], ["updated_at", "2020-04-22 05:30:16.371323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:16.381384"], ["updated_at", "2020-04-22 05:30:16.381384"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.384521"], ["updated_at", "2020-04-22 05:30:16.384521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.386102"], ["updated_at", "2020-04-22 05:30:16.386102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:16.398866"], ["updated_at", "2020-04-22 05:30:16.398866"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.401019"], ["updated_at", "2020-04-22 05:30:16.401019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.402755"], ["updated_at", "2020-04-22 05:30:16.402755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.4ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:30:16.409949"], ["updated_at", "2020-04-22 05:30:16.409949"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:16.412661"], ["updated_at", "2020-04-22 05:30:16.412661"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:16.414348"], ["updated_at", "2020-04-22 05:30:16.414348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.7ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:30:16.501788"], ["updated_at", "2020-04-22 05:30:16.501788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:30:16.518035"], ["updated_at", "2020-04-22 05:30:16.518035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: e301f5c3-ecc3-4f3d-8c74-4204ba822da2) to Async(default)

 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (23.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (24.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:30:36.939736', '2020-04-22 05:30:36.939736'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:30:36.939736', '2020-04-22 05:30:36.939736'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:30:36.945230', '2020-04-22 05:30:36.945230', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:30:36.945230', '2020-04-22 05:30:36.945230', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:30:36.946720', '2020-04-22 05:30:36.946720'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:36.946720', '2020-04-22 05:30:36.946720'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:36.950482', '2020-04-22 05:30:36.950482'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:36.950482', '2020-04-22 05:30:36.950482'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:30:36.952320', '2020-04-22 05:30:36.952320'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:30:36.952320', '2020-04-22 05:30:36.952320'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:30:36.954824', '2020-04-22 05:30:36.954824'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:30:36.954824', '2020-04-22 05:30:36.954824'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:30:36.956759', '2020-04-22 05:30:36.956759'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:36.956759', '2020-04-22 05:30:36.956759')

 (1.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:30:36.939850', '2020-04-22 05:30:36.939850'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:30:36.939850', '2020-04-22 05:30:36.939850'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:30:36.945732', '2020-04-22 05:30:36.945732', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:30:36.945732', '2020-04-22 05:30:36.945732', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:30:36.947675', '2020-04-22 05:30:36.947675'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:36.947675', '2020-04-22 05:30:36.947675'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:36.955957', '2020-04-22 05:30:36.955957'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:30:36.955957', '2020-04-22 05:30:36.955957'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:30:36.958051', '2020-04-22 05:30:36.958051'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:30:36.958051', '2020-04-22 05:30:36.958051'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:30:36.959470', '2020-04-22 05:30:36.959470'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:30:36.959470', '2020-04-22 05:30:36.959470'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:30:36.961025', '2020-04-22 05:30:36.961025'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:30:36.961025', '2020-04-22 05:30:36.961025')

 (1.1ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:30:37.042877"], ["updated_at", "2020-04-22 05:30:37.042877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.2ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:30:37.045070"], ["updated_at", "2020-04-22 05:30:37.045070"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: a044a915-df50-48f8-bbd4-148be869aecb) to Async(default)

 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (1.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.076153"], ["updated_at", "2020-04-22 05:30:37.076153"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.131172"], ["updated_at", "2020-04-22 05:30:37.131172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.170746"], ["updated_at", "2020-04-22 05:30:37.170746"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (8.8ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:30:37.201262"], ["updated_at", "2020-04-22 05:30:37.201262"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.211187"], ["updated_at", "2020-04-22 05:30:37.211187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.230686"], ["updated_at", "2020-04-22 05:30:37.230686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.256343"], ["updated_at", "2020-04-22 05:30:37.256343"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.263941"], ["updated_at", "2020-04-22 05:30:37.263941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.266660"], ["updated_at", "2020-04-22 05:30:37.266660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
a044a915-df50-48f8-bbd4-148be869aecb

Performing CourseRecommendationMailerJob (Job ID: a044a915-df50-48f8-bbd4-148be869aecb) from Async(default) enqueued at 2020-04-22T05:30:37Z

ActiveJob
CourseRecommendationMailerJob
a044a915-df50-48f8-bbd4-148be869aecb

Performed CourseRecommendationMailerJob (Job ID: a044a915-df50-48f8-bbd4-148be869aecb) from Async(default) in 0.09ms

 (0.0ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:37.325813"], ["updated_at", "2020-04-22 05:30:37.325813"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.328194"], ["updated_at", "2020-04-22 05:30:37.328194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.329671"], ["updated_at", "2020-04-22 05:30:37.329671"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:37.339315"], ["updated_at", "2020-04-22 05:30:37.339315"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.342045"], ["updated_at", "2020-04-22 05:30:37.342045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.347422"], ["updated_at", "2020-04-22 05:30:37.347422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:37.358996"], ["updated_at", "2020-04-22 05:30:37.358996"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.363686"], ["updated_at", "2020-04-22 05:30:37.363686"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.367004"], ["updated_at", "2020-04-22 05:30:37.367004"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.3ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:30:37.379005"], ["updated_at", "2020-04-22 05:30:37.379005"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.380958"], ["updated_at", "2020-04-22 05:30:37.380958"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.383513"], ["updated_at", "2020-04-22 05:30:37.383513"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_track_valid


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.399714"], ["updated_at", "2020-04-22 05:30:37.399714"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.402978"], ["updated_at", "2020-04-22 05:30:37.402978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.404415"], ["updated_at", "2020-04-22 05:30:37.404415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:37.408327"], ["updated_at", "2020-04-22 05:30:37.408327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.410556"], ["updated_at", "2020-04-22 05:30:37.410556"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.412816"], ["updated_at", "2020-04-22 05:30:37.412816"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.414105"], ["updated_at", "2020-04-22 05:30:37.414105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:30:37.417250"], ["updated_at", "2020-04-22 05:30:37.417250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_associations


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.427678"], ["updated_at", "2020-04-22 05:30:37.427678"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.431753"], ["updated_at", "2020-04-22 05:30:37.431753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.433129"], ["updated_at", "2020-04-22 05:30:37.433129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:37.436092"], ["updated_at", "2020-04-22 05:30:37.436092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.453333"], ["updated_at", "2020-04-22 05:30:37.453333"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.455717"], ["updated_at", "2020-04-22 05:30:37.455717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.456965"], ["updated_at", "2020-04-22 05:30:37.456965"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:30:37.458662"], ["updated_at", "2020-04-22 05:30:37.458662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:30:37.461226"], ["updated_at", "2020-04-22 05:30:37.461226"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:30:37.462807"], ["updated_at", "2020-04-22 05:30:37.462807"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.476548"], ["updated_at", "2020-04-22 05:30:37.476548"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.480746"], ["updated_at", "2020-04-22 05:30:37.480746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.484342"], ["updated_at", "2020-04-22 05:30:37.484342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 3.7ms | Allocations: 445)

Completed 200 OK in 22ms (Views: 11.0ms | ActiveRecord: 1.4ms | Allocations: 4208)

 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.517319"], ["updated_at", "2020-04-22 05:30:37.517319"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.519140"], ["updated_at", "2020-04-22 05:30:37.519140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.520302"], ["updated_at", "2020-04-22 05:30:37.520302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.0ms | Allocations: 5)

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 688)

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.527958"], ["updated_at", "2020-04-22 05:30:37.527958"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.529641"], ["updated_at", "2020-04-22 05:30:37.529641"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.530863"], ["updated_at", "2020-04-22 05:30:37.530863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.539292"], ["updated_at", "2020-04-22 05:30:37.539292"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.541457"], ["updated_at", "2020-04-22 05:30:37.541457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.542833"], ["updated_at", "2020-04-22 05:30:37.542833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.549024"], ["updated_at", "2020-04-22 05:30:37.549024"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.552660"], ["updated_at", "2020-04-22 05:30:37.552660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.554894"], ["updated_at", "2020-04-22 05:30:37.554894"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.563598"], ["updated_at", "2020-04-22 05:30:37.563598"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.570935"], ["updated_at", "2020-04-22 05:30:37.570935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.572540"], ["updated_at", "2020-04-22 05:30:37.572540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.580992"], ["updated_at", "2020-04-22 05:30:37.580992"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.584006"], ["updated_at", "2020-04-22 05:30:37.584006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.585724"], ["updated_at", "2020-04-22 05:30:37.585724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
CACHE  (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:30:37.597224"], ["updated_at", "2020-04-22 05:30:37.597224"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.599220"], ["updated_at", "2020-04-22 05:30:37.599220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.600465"], ["updated_at", "2020-04-22 05:30:37.600465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.1ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 367)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.1ms | Allocations: 8382)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.662836"], ["updated_at", "2020-04-22 05:30:37.662836"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.664812"], ["updated_at", "2020-04-22 05:30:37.664812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.667109"], ["updated_at", "2020-04-22 05:30:37.667109"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.681008"], ["updated_at", "2020-04-22 05:30:37.681008"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.682880"], ["updated_at", "2020-04-22 05:30:37.682880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.684403"], ["updated_at", "2020-04-22 05:30:37.684403"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.697368"], ["updated_at", "2020-04-22 05:30:37.697368"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.704084"], ["updated_at", "2020-04-22 05:30:37.704084"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.705421"], ["updated_at", "2020-04-22 05:30:37.705421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.716983"], ["updated_at", "2020-04-22 05:30:37.716983"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.719423"], ["updated_at", "2020-04-22 05:30:37.719423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.720948"], ["updated_at", "2020-04-22 05:30:37.720948"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_thing


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.726469"], ["updated_at", "2020-04-22 05:30:37.726469"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.730796"], ["updated_at", "2020-04-22 05:30:37.730796"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.732456"], ["updated_at", "2020-04-22 05:30:37.732456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.743640"], ["updated_at", "2020-04-22 05:30:37.743640"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.745807"], ["updated_at", "2020-04-22 05:30:37.745807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.747134"], ["updated_at", "2020-04-22 05:30:37.747134"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.756816"], ["updated_at", "2020-04-22 05:30:37.756816"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.759431"], ["updated_at", "2020-04-22 05:30:37.759431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.761541"], ["updated_at", "2020-04-22 05:30:37.761541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:30:37.770422"], ["updated_at", "2020-04-22 05:30:37.770422"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.773364"], ["updated_at", "2020-04-22 05:30:37.773364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.774706"], ["updated_at", "2020-04-22 05:30:37.774706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.0ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.0ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:30:37.806400"], ["updated_at", "2020-04-22 05:30:37.806400"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:30:37.808120"], ["updated_at", "2020-04-22 05:30:37.808120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:30:37.809190"], ["updated_at", "2020-04-22 05:30:37.809190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (2.7ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (1.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (17.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
Truncate Tables (21.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:31:14.360040', '2020-04-22 05:31:14.360040'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:31:14.360040', '2020-04-22 05:31:14.360040'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:31:14.364603', '2020-04-22 05:31:14.364603', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:31:14.364603', '2020-04-22 05:31:14.364603', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:31:14.366402', '2020-04-22 05:31:14.366402'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:31:14.366402', '2020-04-22 05:31:14.366402'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:31:14.368856', '2020-04-22 05:31:14.368856'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:31:14.368856', '2020-04-22 05:31:14.368856'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:31:14.371379', '2020-04-22 05:31:14.371379'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:31:14.371379', '2020-04-22 05:31:14.371379'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:31:14.372574', '2020-04-22 05:31:14.372574'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:31:14.372574', '2020-04-22 05:31:14.372574'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:31:14.373854', '2020-04-22 05:31:14.373854'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:31:14.373854', '2020-04-22 05:31:14.373854')

 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (1.0ms)  commit transaction
 (0.1ms)  begin transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


Fixtures Load (0.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:31:14.364222', '2020-04-22 05:31:14.364222'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:31:14.364222', '2020-04-22 05:31:14.364222'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:31:14.367799', '2020-04-22 05:31:14.367799', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:31:14.367799', '2020-04-22 05:31:14.367799', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:31:14.370308', '2020-04-22 05:31:14.370308'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:31:14.370308', '2020-04-22 05:31:14.370308'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:31:14.372164', '2020-04-22 05:31:14.372164'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:31:14.372164', '2020-04-22 05:31:14.372164'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:31:14.373623', '2020-04-22 05:31:14.373623'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:31:14.373623', '2020-04-22 05:31:14.373623'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:31:14.374840', '2020-04-22 05:31:14.374840'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:31:14.374840', '2020-04-22 05:31:14.374840'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:31:14.375881', '2020-04-22 05:31:14.375881'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:31:14.375881', '2020-04-22 05:31:14.375881')

 (1.1ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.4ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:31:14.393219"], ["updated_at", "2020-04-22 05:31:14.393219"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.415221"], ["updated_at", "2020-04-22 05:31:14.415221"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.429972"], ["updated_at", "2020-04-22 05:31:14.429972"]]
 (6.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.590383"], ["updated_at", "2020-04-22 05:31:14.590383"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.638700"], ["updated_at", "2020-04-22 05:31:14.638700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.651100"], ["updated_at", "2020-04-22 05:31:14.651100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.660502"], ["updated_at", "2020-04-22 05:31:14.660502"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.663031"], ["updated_at", "2020-04-22 05:31:14.663031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.665474"], ["updated_at", "2020-04-22 05:31:14.665474"]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Rendering buckets/search.json.erb
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendered buckets/search.json.erb (Duration: 6.8ms | Allocations: 442)

Completed 200 OK in 31ms (Views: 19.3ms | ActiveRecord: 0.4ms | Allocations: 5712)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.696338"], ["updated_at", "2020-04-22 05:31:14.696338"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.701167"], ["updated_at", "2020-04-22 05:31:14.701167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.704736"], ["updated_at", "2020-04-22 05:31:14.704736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
Rendering buckets/search.json.erb
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


Rendered buckets/search.json.erb (Duration: 3.6ms | Allocations: 446)

Completed 200 OK in 44ms (Views: 19.2ms | ActiveRecord: 0.3ms | Allocations: 5723)

 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.3ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:14.733180"], ["updated_at", "2020-04-22 05:31:14.733180"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.736300"], ["updated_at", "2020-04-22 05:31:14.736300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.739045"], ["updated_at", "2020-04-22 05:31:14.739045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.744842"], ["updated_at", "2020-04-22 05:31:14.744842"]]
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:31:14.745618"], ["updated_at", "2020-04-22 05:31:14.745618"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.747391"], ["updated_at", "2020-04-22 05:31:14.747391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:31:14.748532"], ["updated_at", "2020-04-22 05:31:14.748532"], ["track_id", 980190963]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.749514"], ["updated_at", "2020-04-22 05:31:14.749514"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:31:14.750156"], ["updated_at", "2020-04-22 05:31:14.750156"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:31:14.757258"], ["updated_at", "2020-04-22 05:31:14.757258"]]
 (0.0ms)  begin transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (1.8ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

SearchableTest: test_find_all_by_count


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:31:14.777812"], ["updated_at", "2020-04-22 05:31:14.777812"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.783704"], ["updated_at", "2020-04-22 05:31:14.783704"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.784262"], ["updated_at", "2020-04-22 05:31:14.784262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.786767"], ["updated_at", "2020-04-22 05:31:14.786767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.787320"], ["updated_at", "2020-04-22 05:31:14.787320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.789618"], ["updated_at", "2020-04-22 05:31:14.789618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (2.7ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count



SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.800082"], ["updated_at", "2020-04-22 05:31:14.800082"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.800110"], ["updated_at", "2020-04-22 05:31:14.800110"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.802624"], ["updated_at", "2020-04-22 05:31:14.802624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.805128"], ["updated_at", "2020-04-22 05:31:14.805128"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.805203"], ["updated_at", "2020-04-22 05:31:14.805203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.807057"], ["updated_at", "2020-04-22 05:31:14.807057"]]
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.5ms)  rollback transaction
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

SearchableTest: test_find_none_matches_classes


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.811285"], ["updated_at", "2020-04-22 05:31:14.811285"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.814095"], ["updated_at", "2020-04-22 05:31:14.814095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.812725"], ["updated_at", "2020-04-22 05:31:14.812725"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.822205"], ["updated_at", "2020-04-22 05:31:14.822205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.822065"], ["updated_at", "2020-04-22 05:31:14.822065"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.824052"], ["updated_at", "2020-04-22 05:31:14.824052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.6ms)  rollback transaction
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


 (0.4ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:31:14.909361"], ["updated_at", "2020-04-22 05:31:14.909361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (4.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:31:14.912054"], ["updated_at", "2020-04-22 05:31:14.912054"]]
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 96469f5d-184e-40af-bd18-03787969221e) to Async(default)

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (7.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:14.932856"], ["updated_at", "2020-04-22 05:31:14.932856"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.935207"], ["updated_at", "2020-04-22 05:31:14.935207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.940961"], ["updated_at", "2020-04-22 05:31:14.940961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.4ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
96469f5d-184e-40af-bd18-03787969221e

Performing CourseRecommendationMailerJob (Job ID: 96469f5d-184e-40af-bd18-03787969221e) from Async(default) enqueued at 2020-04-22T05:31:14Z

ActiveJob
CourseRecommendationMailerJob
96469f5d-184e-40af-bd18-03787969221e

Performed CourseRecommendationMailerJob (Job ID: 96469f5d-184e-40af-bd18-03787969221e) from Async(default) in 0.12ms

 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:14.961143"], ["updated_at", "2020-04-22 05:31:14.961143"]]
 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.964822"], ["updated_at", "2020-04-22 05:31:14.964822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exists


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.966342"], ["updated_at", "2020-04-22 05:31:14.966342"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:31:14.968013"], ["updated_at", "2020-04-22 05:31:14.968013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:14.970754"], ["updated_at", "2020-04-22 05:31:14.970754"]]
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.0ms)  rollback transaction
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.972633"], ["updated_at", "2020-04-22 05:31:14.972633"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.974222"], ["updated_at", "2020-04-22 05:31:14.974222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:31:14.975848"], ["updated_at", "2020-04-22 05:31:14.975848"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:31:14.976400"], ["updated_at", "2020-04-22 05:31:14.976400"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:14.978782"], ["updated_at", "2020-04-22 05:31:14.978782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:14.981177"], ["updated_at", "2020-04-22 05:31:14.981177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
Course Load (0.4ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.6ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:31:15.001252"], ["updated_at", "2020-04-22 05:31:15.001252"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:31:15.005805"], ["updated_at", "2020-04-22 05:31:15.005805"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.008969"], ["updated_at", "2020-04-22 05:31:15.008969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.009776"], ["updated_at", "2020-04-22 05:31:15.009776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.010422"], ["updated_at", "2020-04-22 05:31:15.010422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.011838"], ["updated_at", "2020-04-22 05:31:15.011838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (10.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:31:15.026343"], ["updated_at", "2020-04-22 05:31:15.026343"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.029270"], ["updated_at", "2020-04-22 05:31:15.029270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.032502"], ["updated_at", "2020-04-22 05:31:15.032502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:31:15.058657"], ["updated_at", "2020-04-22 05:31:15.058657"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.060884"], ["updated_at", "2020-04-22 05:31:15.060884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.062416"], ["updated_at", "2020-04-22 05:31:15.062416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 2.6ms | Allocations: 363)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 45ms (Views: 42.8ms | ActiveRecord: 0.2ms | Allocations: 8402)

 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.130953"], ["updated_at", "2020-04-22 05:31:15.130953"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.132895"], ["updated_at", "2020-04-22 05:31:15.132895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.134559"], ["updated_at", "2020-04-22 05:31:15.134559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_thing


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.191636"], ["updated_at", "2020-04-22 05:31:15.191636"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.193238"], ["updated_at", "2020-04-22 05:31:15.193238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.194693"], ["updated_at", "2020-04-22 05:31:15.194693"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.202533"], ["updated_at", "2020-04-22 05:31:15.202533"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.205341"], ["updated_at", "2020-04-22 05:31:15.205341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.206783"], ["updated_at", "2020-04-22 05:31:15.206783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.226993"], ["updated_at", "2020-04-22 05:31:15.226993"]]
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.233835"], ["updated_at", "2020-04-22 05:31:15.233835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.238933"], ["updated_at", "2020-04-22 05:31:15.238933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.250464"], ["updated_at", "2020-04-22 05:31:15.250464"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.252197"], ["updated_at", "2020-04-22 05:31:15.252197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.254460"], ["updated_at", "2020-04-22 05:31:15.254460"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.260836"], ["updated_at", "2020-04-22 05:31:15.260836"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.264203"], ["updated_at", "2020-04-22 05:31:15.264203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.269093"], ["updated_at", "2020-04-22 05:31:15.269093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.280708"], ["updated_at", "2020-04-22 05:31:15.280708"]]
Bucket Create (3.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.283738"], ["updated_at", "2020-04-22 05:31:15.283738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.290016"], ["updated_at", "2020-04-22 05:31:15.290016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (2.0ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:31:15.306738"], ["updated_at", "2020-04-22 05:31:15.306738"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:31:15.309216"], ["updated_at", "2020-04-22 05:31:15.309216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:31:15.310937"], ["updated_at", "2020-04-22 05:31:15.310937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (20.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (24.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.0ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:08.640905', '2020-04-22 05:32:08.640905'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:08.640905', '2020-04-22 05:32:08.640905'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:08.644951', '2020-04-22 05:32:08.644951', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:08.644951', '2020-04-22 05:32:08.644951', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:08.647922', '2020-04-22 05:32:08.647922'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:08.647922', '2020-04-22 05:32:08.647922'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:08.651182', '2020-04-22 05:32:08.651182'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:08.651182', '2020-04-22 05:32:08.651182'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:08.654080', '2020-04-22 05:32:08.654080'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:08.654080', '2020-04-22 05:32:08.654080'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:08.655548', '2020-04-22 05:32:08.655548'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:08.655548', '2020-04-22 05:32:08.655548'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:08.657720', '2020-04-22 05:32:08.657720'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:08.657720', '2020-04-22 05:32:08.657720')

 (3.0ms)  commit transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:08.644536', '2020-04-22 05:32:08.644536'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:08.644536', '2020-04-22 05:32:08.644536'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:08.653909', '2020-04-22 05:32:08.653909', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:08.653909', '2020-04-22 05:32:08.653909', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:08.655930', '2020-04-22 05:32:08.655930'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:08.655930', '2020-04-22 05:32:08.655930'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:08.658268', '2020-04-22 05:32:08.658268'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:08.658268', '2020-04-22 05:32:08.658268'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:08.660494', '2020-04-22 05:32:08.660494'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:08.660494', '2020-04-22 05:32:08.660494'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:08.664567', '2020-04-22 05:32:08.664567'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:08.664567', '2020-04-22 05:32:08.664567'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:08.666958', '2020-04-22 05:32:08.666958'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:08.666958', '2020-04-22 05:32:08.666958')

 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.692693"], ["updated_at", "2020-04-22 05:32:08.692693"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.703374"], ["updated_at", "2020-04-22 05:32:08.703374"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.723720"], ["updated_at", "2020-04-22 05:32:08.723720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.725148"], ["updated_at", "2020-04-22 05:32:08.725148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.751419"], ["updated_at", "2020-04-22 05:32:08.751419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.754869"], ["updated_at", "2020-04-22 05:32:08.754869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (7.0ms)  rollback transaction
 (8.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.811350"], ["updated_at", "2020-04-22 05:32:08.811350"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.811897"], ["updated_at", "2020-04-22 05:32:08.811897"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.815105"], ["updated_at", "2020-04-22 05:32:08.815105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.817562"], ["updated_at", "2020-04-22 05:32:08.817562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (8.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.817342"], ["updated_at", "2020-04-22 05:32:08.817342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.828176"], ["updated_at", "2020-04-22 05:32:08.828176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.836013"], ["updated_at", "2020-04-22 05:32:08.836013"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.838718"], ["updated_at", "2020-04-22 05:32:08.838718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_thing


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.841136"], ["updated_at", "2020-04-22 05:32:08.841136"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.841243"], ["updated_at", "2020-04-22 05:32:08.841243"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.844477"], ["updated_at", "2020-04-22 05:32:08.844477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.846340"], ["updated_at", "2020-04-22 05:32:08.846340"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_comment_created_success


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.854195"], ["updated_at", "2020-04-22 05:32:08.854195"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:08.856210"], ["updated_at", "2020-04-22 05:32:08.856210"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.857530"], ["updated_at", "2020-04-22 05:32:08.857530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:08.860056"], ["updated_at", "2020-04-22 05:32:08.860056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.860034"], ["updated_at", "2020-04-22 05:32:08.860034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:08.861464"], ["updated_at", "2020-04-22 05:32:08.861464"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.0ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (22.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (24.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.7ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:18.283983', '2020-04-22 05:32:18.283983'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:18.283983', '2020-04-22 05:32:18.283983'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:18.288824', '2020-04-22 05:32:18.288824', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:18.288824', '2020-04-22 05:32:18.288824', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:18.290219', '2020-04-22 05:32:18.290219'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:18.290219', '2020-04-22 05:32:18.290219'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:18.291688', '2020-04-22 05:32:18.291688'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:18.291688', '2020-04-22 05:32:18.291688'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:18.293104', '2020-04-22 05:32:18.293104'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:18.293104', '2020-04-22 05:32:18.293104'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:18.294336', '2020-04-22 05:32:18.294336'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:18.294336', '2020-04-22 05:32:18.294336'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:18.295955', '2020-04-22 05:32:18.295955'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:18.295955', '2020-04-22 05:32:18.295955')

 (0.2ms)  PRAGMA foreign_keys
 (1.1ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  begin transaction
Fixtures Load (1.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:18.287840', '2020-04-22 05:32:18.287840'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:18.287840', '2020-04-22 05:32:18.287840'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:18.290889', '2020-04-22 05:32:18.290889', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:18.290889', '2020-04-22 05:32:18.290889', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:18.292234', '2020-04-22 05:32:18.292234'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:18.292234', '2020-04-22 05:32:18.292234'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:18.293743', '2020-04-22 05:32:18.293743'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:18.293743', '2020-04-22 05:32:18.293743'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:18.295214', '2020-04-22 05:32:18.295214'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:18.295214', '2020-04-22 05:32:18.295214'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:18.297025', '2020-04-22 05:32:18.297025'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:18.297025', '2020-04-22 05:32:18.297025'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:18.298373', '2020-04-22 05:32:18.298373'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:18.298373', '2020-04-22 05:32:18.298373')

 (1.6ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:18.324820"], ["updated_at", "2020-04-22 05:32:18.324820"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.342258"], ["updated_at", "2020-04-22 05:32:18.342258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.354348"], ["updated_at", "2020-04-22 05:32:18.354348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:32:18.410880"], ["updated_at", "2020-04-22 05:32:18.410880"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 2a6743f2-d666-40f7-9743-fff4660253c1) to Async(default)

 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:18.442641"], ["updated_at", "2020-04-22 05:32:18.442641"]]
 (0.3ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.490089"], ["updated_at", "2020-04-22 05:32:18.490089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:32:18.533500"], ["updated_at", "2020-04-22 05:32:18.533500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.543954"], ["updated_at", "2020-04-22 05:32:18.543954"]]

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction

Processing by CoursesController#index as HTML

 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.1ms)  rollback transaction
Rendering courses/index.html.erb within layouts/application
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
Course Load (0.5ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 5.8ms | Allocations: 683)
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:18.598599"], ["updated_at", "2020-04-22 05:32:18.598599"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.625341"], ["updated_at", "2020-04-22 05:32:18.625341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.627503"], ["updated_at", "2020-04-22 05:32:18.627503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.7ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.2ms)  rollback transaction
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 88ms (Views: 73.9ms | ActiveRecord: 0.5ms | Allocations: 11419)

 (4.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  begin transaction
 (0.1ms)  rollback transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (4.6ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:18.678267"], ["updated_at", "2020-04-22 05:32:18.678267"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.689878"], ["updated_at", "2020-04-22 05:32:18.689878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:18.690262"], ["updated_at", "2020-04-22 05:32:18.690262"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.691864"], ["updated_at", "2020-04-22 05:32:18.691864"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.692491"], ["updated_at", "2020-04-22 05:32:18.692491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.694536"], ["updated_at", "2020-04-22 05:32:18.694536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.8ms | Allocations: 149)

Completed 200 OK in 14ms (Views: 6.3ms | ActiveRecord: 0.5ms | Allocations: 2732)

 (0.8ms)  rollback transaction
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


ActiveJob
CourseRecommendationMailerJob
2a6743f2-d666-40f7-9743-fff4660253c1

Performing CourseRecommendationMailerJob (Job ID: 2a6743f2-d666-40f7-9743-fff4660253c1) from Async(default) enqueued at 2020-04-22T05:32:18Z

ActiveJob
CourseRecommendationMailerJob
2a6743f2-d666-40f7-9743-fff4660253c1

Performed CourseRecommendationMailerJob (Job ID: 2a6743f2-d666-40f7-9743-fff4660253c1) from Async(default) in 0.16ms

 (0.1ms)  SAVEPOINT active_record_1
Rendering buckets/search.json.erb
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.730857"], ["updated_at", "2020-04-22 05:32:18.730857"]]
Rendered buckets/search.json.erb (Duration: 2.5ms | Allocations: 446)

Completed 200 OK in 29ms (Views: 17.9ms | ActiveRecord: 0.5ms | Allocations: 4708)

 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.736472"], ["updated_at", "2020-04-22 05:32:18.736472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.740883"], ["updated_at", "2020-04-22 05:32:18.740883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:18.760857"], ["updated_at", "2020-04-22 05:32:18.760857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:32:18.765496"], ["updated_at", "2020-04-22 05:32:18.765496"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:32:18.770645"], ["updated_at", "2020-04-22 05:32:18.770645"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  begin transaction
 (0.0ms)  rollback transaction

LessonTest: test_associations


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

VaultTest: test_has_many_:courses_association


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:18.776819"], ["updated_at", "2020-04-22 05:32:18.776819"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.785634"], ["updated_at", "2020-04-22 05:32:18.785634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.789467"], ["updated_at", "2020-04-22 05:32:18.789467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:32:18.791775"], ["updated_at", "2020-04-22 05:32:18.791775"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.794704"], ["updated_at", "2020-04-22 05:32:18.794704"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.798177"], ["updated_at", "2020-04-22 05:32:18.798177"]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:18.800321"], ["updated_at", "2020-04-22 05:32:18.800321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.7ms)  rollback transaction
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.822381"], ["updated_at", "2020-04-22 05:32:18.822381"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.826608"], ["updated_at", "2020-04-22 05:32:18.826608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.826146"], ["updated_at", "2020-04-22 05:32:18.826146"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.828465"], ["updated_at", "2020-04-22 05:32:18.828465"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.828590"], ["updated_at", "2020-04-22 05:32:18.828590"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.833010"], ["updated_at", "2020-04-22 05:32:18.833010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_thing


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.856954"], ["updated_at", "2020-04-22 05:32:18.856954"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.858962"], ["updated_at", "2020-04-22 05:32:18.858962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.861286"], ["updated_at", "2020-04-22 05:32:18.861286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.871338"], ["updated_at", "2020-04-22 05:32:18.871338"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.873101"], ["updated_at", "2020-04-22 05:32:18.873101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.874497"], ["updated_at", "2020-04-22 05:32:18.874497"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.891361"], ["updated_at", "2020-04-22 05:32:18.891361"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.894191"], ["updated_at", "2020-04-22 05:32:18.894191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.898576"], ["updated_at", "2020-04-22 05:32:18.898576"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]

CommentTest: test_comments_on_course_via_proxy


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.914312"], ["updated_at", "2020-04-22 05:32:18.914312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.919112"], ["updated_at", "2020-04-22 05:32:18.919112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.922297"], ["updated_at", "2020-04-22 05:32:18.922297"]]
Review Create (1.0ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.929472"], ["updated_at", "2020-04-22 05:32:18.929472"]]
 (0.0ms)  begin transaction

CommentTest: test_comment_created_success


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.931505"], ["updated_at", "2020-04-22 05:32:18.931505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:18.931882"], ["updated_at", "2020-04-22 05:32:18.931882"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.932941"], ["updated_at", "2020-04-22 05:32:18.932941"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.933539"], ["updated_at", "2020-04-22 05:32:18.933539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.937745"], ["updated_at", "2020-04-22 05:32:18.937745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.5ms)  rollback transaction
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:18.948281"], ["updated_at", "2020-04-22 05:32:18.948281"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.950741"], ["updated_at", "2020-04-22 05:32:18.950741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.953180"], ["updated_at", "2020-04-22 05:32:18.953180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:18.962254"], ["updated_at", "2020-04-22 05:32:18.962254"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.964766"], ["updated_at", "2020-04-22 05:32:18.964766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.966700"], ["updated_at", "2020-04-22 05:32:18.966700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:18.980186"], ["updated_at", "2020-04-22 05:32:18.980186"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:18.986319"], ["updated_at", "2020-04-22 05:32:18.986319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:18.989979"], ["updated_at", "2020-04-22 05:32:18.989979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:32:19.009864"], ["updated_at", "2020-04-22 05:32:19.009864"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.012046"], ["updated_at", "2020-04-22 05:32:19.012046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.013711"], ["updated_at", "2020-04-22 05:32:19.013711"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:19.026181"], ["updated_at", "2020-04-22 05:32:19.026181"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.027804"], ["updated_at", "2020-04-22 05:32:19.027804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.032328"], ["updated_at", "2020-04-22 05:32:19.032328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:19.034795"], ["updated_at", "2020-04-22 05:32:19.034795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:19.039520"], ["updated_at", "2020-04-22 05:32:19.039520"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.041114"], ["updated_at", "2020-04-22 05:32:19.041114"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.042471"], ["updated_at", "2020-04-22 05:32:19.042471"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:32:19.043837"], ["updated_at", "2020-04-22 05:32:19.043837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.071301"], ["updated_at", "2020-04-22 05:32:19.071301"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.073485"], ["updated_at", "2020-04-22 05:32:19.073485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.074890"], ["updated_at", "2020-04-22 05:32:19.074890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.097645"], ["updated_at", "2020-04-22 05:32:19.097645"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.101046"], ["updated_at", "2020-04-22 05:32:19.101046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.108148"], ["updated_at", "2020-04-22 05:32:19.108148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.121597"], ["updated_at", "2020-04-22 05:32:19.121597"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.125469"], ["updated_at", "2020-04-22 05:32:19.125469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.128530"], ["updated_at", "2020-04-22 05:32:19.128530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.143788"], ["updated_at", "2020-04-22 05:32:19.143788"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.146783"], ["updated_at", "2020-04-22 05:32:19.146783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.148236"], ["updated_at", "2020-04-22 05:32:19.148236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.163537"], ["updated_at", "2020-04-22 05:32:19.163537"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.166804"], ["updated_at", "2020-04-22 05:32:19.166804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.176597"], ["updated_at", "2020-04-22 05:32:19.176597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:19.194777"], ["updated_at", "2020-04-22 05:32:19.194777"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:19.199490"], ["updated_at", "2020-04-22 05:32:19.199490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:19.207324"], ["updated_at", "2020-04-22 05:32:19.207324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  rollback transaction
 (1.9ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.5ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (24.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:36.003241', '2020-04-22 05:32:36.003241'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:36.003241', '2020-04-22 05:32:36.003241'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:36.006928', '2020-04-22 05:32:36.006928', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:36.006928', '2020-04-22 05:32:36.006928', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:36.008510', '2020-04-22 05:32:36.008510'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:36.008510', '2020-04-22 05:32:36.008510'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:36.010353', '2020-04-22 05:32:36.010353'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:36.010353', '2020-04-22 05:32:36.010353'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:36.011880', '2020-04-22 05:32:36.011880'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:36.011880', '2020-04-22 05:32:36.011880'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:36.014193', '2020-04-22 05:32:36.014193'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:36.014193', '2020-04-22 05:32:36.014193'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:36.017294', '2020-04-22 05:32:36.017294'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:36.017294', '2020-04-22 05:32:36.017294')

 (1.3ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction

LessonTest: test_associations


 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (0.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:32:36.008782', '2020-04-22 05:32:36.008782'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:32:36.008782', '2020-04-22 05:32:36.008782'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:32:36.012289', '2020-04-22 05:32:36.012289', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:32:36.012289', '2020-04-22 05:32:36.012289', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:32:36.014171', '2020-04-22 05:32:36.014171'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:36.014171', '2020-04-22 05:32:36.014171'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:36.028228', '2020-04-22 05:32:36.028228'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:32:36.028228', '2020-04-22 05:32:36.028228'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:32:36.030356', '2020-04-22 05:32:36.030356'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:32:36.030356', '2020-04-22 05:32:36.030356'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:32:36.031758', '2020-04-22 05:32:36.031758'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:32:36.031758', '2020-04-22 05:32:36.031758'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:32:36.036877', '2020-04-22 05:32:36.036877'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:32:36.036877', '2020-04-22 05:32:36.036877')

 (1.1ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.046326"], ["updated_at", "2020-04-22 05:32:36.046326"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.126270"], ["updated_at", "2020-04-22 05:32:36.126270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.175197"], ["updated_at", "2020-04-22 05:32:36.175197"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.199787"], ["updated_at", "2020-04-22 05:32:36.199787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.199492"], ["updated_at", "2020-04-22 05:32:36.199492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.237399"], ["updated_at", "2020-04-22 05:32:36.237399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:36.244338"], ["updated_at", "2020-04-22 05:32:36.244338"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:36.246165"], ["updated_at", "2020-04-22 05:32:36.246165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:32:36.249202"], ["updated_at", "2020-04-22 05:32:36.249202"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Lesson Create (0.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:32:36.254570"], ["updated_at", "2020-04-22 05:32:36.254570"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.8ms)  rollback transaction
 (9.0ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.398586"], ["updated_at", "2020-04-22 05:32:36.398586"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.406382"], ["updated_at", "2020-04-22 05:32:36.406382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.408215"], ["updated_at", "2020-04-22 05:32:36.408215"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.420628"], ["updated_at", "2020-04-22 05:32:36.420628"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.423025"], ["updated_at", "2020-04-22 05:32:36.423025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.424436"], ["updated_at", "2020-04-22 05:32:36.424436"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.3ms | Allocations: 442)

Completed 200 OK in 21ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 5712)

 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (8.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.456645"], ["updated_at", "2020-04-22 05:32:36.456645"]]
Rendering buckets/search.json.erb
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.459473"], ["updated_at", "2020-04-22 05:32:36.459473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Rendered buckets/search.json.erb (Duration: 3.0ms | Allocations: 446)

Completed 200 OK in 33ms (Views: 17.2ms | ActiveRecord: 0.2ms | Allocations: 5692)

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.462165"], ["updated_at", "2020-04-22 05:32:36.462165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.472421"], ["updated_at", "2020-04-22 05:32:36.472421"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.474174"], ["updated_at", "2020-04-22 05:32:36.474174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.476912"], ["updated_at", "2020-04-22 05:32:36.476912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (15.1ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.516203"], ["updated_at", "2020-04-22 05:32:36.516203"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.516346"], ["updated_at", "2020-04-22 05:32:36.516346"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.532941"], ["updated_at", "2020-04-22 05:32:36.532941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.538904"], ["updated_at", "2020-04-22 05:32:36.538904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.539951"], ["updated_at", "2020-04-22 05:32:36.539951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.541513"], ["updated_at", "2020-04-22 05:32:36.541513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.551376"], ["updated_at", "2020-04-22 05:32:36.551376"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.554702"], ["updated_at", "2020-04-22 05:32:36.554702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.556451"], ["updated_at", "2020-04-22 05:32:36.556451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.561435"], ["updated_at", "2020-04-22 05:32:36.561435"]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.563506"], ["updated_at", "2020-04-22 05:32:36.563506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.565136"], ["updated_at", "2020-04-22 05:32:36.565136"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.565069"], ["updated_at", "2020-04-22 05:32:36.565069"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.567545"], ["updated_at", "2020-04-22 05:32:36.567545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.0ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.573202"], ["updated_at", "2020-04-22 05:32:36.573202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_thing


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.576214"], ["updated_at", "2020-04-22 05:32:36.576214"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.578253"], ["updated_at", "2020-04-22 05:32:36.578253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.579660"], ["updated_at", "2020-04-22 05:32:36.579660"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.582123"], ["updated_at", "2020-04-22 05:32:36.582123"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.586643"], ["updated_at", "2020-04-22 05:32:36.586643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.588892"], ["updated_at", "2020-04-22 05:32:36.588892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (6.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:36.599218"], ["updated_at", "2020-04-22 05:32:36.599218"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.607748"], ["updated_at", "2020-04-22 05:32:36.607748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.609347"], ["updated_at", "2020-04-22 05:32:36.609347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.0ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.0ms)  rollback transaction
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

TrackTest: test_track_valid


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.625979"], ["updated_at", "2020-04-22 05:32:36.625979"]]
 (0.0ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.627748"], ["updated_at", "2020-04-22 05:32:36.627748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

TrackTest: test_associations


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.629312"], ["updated_at", "2020-04-22 05:32:36.629312"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:32:36.633550"], ["updated_at", "2020-04-22 05:32:36.633550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:32:36.636741"], ["updated_at", "2020-04-22 05:32:36.636741"]]
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.638425"], ["updated_at", "2020-04-22 05:32:36.638425"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:36.638817"], ["updated_at", "2020-04-22 05:32:36.638817"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.639795"], ["updated_at", "2020-04-22 05:32:36.639795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.640407"], ["updated_at", "2020-04-22 05:32:36.640407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:32:36.641209"], ["updated_at", "2020-04-22 05:32:36.641209"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.641952"], ["updated_at", "2020-04-22 05:32:36.641952"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:36.647143"], ["updated_at", "2020-04-22 05:32:36.647143"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:32:36.648044"], ["updated_at", "2020-04-22 05:32:36.648044"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.648714"], ["updated_at", "2020-04-22 05:32:36.648714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.649887"], ["updated_at", "2020-04-22 05:32:36.649887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.649687"], ["updated_at", "2020-04-22 05:32:36.649687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.656458"], ["updated_at", "2020-04-22 05:32:36.656458"]]
 (0.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.0ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.0ms)  rollback transaction
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.676439"], ["updated_at", "2020-04-22 05:32:36.676439"]]
Bucket Create (4.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.678825"], ["updated_at", "2020-04-22 05:32:36.678825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.693376"], ["updated_at", "2020-04-22 05:32:36.693376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.9ms | Allocations: 376)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 52ms (Views: 50.2ms | ActiveRecord: 0.2ms | Allocations: 8461)

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.1ms)  SAVEPOINT active_record_1
Vault Create (0.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:32:36.767017"], ["updated_at", "2020-04-22 05:32:36.767017"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.775292"], ["updated_at", "2020-04-22 05:32:36.775292"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.779750"], ["updated_at", "2020-04-22 05:32:36.779750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.0ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:32:36.800264"], ["updated_at", "2020-04-22 05:32:36.800264"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.805342"], ["updated_at", "2020-04-22 05:32:36.805342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.806784"], ["updated_at", "2020-04-22 05:32:36.806784"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.811142"], ["updated_at", "2020-04-22 05:32:36.811142"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.813437"], ["updated_at", "2020-04-22 05:32:36.813437"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.815027"], ["updated_at", "2020-04-22 05:32:36.815027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.826158"], ["updated_at", "2020-04-22 05:32:36.826158"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.827824"], ["updated_at", "2020-04-22 05:32:36.827824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.829010"], ["updated_at", "2020-04-22 05:32:36.829010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.838700"], ["updated_at", "2020-04-22 05:32:36.838700"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.841517"], ["updated_at", "2020-04-22 05:32:36.841517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.843082"], ["updated_at", "2020-04-22 05:32:36.843082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.855855"], ["updated_at", "2020-04-22 05:32:36.855855"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.858125"], ["updated_at", "2020-04-22 05:32:36.858125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.859471"], ["updated_at", "2020-04-22 05:32:36.859471"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.865588"], ["updated_at", "2020-04-22 05:32:36.865588"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.869913"], ["updated_at", "2020-04-22 05:32:36.869913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.872093"], ["updated_at", "2020-04-22 05:32:36.872093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:32:36.877560"], ["updated_at", "2020-04-22 05:32:36.877560"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:32:36.879427"], ["updated_at", "2020-04-22 05:32:36.879427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:32:36.882589"], ["updated_at", "2020-04-22 05:32:36.882589"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.1ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.0ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:32:36.971065"], ["updated_at", "2020-04-22 05:32:36.971065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 3ad35211-27bb-47dd-ba60-3d9bf4166f29) to Async(default)

 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (5.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  rollback transaction
 (0.0ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (0.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:32:37.011123"], ["updated_at", "2020-04-22 05:32:37.011123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (23.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (24.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:34:47.540635', '2020-04-22 05:34:47.540635'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:34:47.540635', '2020-04-22 05:34:47.540635'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:34:47.543850', '2020-04-22 05:34:47.543850', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:34:47.543850', '2020-04-22 05:34:47.543850', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:34:47.545065', '2020-04-22 05:34:47.545065'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:34:47.545065', '2020-04-22 05:34:47.545065'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:34:47.546344', '2020-04-22 05:34:47.546344'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:34:47.546344', '2020-04-22 05:34:47.546344'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:34:47.547739', '2020-04-22 05:34:47.547739'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:34:47.547739', '2020-04-22 05:34:47.547739'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:34:47.548874', '2020-04-22 05:34:47.548874'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:34:47.548874', '2020-04-22 05:34:47.548874'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:34:47.549890', '2020-04-22 05:34:47.549890'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:34:47.549890', '2020-04-22 05:34:47.549890')

Fixtures Load (1.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:34:47.540635', '2020-04-22 05:34:47.540635'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:34:47.540635', '2020-04-22 05:34:47.540635'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:34:47.543850', '2020-04-22 05:34:47.543850', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:34:47.543850', '2020-04-22 05:34:47.543850', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:34:47.545082', '2020-04-22 05:34:47.545082'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:34:47.545082', '2020-04-22 05:34:47.545082'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:34:47.546346', '2020-04-22 05:34:47.546346'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:34:47.546346', '2020-04-22 05:34:47.546346'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:34:47.547743', '2020-04-22 05:34:47.547743'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:34:47.547743', '2020-04-22 05:34:47.547743'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:34:47.548872', '2020-04-22 05:34:47.548872'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:34:47.548872', '2020-04-22 05:34:47.548872'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:34:47.549902', '2020-04-22 05:34:47.549902'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:34:47.549902', '2020-04-22 05:34:47.549902')

 (1.5ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (1.1ms)  commit transaction
 (0.1ms)  begin transaction
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1

CommentTest: test_4


 (0.0ms)  begin transaction

CommentTest: test_10


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.571896"], ["updated_at", "2020-04-22 05:34:47.571896"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.572309"], ["updated_at", "2020-04-22 05:34:47.572309"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.594236"], ["updated_at", "2020-04-22 05:34:47.594236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.594424"], ["updated_at", "2020-04-22 05:34:47.594424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.605155"], ["updated_at", "2020-04-22 05:34:47.605155"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.605366"], ["updated_at", "2020-04-22 05:34:47.605366"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_8 CommentTest: test_3



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.629648"], ["updated_at", "2020-04-22 05:34:47.629648"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.629772"], ["updated_at", "2020-04-22 05:34:47.629772"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.631777"], ["updated_at", "2020-04-22 05:34:47.631777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.632649"], ["updated_at", "2020-04-22 05:34:47.632649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.633924"], ["updated_at", "2020-04-22 05:34:47.633924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.636115"], ["updated_at", "2020-04-22 05:34:47.636115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


 (0.1ms)  begin transaction

CommentTest: test_5


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.648391"], ["updated_at", "2020-04-22 05:34:47.648391"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.649020"], ["updated_at", "2020-04-22 05:34:47.649020"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.651351"], ["updated_at", "2020-04-22 05:34:47.651351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.652136"], ["updated_at", "2020-04-22 05:34:47.652136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.655965"], ["updated_at", "2020-04-22 05:34:47.655965"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.656466"], ["updated_at", "2020-04-22 05:34:47.656466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_9



CommentTest: test_comment_linked_to_bucket


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.664988"], ["updated_at", "2020-04-22 05:34:47.664988"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.664928"], ["updated_at", "2020-04-22 05:34:47.664928"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.668087"], ["updated_at", "2020-04-22 05:34:47.668087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.668536"], ["updated_at", "2020-04-22 05:34:47.668536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.671682"], ["updated_at", "2020-04-22 05:34:47.671682"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.671817"], ["updated_at", "2020-04-22 05:34:47.671817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_no_bucket_no_comment CommentTest: test_comments_on_course_through_bucket



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.680684"], ["updated_at", "2020-04-22 05:34:47.680684"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.680830"], ["updated_at", "2020-04-22 05:34:47.680830"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.682610"], ["updated_at", "2020-04-22 05:34:47.682610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.683288"], ["updated_at", "2020-04-22 05:34:47.683288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.685442"], ["updated_at", "2020-04-22 05:34:47.685442"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.685911"], ["updated_at", "2020-04-22 05:34:47.685911"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.699930"], ["updated_at", "2020-04-22 05:34:47.699930"]]
 (0.1ms)  begin transaction

CommentTest: test_1


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.703657"], ["updated_at", "2020-04-22 05:34:47.703657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.704832"], ["updated_at", "2020-04-22 05:34:47.704832"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.705683"], ["updated_at", "2020-04-22 05:34:47.705683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.708820"], ["updated_at", "2020-04-22 05:34:47.708820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.711106"], ["updated_at", "2020-04-22 05:34:47.711106"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_6


 (0.6ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.717092"], ["updated_at", "2020-04-22 05:34:47.717092"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.721003"], ["updated_at", "2020-04-22 05:34:47.721003"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.723730"], ["updated_at", "2020-04-22 05:34:47.723730"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.723078"], ["updated_at", "2020-04-22 05:34:47.723078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.726042"], ["updated_at", "2020-04-22 05:34:47.726042"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.726374"], ["updated_at", "2020-04-22 05:34:47.726374"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.740497"], ["updated_at", "2020-04-22 05:34:47.740497"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.742717"], ["updated_at", "2020-04-22 05:34:47.742717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.1ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.744446"], ["updated_at", "2020-04-22 05:34:47.744446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_7


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.748119"], ["updated_at", "2020-04-22 05:34:47.748119"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.750978"], ["updated_at", "2020-04-22 05:34:47.750978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.753202"], ["updated_at", "2020-04-22 05:34:47.753202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_2


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:34:47.756676"], ["updated_at", "2020-04-22 05:34:47.756676"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:34:47.759129"], ["updated_at", "2020-04-22 05:34:47.759129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:34:47.761478"], ["updated_at", "2020-04-22 05:34:47.761478"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (4.9ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
Truncate Tables (24.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
Truncate Tables (27.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction
Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:35:02.952317', '2020-04-22 05:35:02.952317'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:35:02.952317', '2020-04-22 05:35:02.952317'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:35:02.955397', '2020-04-22 05:35:02.955397', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:35:02.955397', '2020-04-22 05:35:02.955397', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:35:02.956510', '2020-04-22 05:35:02.956510'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:02.956510', '2020-04-22 05:35:02.956510'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:02.957854', '2020-04-22 05:35:02.957854'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:02.957854', '2020-04-22 05:35:02.957854'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:35:02.959392', '2020-04-22 05:35:02.959392'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:35:02.959392', '2020-04-22 05:35:02.959392'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:35:02.960863', '2020-04-22 05:35:02.960863'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:35:02.960863', '2020-04-22 05:35:02.960863'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:35:02.963342', '2020-04-22 05:35:02.963342'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:02.963342', '2020-04-22 05:35:02.963342')

Fixtures Load (1.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:35:02.950558', '2020-04-22 05:35:02.950558'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:35:02.950558', '2020-04-22 05:35:02.950558'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:35:02.954997', '2020-04-22 05:35:02.954997', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:35:02.954997', '2020-04-22 05:35:02.954997', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:35:02.956152', '2020-04-22 05:35:02.956152'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:02.956152', '2020-04-22 05:35:02.956152'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:02.957549', '2020-04-22 05:35:02.957549'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:02.957549', '2020-04-22 05:35:02.957549'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:35:02.959033', '2020-04-22 05:35:02.959033'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:35:02.959033', '2020-04-22 05:35:02.959033'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:35:02.960865', '2020-04-22 05:35:02.960865'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:35:02.960865', '2020-04-22 05:35:02.960865'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:35:02.963235', '2020-04-22 05:35:02.963235'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:02.963235', '2020-04-22 05:35:02.963235')

 (1.3ms)  commit transaction
 (1.4ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_25



CommentTest: test_61


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:02.981970"], ["updated_at", "2020-04-22 05:35:02.981970"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:02.982041"], ["updated_at", "2020-04-22 05:35:02.982041"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:02.994691"], ["updated_at", "2020-04-22 05:35:02.994691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:02.994692"], ["updated_at", "2020-04-22 05:35:02.994692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.004177"], ["updated_at", "2020-04-22 05:35:03.004177"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.004326"], ["updated_at", "2020-04-22 05:35:03.004326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_62



CommentTest: test_63


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.028189"], ["updated_at", "2020-04-22 05:35:03.028189"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.028117"], ["updated_at", "2020-04-22 05:35:03.028117"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.031121"], ["updated_at", "2020-04-22 05:35:03.031121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.031539"], ["updated_at", "2020-04-22 05:35:03.031539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.032454"], ["updated_at", "2020-04-22 05:35:03.032454"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.033667"], ["updated_at", "2020-04-22 05:35:03.033667"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

CommentTest: test_87



CommentTest: test_36


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.044112"], ["updated_at", "2020-04-22 05:35:03.044112"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.044067"], ["updated_at", "2020-04-22 05:35:03.044067"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.047667"], ["updated_at", "2020-04-22 05:35:03.047667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.048065"], ["updated_at", "2020-04-22 05:35:03.048065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.049342"], ["updated_at", "2020-04-22 05:35:03.049342"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.049482"], ["updated_at", "2020-04-22 05:35:03.049482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_7


 (0.0ms)  begin transaction

CommentTest: test_80


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.058586"], ["updated_at", "2020-04-22 05:35:03.058586"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.058978"], ["updated_at", "2020-04-22 05:35:03.058978"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.060690"], ["updated_at", "2020-04-22 05:35:03.060690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.061263"], ["updated_at", "2020-04-22 05:35:03.061263"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.063503"], ["updated_at", "2020-04-22 05:35:03.063503"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.063137"], ["updated_at", "2020-04-22 05:35:03.063137"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_49



CommentTest: test_58


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.071927"], ["updated_at", "2020-04-22 05:35:03.071927"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.071919"], ["updated_at", "2020-04-22 05:35:03.071919"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.074188"], ["updated_at", "2020-04-22 05:35:03.074188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.074194"], ["updated_at", "2020-04-22 05:35:03.074194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.075479"], ["updated_at", "2020-04-22 05:35:03.075479"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.075453"], ["updated_at", "2020-04-22 05:35:03.075453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_1


 (0.0ms)  begin transaction

CommentTest: test_59


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.081493"], ["updated_at", "2020-04-22 05:35:03.081493"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.081404"], ["updated_at", "2020-04-22 05:35:03.081404"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.083295"], ["updated_at", "2020-04-22 05:35:03.083295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.083287"], ["updated_at", "2020-04-22 05:35:03.083287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.084859"], ["updated_at", "2020-04-22 05:35:03.084859"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.084884"], ["updated_at", "2020-04-22 05:35:03.084884"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_15 CommentTest: test_57



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.092619"], ["updated_at", "2020-04-22 05:35:03.092619"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.092619"], ["updated_at", "2020-04-22 05:35:03.092619"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.095698"], ["updated_at", "2020-04-22 05:35:03.095698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.095444"], ["updated_at", "2020-04-22 05:35:03.095444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.097802"], ["updated_at", "2020-04-22 05:35:03.097802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.099380"], ["updated_at", "2020-04-22 05:35:03.099380"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_30


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.111162"], ["updated_at", "2020-04-22 05:35:03.111162"]]
 (0.1ms)  begin transaction

CommentTest: test_90


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.114012"], ["updated_at", "2020-04-22 05:35:03.114012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.114396"], ["updated_at", "2020-04-22 05:35:03.114396"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.116586"], ["updated_at", "2020-04-22 05:35:03.116586"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.116798"], ["updated_at", "2020-04-22 05:35:03.116798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.120501"], ["updated_at", "2020-04-22 05:35:03.120501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_64


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.126818"], ["updated_at", "2020-04-22 05:35:03.126818"]]
 (0.1ms)  begin transaction

CommentTest: test_10


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.129473"], ["updated_at", "2020-04-22 05:35:03.129473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.131214"], ["updated_at", "2020-04-22 05:35:03.131214"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.130823"], ["updated_at", "2020-04-22 05:35:03.130823"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.132632"], ["updated_at", "2020-04-22 05:35:03.132632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.134399"], ["updated_at", "2020-04-22 05:35:03.134399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_40


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.141114"], ["updated_at", "2020-04-22 05:35:03.141114"]]
 (0.1ms)  begin transaction

CommentTest: test_13


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.143297"], ["updated_at", "2020-04-22 05:35:03.143297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.144761"], ["updated_at", "2020-04-22 05:35:03.144761"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.145697"], ["updated_at", "2020-04-22 05:35:03.145697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.147792"], ["updated_at", "2020-04-22 05:35:03.147792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.149698"], ["updated_at", "2020-04-22 05:35:03.149698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_77


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.155631"], ["updated_at", "2020-04-22 05:35:03.155631"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.157367"], ["updated_at", "2020-04-22 05:35:03.157367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_75


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.159151"], ["updated_at", "2020-04-22 05:35:03.159151"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.159391"], ["updated_at", "2020-04-22 05:35:03.159391"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.162189"], ["updated_at", "2020-04-22 05:35:03.162189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.163845"], ["updated_at", "2020-04-22 05:35:03.163845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_39


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.168075"], ["updated_at", "2020-04-22 05:35:03.168075"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.169805"], ["updated_at", "2020-04-22 05:35:03.169805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.172074"], ["updated_at", "2020-04-22 05:35:03.172074"]]

CommentTest: test_48


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.174818"], ["updated_at", "2020-04-22 05:35:03.174818"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.178122"], ["updated_at", "2020-04-22 05:35:03.178122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.180754"], ["updated_at", "2020-04-22 05:35:03.180754"]]
 (0.2ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_32


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.183248"], ["updated_at", "2020-04-22 05:35:03.183248"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.188208"], ["updated_at", "2020-04-22 05:35:03.188208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_16


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.190026"], ["updated_at", "2020-04-22 05:35:03.190026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.191391"], ["updated_at", "2020-04-22 05:35:03.191391"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.193830"], ["updated_at", "2020-04-22 05:35:03.193830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.196697"], ["updated_at", "2020-04-22 05:35:03.196697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.198941"], ["updated_at", "2020-04-22 05:35:03.198941"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.201696"], ["updated_at", "2020-04-22 05:35:03.201696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.205082"], ["updated_at", "2020-04-22 05:35:03.205082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_78


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.207490"], ["updated_at", "2020-04-22 05:35:03.207490"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.214555"], ["updated_at", "2020-04-22 05:35:03.214555"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.216588"], ["updated_at", "2020-04-22 05:35:03.216588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.217355"], ["updated_at", "2020-04-22 05:35:03.217355"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.219688"], ["updated_at", "2020-04-22 05:35:03.219688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.221227"], ["updated_at", "2020-04-22 05:35:03.221227"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_65


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.225032"], ["updated_at", "2020-04-22 05:35:03.225032"]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_21


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.227917"], ["updated_at", "2020-04-22 05:35:03.227917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.230158"], ["updated_at", "2020-04-22 05:35:03.230158"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.230017"], ["updated_at", "2020-04-22 05:35:03.230017"]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.232368"], ["updated_at", "2020-04-22 05:35:03.232368"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.234241"], ["updated_at", "2020-04-22 05:35:03.234241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_4


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.237260"], ["updated_at", "2020-04-22 05:35:03.237260"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.241348"], ["updated_at", "2020-04-22 05:35:03.241348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_91


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.243373"], ["updated_at", "2020-04-22 05:35:03.243373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.244063"], ["updated_at", "2020-04-22 05:35:03.244063"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.248174"], ["updated_at", "2020-04-22 05:35:03.248174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.251007"], ["updated_at", "2020-04-22 05:35:03.251007"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_69


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.255698"], ["updated_at", "2020-04-22 05:35:03.255698"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.259871"], ["updated_at", "2020-04-22 05:35:03.259871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_9


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.262762"], ["updated_at", "2020-04-22 05:35:03.262762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.265043"], ["updated_at", "2020-04-22 05:35:03.265043"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.267111"], ["updated_at", "2020-04-22 05:35:03.267111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_8


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.271944"], ["updated_at", "2020-04-22 05:35:03.271944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.273461"], ["updated_at", "2020-04-22 05:35:03.273461"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.275857"], ["updated_at", "2020-04-22 05:35:03.275857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.277090"], ["updated_at", "2020-04-22 05:35:03.277090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_68


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.281204"], ["updated_at", "2020-04-22 05:35:03.281204"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.283714"], ["updated_at", "2020-04-22 05:35:03.283714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_31


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.288171"], ["updated_at", "2020-04-22 05:35:03.288171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.289324"], ["updated_at", "2020-04-22 05:35:03.289324"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.290990"], ["updated_at", "2020-04-22 05:35:03.290990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.292332"], ["updated_at", "2020-04-22 05:35:03.292332"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_18


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_71


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.298407"], ["updated_at", "2020-04-22 05:35:03.298407"]]
 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.300366"], ["updated_at", "2020-04-22 05:35:03.300366"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.301199"], ["updated_at", "2020-04-22 05:35:03.301199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.303616"], ["updated_at", "2020-04-22 05:35:03.303616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.305319"], ["updated_at", "2020-04-22 05:35:03.305319"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.303738"], ["updated_at", "2020-04-22 05:35:03.303738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_19


 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_94


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.320973"], ["updated_at", "2020-04-22 05:35:03.320973"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.322851"], ["updated_at", "2020-04-22 05:35:03.322851"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.324066"], ["updated_at", "2020-04-22 05:35:03.324066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.326112"], ["updated_at", "2020-04-22 05:35:03.326112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.326900"], ["updated_at", "2020-04-22 05:35:03.326900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.329163"], ["updated_at", "2020-04-22 05:35:03.329163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_56


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_92


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.340156"], ["updated_at", "2020-04-22 05:35:03.340156"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.341549"], ["updated_at", "2020-04-22 05:35:03.341549"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.342231"], ["updated_at", "2020-04-22 05:35:03.342231"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.344044"], ["updated_at", "2020-04-22 05:35:03.344044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.344889"], ["updated_at", "2020-04-22 05:35:03.344889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.346969"], ["updated_at", "2020-04-22 05:35:03.346969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_81


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_17


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.356956"], ["updated_at", "2020-04-22 05:35:03.356956"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.359902"], ["updated_at", "2020-04-22 05:35:03.359902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.359087"], ["updated_at", "2020-04-22 05:35:03.359087"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.361084"], ["updated_at", "2020-04-22 05:35:03.361084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.362623"], ["updated_at", "2020-04-22 05:35:03.362623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.365022"], ["updated_at", "2020-04-22 05:35:03.365022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_43


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_42

Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.372423"], ["updated_at", "2020-04-22 05:35:03.372423"]]

Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.374448"], ["updated_at", "2020-04-22 05:35:03.374448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.374400"], ["updated_at", "2020-04-22 05:35:03.374400"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.376053"], ["updated_at", "2020-04-22 05:35:03.376053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.377217"], ["updated_at", "2020-04-22 05:35:03.377217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.379448"], ["updated_at", "2020-04-22 05:35:03.379448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_33


 (0.1ms)  begin transaction

CommentTest: test_3


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.389039"], ["updated_at", "2020-04-22 05:35:03.389039"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.389535"], ["updated_at", "2020-04-22 05:35:03.389535"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.391999"], ["updated_at", "2020-04-22 05:35:03.391999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.392432"], ["updated_at", "2020-04-22 05:35:03.392432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.394505"], ["updated_at", "2020-04-22 05:35:03.394505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.394256"], ["updated_at", "2020-04-22 05:35:03.394256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_88


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.410011"], ["updated_at", "2020-04-22 05:35:03.410011"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_50


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.413144"], ["updated_at", "2020-04-22 05:35:03.413144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.415047"], ["updated_at", "2020-04-22 05:35:03.415047"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.415334"], ["updated_at", "2020-04-22 05:35:03.415334"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.421641"], ["updated_at", "2020-04-22 05:35:03.421641"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.423277"], ["updated_at", "2020-04-22 05:35:03.423277"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.427769"], ["updated_at", "2020-04-22 05:35:03.427769"]]
 (0.1ms)  begin transaction

CommentTest: test_100


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.431702"], ["updated_at", "2020-04-22 05:35:03.431702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.433267"], ["updated_at", "2020-04-22 05:35:03.433267"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.432533"], ["updated_at", "2020-04-22 05:35:03.432533"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.437777"], ["updated_at", "2020-04-22 05:35:03.437777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.444684"], ["updated_at", "2020-04-22 05:35:03.444684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_45


 (0.1ms)  begin transaction

CommentTest: test_46


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.455270"], ["updated_at", "2020-04-22 05:35:03.455270"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.455945"], ["updated_at", "2020-04-22 05:35:03.455945"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.457303"], ["updated_at", "2020-04-22 05:35:03.457303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.458580"], ["updated_at", "2020-04-22 05:35:03.458580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.458497"], ["updated_at", "2020-04-22 05:35:03.458497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.459882"], ["updated_at", "2020-04-22 05:35:03.459882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_66


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.468670"], ["updated_at", "2020-04-22 05:35:03.468670"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.471233"], ["updated_at", "2020-04-22 05:35:03.471233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_95


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.474320"], ["updated_at", "2020-04-22 05:35:03.474320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.474411"], ["updated_at", "2020-04-22 05:35:03.474411"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.482249"], ["updated_at", "2020-04-22 05:35:03.482249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.488384"], ["updated_at", "2020-04-22 05:35:03.488384"]]

CommentTest: test_53


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.490462"], ["updated_at", "2020-04-22 05:35:03.490462"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.492877"], ["updated_at", "2020-04-22 05:35:03.492877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_72


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.496114"], ["updated_at", "2020-04-22 05:35:03.496114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.497255"], ["updated_at", "2020-04-22 05:35:03.497255"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.499405"], ["updated_at", "2020-04-22 05:35:03.499405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.502817"], ["updated_at", "2020-04-22 05:35:03.502817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_70


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.506574"], ["updated_at", "2020-04-22 05:35:03.506574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.509545"], ["updated_at", "2020-04-22 05:35:03.509545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.513059"], ["updated_at", "2020-04-22 05:35:03.513059"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.513759"], ["updated_at", "2020-04-22 05:35:03.513759"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.516379"], ["updated_at", "2020-04-22 05:35:03.516379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.518030"], ["updated_at", "2020-04-22 05:35:03.518030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_47


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.521915"], ["updated_at", "2020-04-22 05:35:03.521915"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_51


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.524423"], ["updated_at", "2020-04-22 05:35:03.524423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.527748"], ["updated_at", "2020-04-22 05:35:03.527748"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.526771"], ["updated_at", "2020-04-22 05:35:03.526771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.530665"], ["updated_at", "2020-04-22 05:35:03.530665"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.532098"], ["updated_at", "2020-04-22 05:35:03.532098"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_73


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_11


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.539201"], ["updated_at", "2020-04-22 05:35:03.539201"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.541186"], ["updated_at", "2020-04-22 05:35:03.541186"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.542621"], ["updated_at", "2020-04-22 05:35:03.542621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.543980"], ["updated_at", "2020-04-22 05:35:03.543980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.548005"], ["updated_at", "2020-04-22 05:35:03.548005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.549259"], ["updated_at", "2020-04-22 05:35:03.549259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_89


 (0.1ms)  begin transaction

CommentTest: test_44


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.562724"], ["updated_at", "2020-04-22 05:35:03.562724"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.561794"], ["updated_at", "2020-04-22 05:35:03.561794"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.564339"], ["updated_at", "2020-04-22 05:35:03.564339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.566108"], ["updated_at", "2020-04-22 05:35:03.566108"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.564692"], ["updated_at", "2020-04-22 05:35:03.564692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.570603"], ["updated_at", "2020-04-22 05:35:03.570603"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_5


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.576190"], ["updated_at", "2020-04-22 05:35:03.576190"]]
 (0.1ms)  begin transaction

CommentTest: test_6


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.579362"], ["updated_at", "2020-04-22 05:35:03.579362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.579160"], ["updated_at", "2020-04-22 05:35:03.579160"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.580860"], ["updated_at", "2020-04-22 05:35:03.580860"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.581711"], ["updated_at", "2020-04-22 05:35:03.581711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.583413"], ["updated_at", "2020-04-22 05:35:03.583413"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_84


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.589953"], ["updated_at", "2020-04-22 05:35:03.589953"]]
 (0.1ms)  begin transaction

CommentTest: test_98


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.592287"], ["updated_at", "2020-04-22 05:35:03.592287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.592581"], ["updated_at", "2020-04-22 05:35:03.592581"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.596290"], ["updated_at", "2020-04-22 05:35:03.596290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.597500"], ["updated_at", "2020-04-22 05:35:03.597500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.599458"], ["updated_at", "2020-04-22 05:35:03.599458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_93


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.604023"], ["updated_at", "2020-04-22 05:35:03.604023"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_67


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.607051"], ["updated_at", "2020-04-22 05:35:03.607051"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.608400"], ["updated_at", "2020-04-22 05:35:03.608400"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.608814"], ["updated_at", "2020-04-22 05:35:03.608814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.612935"], ["updated_at", "2020-04-22 05:35:03.612935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.614937"], ["updated_at", "2020-04-22 05:35:03.614937"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_99


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_41


Course Create (20.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.623699"], ["updated_at", "2020-04-22 05:35:03.623699"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.647409"], ["updated_at", "2020-04-22 05:35:03.647409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.647339"], ["updated_at", "2020-04-22 05:35:03.647339"]]
Bucket Create (5.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.650567"], ["updated_at", "2020-04-22 05:35:03.650567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.659729"], ["updated_at", "2020-04-22 05:35:03.659729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.651151"], ["updated_at", "2020-04-22 05:35:03.651151"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_14


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.683928"], ["updated_at", "2020-04-22 05:35:03.683928"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.710491"], ["updated_at", "2020-04-22 05:35:03.710491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_22


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.716151"], ["updated_at", "2020-04-22 05:35:03.716151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.717246"], ["updated_at", "2020-04-22 05:35:03.717246"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.723345"], ["updated_at", "2020-04-22 05:35:03.723345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.725327"], ["updated_at", "2020-04-22 05:35:03.725327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.731916"], ["updated_at", "2020-04-22 05:35:03.731916"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.733753"], ["updated_at", "2020-04-22 05:35:03.733753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
 (0.0ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.737309"], ["updated_at", "2020-04-22 05:35:03.737309"]]

CommentTest: test_96


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.739169"], ["updated_at", "2020-04-22 05:35:03.739169"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.741061"], ["updated_at", "2020-04-22 05:35:03.741061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.742720"], ["updated_at", "2020-04-22 05:35:03.742720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  begin transaction

CommentTest: test_26


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.752032"], ["updated_at", "2020-04-22 05:35:03.752032"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.754799"], ["updated_at", "2020-04-22 05:35:03.754799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.756798"], ["updated_at", "2020-04-22 05:35:03.756798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (15.9ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_12


 (20.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_validity


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.797518"], ["updated_at", "2020-04-22 05:35:03.797518"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.800088"], ["updated_at", "2020-04-22 05:35:03.800088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.799612"], ["updated_at", "2020-04-22 05:35:03.799612"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.804659"], ["updated_at", "2020-04-22 05:35:03.804659"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.804782"], ["updated_at", "2020-04-22 05:35:03.804782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.807410"], ["updated_at", "2020-04-22 05:35:03.807410"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_20


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.819160"], ["updated_at", "2020-04-22 05:35:03.819160"]]
 (0.2ms)  begin transaction

CommentTest: test_54


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.822209"], ["updated_at", "2020-04-22 05:35:03.822209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.822155"], ["updated_at", "2020-04-22 05:35:03.822155"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.824036"], ["updated_at", "2020-04-22 05:35:03.824036"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.824589"], ["updated_at", "2020-04-22 05:35:03.824589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.826442"], ["updated_at", "2020-04-22 05:35:03.826442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_83


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.836252"], ["updated_at", "2020-04-22 05:35:03.836252"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.839030"], ["updated_at", "2020-04-22 05:35:03.839030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_86


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.841123"], ["updated_at", "2020-04-22 05:35:03.841123"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.841512"], ["updated_at", "2020-04-22 05:35:03.841512"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.844028"], ["updated_at", "2020-04-22 05:35:03.844028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.847608"], ["updated_at", "2020-04-22 05:35:03.847608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.852103"], ["updated_at", "2020-04-22 05:35:03.852103"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.854881"], ["updated_at", "2020-04-22 05:35:03.854881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.857303"], ["updated_at", "2020-04-22 05:35:03.857303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_85


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.876291"], ["updated_at", "2020-04-22 05:35:03.876291"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.882127"], ["updated_at", "2020-04-22 05:35:03.882127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_82


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.888064"], ["updated_at", "2020-04-22 05:35:03.888064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.888218"], ["updated_at", "2020-04-22 05:35:03.888218"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.891856"], ["updated_at", "2020-04-22 05:35:03.891856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.893943"], ["updated_at", "2020-04-22 05:35:03.893943"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_35


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.899744"], ["updated_at", "2020-04-22 05:35:03.899744"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.904942"], ["updated_at", "2020-04-22 05:35:03.904942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.906802"], ["updated_at", "2020-04-22 05:35:03.906802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_60


 (0.1ms)  begin transaction

CommentTest: test_38


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.916074"], ["updated_at", "2020-04-22 05:35:03.916074"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.916699"], ["updated_at", "2020-04-22 05:35:03.916699"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.919523"], ["updated_at", "2020-04-22 05:35:03.919523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.918910"], ["updated_at", "2020-04-22 05:35:03.918910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.921741"], ["updated_at", "2020-04-22 05:35:03.921741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.921838"], ["updated_at", "2020-04-22 05:35:03.921838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (19.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_74


 (0.1ms)  begin transaction

CommentTest: test_23


 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.955624"], ["updated_at", "2020-04-22 05:35:03.955624"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.953745"], ["updated_at", "2020-04-22 05:35:03.953745"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.959329"], ["updated_at", "2020-04-22 05:35:03.959329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.960571"], ["updated_at", "2020-04-22 05:35:03.960571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.963282"], ["updated_at", "2020-04-22 05:35:03.963282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.964049"], ["updated_at", "2020-04-22 05:35:03.964049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_27


 (0.1ms)  begin transaction

CommentTest: test_55


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.975450"], ["updated_at", "2020-04-22 05:35:03.975450"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.975957"], ["updated_at", "2020-04-22 05:35:03.975957"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.977736"], ["updated_at", "2020-04-22 05:35:03.977736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.978261"], ["updated_at", "2020-04-22 05:35:03.978261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.979920"], ["updated_at", "2020-04-22 05:35:03.979920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.980143"], ["updated_at", "2020-04-22 05:35:03.980143"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_37

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.989235"], ["updated_at", "2020-04-22 05:35:03.989235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.991918"], ["updated_at", "2020-04-22 05:35:03.991918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_2


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.994050"], ["updated_at", "2020-04-22 05:35:03.994050"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:03.993961"], ["updated_at", "2020-04-22 05:35:03.993961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:03.996298"], ["updated_at", "2020-04-22 05:35:03.996298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:03.997943"], ["updated_at", "2020-04-22 05:35:03.997943"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  begin transaction

CommentTest: test_76


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.003731"], ["updated_at", "2020-04-22 05:35:04.003731"]]
 (0.1ms)  begin transaction

CommentTest: test_34


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.007712"], ["updated_at", "2020-04-22 05:35:04.007712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.008176"], ["updated_at", "2020-04-22 05:35:04.008176"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.009525"], ["updated_at", "2020-04-22 05:35:04.009525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.010709"], ["updated_at", "2020-04-22 05:35:04.010709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.012891"], ["updated_at", "2020-04-22 05:35:04.012891"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_79


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.017019"], ["updated_at", "2020-04-22 05:35:04.017019"]]
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.021477"], ["updated_at", "2020-04-22 05:35:04.021477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_28


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.024280"], ["updated_at", "2020-04-22 05:35:04.024280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.025999"], ["updated_at", "2020-04-22 05:35:04.025999"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.029932"], ["updated_at", "2020-04-22 05:35:04.029932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.032262"], ["updated_at", "2020-04-22 05:35:04.032262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_29


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.038998"], ["updated_at", "2020-04-22 05:35:04.038998"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.042745"], ["updated_at", "2020-04-22 05:35:04.042745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.044195"], ["updated_at", "2020-04-22 05:35:04.044195"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_52


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.074703"], ["updated_at", "2020-04-22 05:35:04.074703"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.077211"], ["updated_at", "2020-04-22 05:35:04.077211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.080671"], ["updated_at", "2020-04-22 05:35:04.080671"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_24


 (1.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.084058"], ["updated_at", "2020-04-22 05:35:04.084058"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.089211"], ["updated_at", "2020-04-22 05:35:04.089211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_97


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.091905"], ["updated_at", "2020-04-22 05:35:04.091905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:04.093059"], ["updated_at", "2020-04-22 05:35:04.093059"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:04.096120"], ["updated_at", "2020-04-22 05:35:04.096120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:04.098430"], ["updated_at", "2020-04-22 05:35:04.098430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (19.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
Truncate Tables (20.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  begin transaction
Fixtures Load (1.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:35:34.381865', '2020-04-22 05:35:34.381865'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:35:34.381865', '2020-04-22 05:35:34.381865'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:35:34.387761', '2020-04-22 05:35:34.387761', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:35:34.387761', '2020-04-22 05:35:34.387761', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:35:34.389966', '2020-04-22 05:35:34.389966'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:34.389966', '2020-04-22 05:35:34.389966'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:34.393009', '2020-04-22 05:35:34.393009'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:34.393009', '2020-04-22 05:35:34.393009'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:35:34.395852', '2020-04-22 05:35:34.395852'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:35:34.395852', '2020-04-22 05:35:34.395852'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:35:34.398176', '2020-04-22 05:35:34.398176'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:35:34.398176', '2020-04-22 05:35:34.398176'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:35:34.399889', '2020-04-22 05:35:34.399889'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:34.399889', '2020-04-22 05:35:34.399889')

Fixtures Load (5.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:35:34.382422', '2020-04-22 05:35:34.382422'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:35:34.382422', '2020-04-22 05:35:34.382422'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:35:34.388018', '2020-04-22 05:35:34.388018', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:35:34.388018', '2020-04-22 05:35:34.388018', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:35:34.389966', '2020-04-22 05:35:34.389966'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:34.389966', '2020-04-22 05:35:34.389966'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:34.393009', '2020-04-22 05:35:34.393009'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:35:34.393009', '2020-04-22 05:35:34.393009'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:35:34.395751', '2020-04-22 05:35:34.395751'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:35:34.395751', '2020-04-22 05:35:34.395751'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:35:34.397471', '2020-04-22 05:35:34.397471'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:35:34.397471', '2020-04-22 05:35:34.397471'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:35:34.398691', '2020-04-22 05:35:34.398691'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:35:34.398691', '2020-04-22 05:35:34.398691')

 (1.8ms)  commit transaction
 (2.0ms)  commit transaction
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  PRAGMA foreign_keys = 1
 (0.0ms)  begin transaction
 (0.0ms)  begin transaction

CommentTest: test_255785



CommentTest: test_488378


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:34.434076"], ["updated_at", "2020-04-22 05:35:34.434076"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:34.442337"], ["updated_at", "2020-04-22 05:35:34.442337"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:34.472530"], ["updated_at", "2020-04-22 05:35:34.472530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:34.474758"], ["updated_at", "2020-04-22 05:35:34.474758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:34.497000"], ["updated_at", "2020-04-22 05:35:34.497000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:34.497832"], ["updated_at", "2020-04-22 05:35:34.497832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_861309


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:34.820574"], ["updated_at", "2020-04-22 05:35:34.820574"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:34.822725"], ["updated_at", "2020-04-22 05:35:34.822725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:34.824165"], ["updated_at", "2020-04-22 05:35:34.824165"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_643099


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:35.867090"], ["updated_at", "2020-04-22 05:35:35.867090"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:35.870492"], ["updated_at", "2020-04-22 05:35:35.870492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:35.872888"], ["updated_at", "2020-04-22 05:35:35.872888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (8.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_913480


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:36.947335"], ["updated_at", "2020-04-22 05:35:36.947335"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:36.949143"], ["updated_at", "2020-04-22 05:35:36.949143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:36.950280"], ["updated_at", "2020-04-22 05:35:36.950280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (8.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_930127


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:36.968005"], ["updated_at", "2020-04-22 05:35:36.968005"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:36.970610"], ["updated_at", "2020-04-22 05:35:36.970610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:36.971877"], ["updated_at", "2020-04-22 05:35:36.971877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_880401


 (0.1ms)  begin transaction

CommentTest: test_515505


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.122587"], ["updated_at", "2020-04-22 05:35:37.122587"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.124140"], ["updated_at", "2020-04-22 05:35:37.124140"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.126006"], ["updated_at", "2020-04-22 05:35:37.126006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.127100"], ["updated_at", "2020-04-22 05:35:37.127100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.127883"], ["updated_at", "2020-04-22 05:35:37.127883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.128994"], ["updated_at", "2020-04-22 05:35:37.128994"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_923438


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_483942


Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.137345"], ["updated_at", "2020-04-22 05:35:37.137345"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.141649"], ["updated_at", "2020-04-22 05:35:37.141649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.140720"], ["updated_at", "2020-04-22 05:35:37.140720"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.144126"], ["updated_at", "2020-04-22 05:35:37.144126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.144035"], ["updated_at", "2020-04-22 05:35:37.144035"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.145673"], ["updated_at", "2020-04-22 05:35:37.145673"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.5ms)  rollback transaction

CommentTest: test_892791


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_621064


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.150497"], ["updated_at", "2020-04-22 05:35:37.150497"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.151895"], ["updated_at", "2020-04-22 05:35:37.151895"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.152988"], ["updated_at", "2020-04-22 05:35:37.152988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.156659"], ["updated_at", "2020-04-22 05:35:37.156659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.157809"], ["updated_at", "2020-04-22 05:35:37.157809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.158874"], ["updated_at", "2020-04-22 05:35:37.158874"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_682737


 (0.1ms)  SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.166586"], ["updated_at", "2020-04-22 05:35:37.166586"]]
 (0.1ms)  begin transaction

CommentTest: test_385757


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.171509"], ["updated_at", "2020-04-22 05:35:37.171509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.173083"], ["updated_at", "2020-04-22 05:35:37.173083"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.172630"], ["updated_at", "2020-04-22 05:35:37.172630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.175534"], ["updated_at", "2020-04-22 05:35:37.175534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.177662"], ["updated_at", "2020-04-22 05:35:37.177662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_402382


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.182821"], ["updated_at", "2020-04-22 05:35:37.182821"]]
 (0.1ms)  begin transaction

CommentTest: test_697666


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.185131"], ["updated_at", "2020-04-22 05:35:37.185131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.187262"], ["updated_at", "2020-04-22 05:35:37.187262"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.186763"], ["updated_at", "2020-04-22 05:35:37.186763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.189257"], ["updated_at", "2020-04-22 05:35:37.189257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.191774"], ["updated_at", "2020-04-22 05:35:37.191774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_407587


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.196560"], ["updated_at", "2020-04-22 05:35:37.196560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.199142"], ["updated_at", "2020-04-22 05:35:37.199142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_674655


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.201750"], ["updated_at", "2020-04-22 05:35:37.201750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.201877"], ["updated_at", "2020-04-22 05:35:37.201877"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.207725"], ["updated_at", "2020-04-22 05:35:37.207725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_854657


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.215867"], ["updated_at", "2020-04-22 05:35:37.215867"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.217174"], ["updated_at", "2020-04-22 05:35:37.217174"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.222486"], ["updated_at", "2020-04-22 05:35:37.222486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.223985"], ["updated_at", "2020-04-22 05:35:37.223985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_594283


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.227448"], ["updated_at", "2020-04-22 05:35:37.227448"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.230443"], ["updated_at", "2020-04-22 05:35:37.230443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_5502


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.232300"], ["updated_at", "2020-04-22 05:35:37.232300"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.233155"], ["updated_at", "2020-04-22 05:35:37.233155"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.235377"], ["updated_at", "2020-04-22 05:35:37.235377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.239687"], ["updated_at", "2020-04-22 05:35:37.239687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_695043


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.241796"], ["updated_at", "2020-04-22 05:35:37.241796"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.244545"], ["updated_at", "2020-04-22 05:35:37.244545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_506066


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.246817"], ["updated_at", "2020-04-22 05:35:37.246817"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.248017"], ["updated_at", "2020-04-22 05:35:37.248017"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.250040"], ["updated_at", "2020-04-22 05:35:37.250040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.251645"], ["updated_at", "2020-04-22 05:35:37.251645"]]
 (0.1ms)  begin transaction

CommentTest: test_57141


 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.253199"], ["updated_at", "2020-04-22 05:35:37.253199"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.255357"], ["updated_at", "2020-04-22 05:35:37.255357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.257809"], ["updated_at", "2020-04-22 05:35:37.257809"]]

CommentTest: test_891959


 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.259287"], ["updated_at", "2020-04-22 05:35:37.259287"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.261196"], ["updated_at", "2020-04-22 05:35:37.261196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.262562"], ["updated_at", "2020-04-22 05:35:37.262562"]]
 (0.0ms)  begin transaction

CommentTest: test_631593


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.264101"], ["updated_at", "2020-04-22 05:35:37.264101"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.266072"], ["updated_at", "2020-04-22 05:35:37.266072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.267632"], ["updated_at", "2020-04-22 05:35:37.267632"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_76573


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.270656"], ["updated_at", "2020-04-22 05:35:37.270656"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.272786"], ["updated_at", "2020-04-22 05:35:37.272786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.274739"], ["updated_at", "2020-04-22 05:35:37.274739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_185200


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.278322"], ["updated_at", "2020-04-22 05:35:37.278322"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.281268"], ["updated_at", "2020-04-22 05:35:37.281268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_419505


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.282998"], ["updated_at", "2020-04-22 05:35:37.282998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.284647"], ["updated_at", "2020-04-22 05:35:37.284647"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.289040"], ["updated_at", "2020-04-22 05:35:37.289040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.292001"], ["updated_at", "2020-04-22 05:35:37.292001"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_299686


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.294747"], ["updated_at", "2020-04-22 05:35:37.294747"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.296625"], ["updated_at", "2020-04-22 05:35:37.296625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_146908


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.298118"], ["updated_at", "2020-04-22 05:35:37.298118"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.298612"], ["updated_at", "2020-04-22 05:35:37.298612"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.300553"], ["updated_at", "2020-04-22 05:35:37.300553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.303077"], ["updated_at", "2020-04-22 05:35:37.303077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_746780


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.307815"], ["updated_at", "2020-04-22 05:35:37.307815"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.310570"], ["updated_at", "2020-04-22 05:35:37.310570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_897391


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.312167"], ["updated_at", "2020-04-22 05:35:37.312167"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.312918"], ["updated_at", "2020-04-22 05:35:37.312918"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.314955"], ["updated_at", "2020-04-22 05:35:37.314955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.316198"], ["updated_at", "2020-04-22 05:35:37.316198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_682042


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.318416"], ["updated_at", "2020-04-22 05:35:37.318416"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.322647"], ["updated_at", "2020-04-22 05:35:37.322647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_502901


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.324162"], ["updated_at", "2020-04-22 05:35:37.324162"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.324982"], ["updated_at", "2020-04-22 05:35:37.324982"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.326788"], ["updated_at", "2020-04-22 05:35:37.326788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.328697"], ["updated_at", "2020-04-22 05:35:37.328697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_897158


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.332283"], ["updated_at", "2020-04-22 05:35:37.332283"]]
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.334089"], ["updated_at", "2020-04-22 05:35:37.334089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_369093


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.336181"], ["updated_at", "2020-04-22 05:35:37.336181"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.336164"], ["updated_at", "2020-04-22 05:35:37.336164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.338424"], ["updated_at", "2020-04-22 05:35:37.338424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.341074"], ["updated_at", "2020-04-22 05:35:37.341074"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_886207


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.344247"], ["updated_at", "2020-04-22 05:35:37.344247"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_966227


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.346167"], ["updated_at", "2020-04-22 05:35:37.346167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.347792"], ["updated_at", "2020-04-22 05:35:37.347792"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.348286"], ["updated_at", "2020-04-22 05:35:37.348286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.349645"], ["updated_at", "2020-04-22 05:35:37.349645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.352768"], ["updated_at", "2020-04-22 05:35:37.352768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_902857


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.358750"], ["updated_at", "2020-04-22 05:35:37.358750"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.362486"], ["updated_at", "2020-04-22 05:35:37.362486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.364660"], ["updated_at", "2020-04-22 05:35:37.364660"]]
 (0.1ms)  begin transaction

CommentTest: test_836943

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.367538"], ["updated_at", "2020-04-22 05:35:37.367538"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.372259"], ["updated_at", "2020-04-22 05:35:37.372259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.375488"], ["updated_at", "2020-04-22 05:35:37.375488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_353685


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.378977"], ["updated_at", "2020-04-22 05:35:37.378977"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.381962"], ["updated_at", "2020-04-22 05:35:37.381962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_868040


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.383834"], ["updated_at", "2020-04-22 05:35:37.383834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.384630"], ["updated_at", "2020-04-22 05:35:37.384630"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.389316"], ["updated_at", "2020-04-22 05:35:37.389316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.391575"], ["updated_at", "2020-04-22 05:35:37.391575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_44324


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.395367"], ["updated_at", "2020-04-22 05:35:37.395367"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.397444"], ["updated_at", "2020-04-22 05:35:37.397444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.399096"], ["updated_at", "2020-04-22 05:35:37.399096"]]
 (0.1ms)  begin transaction

 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_501781


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.400938"], ["updated_at", "2020-04-22 05:35:37.400938"]]
 (0.1ms)  begin transaction

CommentTest: test_28118


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.406346"], ["updated_at", "2020-04-22 05:35:37.406346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.409083"], ["updated_at", "2020-04-22 05:35:37.409083"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.408019"], ["updated_at", "2020-04-22 05:35:37.408019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.411154"], ["updated_at", "2020-04-22 05:35:37.411154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.412924"], ["updated_at", "2020-04-22 05:35:37.412924"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_865669


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.417648"], ["updated_at", "2020-04-22 05:35:37.417648"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.420776"], ["updated_at", "2020-04-22 05:35:37.420776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_72114


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.422790"], ["updated_at", "2020-04-22 05:35:37.422790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.424376"], ["updated_at", "2020-04-22 05:35:37.424376"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.427107"], ["updated_at", "2020-04-22 05:35:37.427107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.430052"], ["updated_at", "2020-04-22 05:35:37.430052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_378606

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.433966"], ["updated_at", "2020-04-22 05:35:37.433966"]]
 (0.1ms)  begin transaction

CommentTest: test_371736


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.439618"], ["updated_at", "2020-04-22 05:35:37.439618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.442286"], ["updated_at", "2020-04-22 05:35:37.442286"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.441719"], ["updated_at", "2020-04-22 05:35:37.441719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.444531"], ["updated_at", "2020-04-22 05:35:37.444531"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.446646"], ["updated_at", "2020-04-22 05:35:37.446646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_439367


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.449831"], ["updated_at", "2020-04-22 05:35:37.449831"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.452676"], ["updated_at", "2020-04-22 05:35:37.452676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.457350"], ["updated_at", "2020-04-22 05:35:37.457350"]]
 (0.1ms)  begin transaction

CommentTest: test_605661


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.459119"], ["updated_at", "2020-04-22 05:35:37.459119"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.462137"], ["updated_at", "2020-04-22 05:35:37.462137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.464038"], ["updated_at", "2020-04-22 05:35:37.464038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_741241


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.468332"], ["updated_at", "2020-04-22 05:35:37.468332"]]
 (0.1ms)  begin transaction

CommentTest: test_700085


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.472901"], ["updated_at", "2020-04-22 05:35:37.472901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.474917"], ["updated_at", "2020-04-22 05:35:37.474917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.474406"], ["updated_at", "2020-04-22 05:35:37.474406"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.478224"], ["updated_at", "2020-04-22 05:35:37.478224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.480584"], ["updated_at", "2020-04-22 05:35:37.480584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_203648


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.483311"], ["updated_at", "2020-04-22 05:35:37.483311"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.485378"], ["updated_at", "2020-04-22 05:35:37.485378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_113536


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.488472"], ["updated_at", "2020-04-22 05:35:37.488472"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.489850"], ["updated_at", "2020-04-22 05:35:37.489850"]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.492222"], ["updated_at", "2020-04-22 05:35:37.492222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_426101


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.497880"], ["updated_at", "2020-04-22 05:35:37.497880"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.500791"], ["updated_at", "2020-04-22 05:35:37.500791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.496247"], ["updated_at", "2020-04-22 05:35:37.496247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.503666"], ["updated_at", "2020-04-22 05:35:37.503666"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811899


 (0.1ms)  begin transaction

CommentTest: test_159754


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.515744"], ["updated_at", "2020-04-22 05:35:37.515744"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.516790"], ["updated_at", "2020-04-22 05:35:37.516790"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.518189"], ["updated_at", "2020-04-22 05:35:37.518189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.520685"], ["updated_at", "2020-04-22 05:35:37.520685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.523142"], ["updated_at", "2020-04-22 05:35:37.523142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.523955"], ["updated_at", "2020-04-22 05:35:37.523955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.0ms)  begin transaction

CommentTest: test_779159



CommentTest: test_23840


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.533361"], ["updated_at", "2020-04-22 05:35:37.533361"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.533259"], ["updated_at", "2020-04-22 05:35:37.533259"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.535802"], ["updated_at", "2020-04-22 05:35:37.535802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.535685"], ["updated_at", "2020-04-22 05:35:37.535685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.539461"], ["updated_at", "2020-04-22 05:35:37.539461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.539893"], ["updated_at", "2020-04-22 05:35:37.539893"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_181928


 (0.1ms)  begin transaction

CommentTest: test_42166


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.548554"], ["updated_at", "2020-04-22 05:35:37.548554"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.549955"], ["updated_at", "2020-04-22 05:35:37.549955"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.551103"], ["updated_at", "2020-04-22 05:35:37.551103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.552880"], ["updated_at", "2020-04-22 05:35:37.552880"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.552487"], ["updated_at", "2020-04-22 05:35:37.552487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.554531"], ["updated_at", "2020-04-22 05:35:37.554531"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_741014


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.559882"], ["updated_at", "2020-04-22 05:35:37.559882"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.562742"], ["updated_at", "2020-04-22 05:35:37.562742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_728605


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.564642"], ["updated_at", "2020-04-22 05:35:37.564642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.565856"], ["updated_at", "2020-04-22 05:35:37.565856"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.571037"], ["updated_at", "2020-04-22 05:35:37.571037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.573276"], ["updated_at", "2020-04-22 05:35:37.573276"]]
 (0.1ms)  begin transaction

CommentTest: test_27977


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.575599"], ["updated_at", "2020-04-22 05:35:37.575599"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.578833"], ["updated_at", "2020-04-22 05:35:37.578833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_608997


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.582069"], ["updated_at", "2020-04-22 05:35:37.582069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.584933"], ["updated_at", "2020-04-22 05:35:37.584933"]]
 (0.1ms)  begin transaction

CommentTest: test_384729


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.591961"], ["updated_at", "2020-04-22 05:35:37.591961"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.593071"], ["updated_at", "2020-04-22 05:35:37.593071"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.594169"], ["updated_at", "2020-04-22 05:35:37.594169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.596043"], ["updated_at", "2020-04-22 05:35:37.596043"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.597946"], ["updated_at", "2020-04-22 05:35:37.597946"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_52752


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_264514

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.603114"], ["updated_at", "2020-04-22 05:35:37.603114"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.610767"], ["updated_at", "2020-04-22 05:35:37.610767"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.611543"], ["updated_at", "2020-04-22 05:35:37.611543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.613756"], ["updated_at", "2020-04-22 05:35:37.613756"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.613445"], ["updated_at", "2020-04-22 05:35:37.613445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.615512"], ["updated_at", "2020-04-22 05:35:37.615512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_587930


 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_659178


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.624995"], ["updated_at", "2020-04-22 05:35:37.624995"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.626647"], ["updated_at", "2020-04-22 05:35:37.626647"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.628067"], ["updated_at", "2020-04-22 05:35:37.628067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.629487"], ["updated_at", "2020-04-22 05:35:37.629487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.630224"], ["updated_at", "2020-04-22 05:35:37.630224"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.631553"], ["updated_at", "2020-04-22 05:35:37.631553"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_804691



CommentTest: test_358702


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.638445"], ["updated_at", "2020-04-22 05:35:37.638445"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.638597"], ["updated_at", "2020-04-22 05:35:37.638597"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.641733"], ["updated_at", "2020-04-22 05:35:37.641733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.642462"], ["updated_at", "2020-04-22 05:35:37.642462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.643783"], ["updated_at", "2020-04-22 05:35:37.643783"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.643612"], ["updated_at", "2020-04-22 05:35:37.643612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_6282


 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.656771"], ["updated_at", "2020-04-22 05:35:37.656771"]]
 (0.1ms)  begin transaction

CommentTest: test_181705


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.659682"], ["updated_at", "2020-04-22 05:35:37.659682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.661383"], ["updated_at", "2020-04-22 05:35:37.661383"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.663069"], ["updated_at", "2020-04-22 05:35:37.663069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.665258"], ["updated_at", "2020-04-22 05:35:37.665258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_569958


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.671921"], ["updated_at", "2020-04-22 05:35:37.671921"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.679624"], ["updated_at", "2020-04-22 05:35:37.679624"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.682628"], ["updated_at", "2020-04-22 05:35:37.682628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.684481"], ["updated_at", "2020-04-22 05:35:37.684481"]]
 (3.5ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_470732


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.693117"], ["updated_at", "2020-04-22 05:35:37.693117"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.695974"], ["updated_at", "2020-04-22 05:35:37.695974"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_395640


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.697689"], ["updated_at", "2020-04-22 05:35:37.697689"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.697669"], ["updated_at", "2020-04-22 05:35:37.697669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.699453"], ["updated_at", "2020-04-22 05:35:37.699453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.700722"], ["updated_at", "2020-04-22 05:35:37.700722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_832165


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_555532


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.709426"], ["updated_at", "2020-04-22 05:35:37.709426"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.712000"], ["updated_at", "2020-04-22 05:35:37.712000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.711418"], ["updated_at", "2020-04-22 05:35:37.711418"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.714121"], ["updated_at", "2020-04-22 05:35:37.714121"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.714271"], ["updated_at", "2020-04-22 05:35:37.714271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.716204"], ["updated_at", "2020-04-22 05:35:37.716204"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_998751


Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_841856


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.721406"], ["updated_at", "2020-04-22 05:35:37.721406"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.725536"], ["updated_at", "2020-04-22 05:35:37.725536"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.726989"], ["updated_at", "2020-04-22 05:35:37.726989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.728908"], ["updated_at", "2020-04-22 05:35:37.728908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.730066"], ["updated_at", "2020-04-22 05:35:37.730066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.731217"], ["updated_at", "2020-04-22 05:35:37.731217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_806712


 (0.1ms)  begin transaction

CommentTest: test_25940


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.744140"], ["updated_at", "2020-04-22 05:35:37.744140"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.743908"], ["updated_at", "2020-04-22 05:35:37.743908"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.747439"], ["updated_at", "2020-04-22 05:35:37.747439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.747158"], ["updated_at", "2020-04-22 05:35:37.747158"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.748948"], ["updated_at", "2020-04-22 05:35:37.748948"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.749224"], ["updated_at", "2020-04-22 05:35:37.749224"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_837078


 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.759322"], ["updated_at", "2020-04-22 05:35:37.759322"]]
 (0.1ms)  begin transaction

CommentTest: test_621122


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.767351"], ["updated_at", "2020-04-22 05:35:37.767351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.768779"], ["updated_at", "2020-04-22 05:35:37.768779"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.771735"], ["updated_at", "2020-04-22 05:35:37.771735"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.773839"], ["updated_at", "2020-04-22 05:35:37.773839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.776295"], ["updated_at", "2020-04-22 05:35:37.776295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_504236


 (1.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.780536"], ["updated_at", "2020-04-22 05:35:37.780536"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.797098"], ["updated_at", "2020-04-22 05:35:37.797098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.800389"], ["updated_at", "2020-04-22 05:35:37.800389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_216233


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.803487"], ["updated_at", "2020-04-22 05:35:37.803487"]]
 (0.1ms)  begin transaction

CommentTest: test_596665


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.809859"], ["updated_at", "2020-04-22 05:35:37.809859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.811777"], ["updated_at", "2020-04-22 05:35:37.811777"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.813476"], ["updated_at", "2020-04-22 05:35:37.813476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.815503"], ["updated_at", "2020-04-22 05:35:37.815503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.817822"], ["updated_at", "2020-04-22 05:35:37.817822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (1.0ms)  begin transaction

CommentTest: test_301078


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_548382


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.827695"], ["updated_at", "2020-04-22 05:35:37.827695"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.829344"], ["updated_at", "2020-04-22 05:35:37.829344"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.830330"], ["updated_at", "2020-04-22 05:35:37.830330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.831918"], ["updated_at", "2020-04-22 05:35:37.831918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.832305"], ["updated_at", "2020-04-22 05:35:37.832305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.833122"], ["updated_at", "2020-04-22 05:35:37.833122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_323096


 (0.1ms)  begin transaction

CommentTest: test_104629


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.846106"], ["updated_at", "2020-04-22 05:35:37.846106"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.846650"], ["updated_at", "2020-04-22 05:35:37.846650"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.848010"], ["updated_at", "2020-04-22 05:35:37.848010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.849399"], ["updated_at", "2020-04-22 05:35:37.849399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.850005"], ["updated_at", "2020-04-22 05:35:37.850005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.850790"], ["updated_at", "2020-04-22 05:35:37.850790"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_867929


 (0.1ms)  begin transaction

CommentTest: test_36979


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.861761"], ["updated_at", "2020-04-22 05:35:37.861761"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.863320"], ["updated_at", "2020-04-22 05:35:37.863320"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.864741"], ["updated_at", "2020-04-22 05:35:37.864741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.865628"], ["updated_at", "2020-04-22 05:35:37.865628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.866905"], ["updated_at", "2020-04-22 05:35:37.866905"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.866639"], ["updated_at", "2020-04-22 05:35:37.866639"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_511798


 (0.1ms)  begin transaction

CommentTest: test_189150


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.877432"], ["updated_at", "2020-04-22 05:35:37.877432"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.878808"], ["updated_at", "2020-04-22 05:35:37.878808"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.881725"], ["updated_at", "2020-04-22 05:35:37.881725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.882842"], ["updated_at", "2020-04-22 05:35:37.882842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.884079"], ["updated_at", "2020-04-22 05:35:37.884079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.886279"], ["updated_at", "2020-04-22 05:35:37.886279"]]
 (0.4ms)  SAVEPOINT active_record_1
 (2.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618024


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.898027"], ["updated_at", "2020-04-22 05:35:37.898027"]]
 (0.1ms)  begin transaction

CommentTest: test_978016


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.900425"], ["updated_at", "2020-04-22 05:35:37.900425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (7.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.908005"], ["updated_at", "2020-04-22 05:35:37.908005"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.901225"], ["updated_at", "2020-04-22 05:35:37.901225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.910997"], ["updated_at", "2020-04-22 05:35:37.910997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.913194"], ["updated_at", "2020-04-22 05:35:37.913194"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_544421


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.916966"], ["updated_at", "2020-04-22 05:35:37.916966"]]
 (0.1ms)  begin transaction

CommentTest: test_105720


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.921503"], ["updated_at", "2020-04-22 05:35:37.921503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.923476"], ["updated_at", "2020-04-22 05:35:37.923476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.923013"], ["updated_at", "2020-04-22 05:35:37.923013"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.928768"], ["updated_at", "2020-04-22 05:35:37.928768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.930404"], ["updated_at", "2020-04-22 05:35:37.930404"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_193846


 (0.1ms)  begin transaction

CommentTest: test_631363


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.938181"], ["updated_at", "2020-04-22 05:35:37.938181"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.937959"], ["updated_at", "2020-04-22 05:35:37.937959"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.941774"], ["updated_at", "2020-04-22 05:35:37.941774"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.942772"], ["updated_at", "2020-04-22 05:35:37.942772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.943886"], ["updated_at", "2020-04-22 05:35:37.943886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.944791"], ["updated_at", "2020-04-22 05:35:37.944791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_305671


 (1.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_105576


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.951923"], ["updated_at", "2020-04-22 05:35:37.951923"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.955522"], ["updated_at", "2020-04-22 05:35:37.955522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.955045"], ["updated_at", "2020-04-22 05:35:37.955045"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.957910"], ["updated_at", "2020-04-22 05:35:37.957910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.959306"], ["updated_at", "2020-04-22 05:35:37.959306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811743


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.964955"], ["updated_at", "2020-04-22 05:35:37.964955"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.967102"], ["updated_at", "2020-04-22 05:35:37.967102"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.970477"], ["updated_at", "2020-04-22 05:35:37.970477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.972968"], ["updated_at", "2020-04-22 05:35:37.972968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_485937


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.979113"], ["updated_at", "2020-04-22 05:35:37.979113"]]
 (0.0ms)  begin transaction

CommentTest: test_58206


 (0.0ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.981700"], ["updated_at", "2020-04-22 05:35:37.981700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.982358"], ["updated_at", "2020-04-22 05:35:37.982358"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.983976"], ["updated_at", "2020-04-22 05:35:37.983976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.983536"], ["updated_at", "2020-04-22 05:35:37.983536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.985531"], ["updated_at", "2020-04-22 05:35:37.985531"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_20688


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_482516


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.994952"], ["updated_at", "2020-04-22 05:35:37.994952"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.998023"], ["updated_at", "2020-04-22 05:35:37.998023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:37.997357"], ["updated_at", "2020-04-22 05:35:37.997357"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:37.999788"], ["updated_at", "2020-04-22 05:35:37.999788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:37.999840"], ["updated_at", "2020-04-22 05:35:37.999840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.001757"], ["updated_at", "2020-04-22 05:35:38.001757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_517317



CommentTest: test_5490


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.013237"], ["updated_at", "2020-04-22 05:35:38.013237"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.013548"], ["updated_at", "2020-04-22 05:35:38.013548"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.015632"], ["updated_at", "2020-04-22 05:35:38.015632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.015587"], ["updated_at", "2020-04-22 05:35:38.015587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.017417"], ["updated_at", "2020-04-22 05:35:38.017417"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.017451"], ["updated_at", "2020-04-22 05:35:38.017451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_561811


 (0.1ms)  begin transaction

CommentTest: test_943733


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.025690"], ["updated_at", "2020-04-22 05:35:38.025690"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.025903"], ["updated_at", "2020-04-22 05:35:38.025903"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.027878"], ["updated_at", "2020-04-22 05:35:38.027878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.028219"], ["updated_at", "2020-04-22 05:35:38.028219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.030595"], ["updated_at", "2020-04-22 05:35:38.030595"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.029493"], ["updated_at", "2020-04-22 05:35:38.029493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_8573


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_349088


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.041680"], ["updated_at", "2020-04-22 05:35:38.041680"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.043480"], ["updated_at", "2020-04-22 05:35:38.043480"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.044371"], ["updated_at", "2020-04-22 05:35:38.044371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.046765"], ["updated_at", "2020-04-22 05:35:38.046765"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.046736"], ["updated_at", "2020-04-22 05:35:38.046736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_230331


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.050321"], ["updated_at", "2020-04-22 05:35:38.050321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.059916"], ["updated_at", "2020-04-22 05:35:38.059916"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.062366"], ["updated_at", "2020-04-22 05:35:38.062366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.064532"], ["updated_at", "2020-04-22 05:35:38.064532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_123918


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.066968"], ["updated_at", "2020-04-22 05:35:38.066968"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_853546


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.069729"], ["updated_at", "2020-04-22 05:35:38.069729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.074275"], ["updated_at", "2020-04-22 05:35:38.074275"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.073685"], ["updated_at", "2020-04-22 05:35:38.073685"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.076612"], ["updated_at", "2020-04-22 05:35:38.076612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.078531"], ["updated_at", "2020-04-22 05:35:38.078531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_35850


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.082243"], ["updated_at", "2020-04-22 05:35:38.082243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.084649"], ["updated_at", "2020-04-22 05:35:38.084649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_636216


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.088292"], ["updated_at", "2020-04-22 05:35:38.088292"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.088791"], ["updated_at", "2020-04-22 05:35:38.088791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.091816"], ["updated_at", "2020-04-22 05:35:38.091816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.093667"], ["updated_at", "2020-04-22 05:35:38.093667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_66845


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.096303"], ["updated_at", "2020-04-22 05:35:38.096303"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.099321"], ["updated_at", "2020-04-22 05:35:38.099321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_809091


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.102874"], ["updated_at", "2020-04-22 05:35:38.102874"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.102764"], ["updated_at", "2020-04-22 05:35:38.102764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.105043"], ["updated_at", "2020-04-22 05:35:38.105043"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.107443"], ["updated_at", "2020-04-22 05:35:38.107443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_438853


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.112317"], ["updated_at", "2020-04-22 05:35:38.112317"]]
 (0.1ms)  begin transaction

CommentTest: test_903951


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.116574"], ["updated_at", "2020-04-22 05:35:38.116574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.117050"], ["updated_at", "2020-04-22 05:35:38.117050"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.119611"], ["updated_at", "2020-04-22 05:35:38.119611"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.120134"], ["updated_at", "2020-04-22 05:35:38.120134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.122678"], ["updated_at", "2020-04-22 05:35:38.122678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_312553


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_816670


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.133114"], ["updated_at", "2020-04-22 05:35:38.133114"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.136130"], ["updated_at", "2020-04-22 05:35:38.136130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.135688"], ["updated_at", "2020-04-22 05:35:38.135688"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.138675"], ["updated_at", "2020-04-22 05:35:38.138675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.138722"], ["updated_at", "2020-04-22 05:35:38.138722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.141473"], ["updated_at", "2020-04-22 05:35:38.141473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_791479


 (0.1ms)  begin transaction

CommentTest: test_203676

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.148667"], ["updated_at", "2020-04-22 05:35:38.148667"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.150457"], ["updated_at", "2020-04-22 05:35:38.150457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.149753"], ["updated_at", "2020-04-22 05:35:38.149753"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.151805"], ["updated_at", "2020-04-22 05:35:38.151805"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.152403"], ["updated_at", "2020-04-22 05:35:38.152403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.156948"], ["updated_at", "2020-04-22 05:35:38.156948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_635060


 (0.2ms)  begin transaction

CommentTest: test_237360


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.164180"], ["updated_at", "2020-04-22 05:35:38.164180"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.165066"], ["updated_at", "2020-04-22 05:35:38.165066"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.166681"], ["updated_at", "2020-04-22 05:35:38.166681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.166873"], ["updated_at", "2020-04-22 05:35:38.166873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.169158"], ["updated_at", "2020-04-22 05:35:38.169158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.169158"], ["updated_at", "2020-04-22 05:35:38.169158"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_840609


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.179014"], ["updated_at", "2020-04-22 05:35:38.179014"]]
 (0.1ms)  begin transaction

CommentTest: test_872199


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.181758"], ["updated_at", "2020-04-22 05:35:38.181758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.182016"], ["updated_at", "2020-04-22 05:35:38.182016"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.184132"], ["updated_at", "2020-04-22 05:35:38.184132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.183978"], ["updated_at", "2020-04-22 05:35:38.183978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.185883"], ["updated_at", "2020-04-22 05:35:38.185883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_220014


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.192647"], ["updated_at", "2020-04-22 05:35:38.192647"]]
 (0.1ms)  begin transaction

CommentTest: test_987572


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.195295"], ["updated_at", "2020-04-22 05:35:38.195295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.195590"], ["updated_at", "2020-04-22 05:35:38.195590"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.197261"], ["updated_at", "2020-04-22 05:35:38.197261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.198444"], ["updated_at", "2020-04-22 05:35:38.198444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.200970"], ["updated_at", "2020-04-22 05:35:38.200970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_510969


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.210527"], ["updated_at", "2020-04-22 05:35:38.210527"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.213476"], ["updated_at", "2020-04-22 05:35:38.213476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.214978"], ["updated_at", "2020-04-22 05:35:38.214978"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_242102


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.221530"], ["updated_at", "2020-04-22 05:35:38.221530"]]
 (0.1ms)  begin transaction

CommentTest: test_724590


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.226898"], ["updated_at", "2020-04-22 05:35:38.226898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.227752"], ["updated_at", "2020-04-22 05:35:38.227752"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.229064"], ["updated_at", "2020-04-22 05:35:38.229064"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.229783"], ["updated_at", "2020-04-22 05:35:38.229783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.231005"], ["updated_at", "2020-04-22 05:35:38.231005"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.3ms)  begin transaction


CommentTest: test_724078


CommentTest: test_439663


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.239807"], ["updated_at", "2020-04-22 05:35:38.239807"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.239964"], ["updated_at", "2020-04-22 05:35:38.239964"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.241896"], ["updated_at", "2020-04-22 05:35:38.241896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.242289"], ["updated_at", "2020-04-22 05:35:38.242289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.244135"], ["updated_at", "2020-04-22 05:35:38.244135"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.244079"], ["updated_at", "2020-04-22 05:35:38.244079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_809942


 (0.1ms)  begin transaction

CommentTest: test_257575


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.254686"], ["updated_at", "2020-04-22 05:35:38.254686"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.255240"], ["updated_at", "2020-04-22 05:35:38.255240"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.256295"], ["updated_at", "2020-04-22 05:35:38.256295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.258745"], ["updated_at", "2020-04-22 05:35:38.258745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.259798"], ["updated_at", "2020-04-22 05:35:38.259798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.261776"], ["updated_at", "2020-04-22 05:35:38.261776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_7884


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_287658


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.266602"], ["updated_at", "2020-04-22 05:35:38.266602"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.269837"], ["updated_at", "2020-04-22 05:35:38.269837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.269523"], ["updated_at", "2020-04-22 05:35:38.269523"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.271690"], ["updated_at", "2020-04-22 05:35:38.271690"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.271922"], ["updated_at", "2020-04-22 05:35:38.271922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.276633"], ["updated_at", "2020-04-22 05:35:38.276633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_740788


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.283099"], ["updated_at", "2020-04-22 05:35:38.283099"]]
 (0.1ms)  begin transaction

CommentTest: test_957298


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.285679"], ["updated_at", "2020-04-22 05:35:38.285679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.288550"], ["updated_at", "2020-04-22 05:35:38.288550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.288524"], ["updated_at", "2020-04-22 05:35:38.288524"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.294343"], ["updated_at", "2020-04-22 05:35:38.294343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.297155"], ["updated_at", "2020-04-22 05:35:38.297155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_757833


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.299762"], ["updated_at", "2020-04-22 05:35:38.299762"]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.304917"], ["updated_at", "2020-04-22 05:35:38.304917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.307861"], ["updated_at", "2020-04-22 05:35:38.307861"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_241155


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.312936"], ["updated_at", "2020-04-22 05:35:38.312936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.315576"], ["updated_at", "2020-04-22 05:35:38.315576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_919272


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.317503"], ["updated_at", "2020-04-22 05:35:38.317503"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.317209"], ["updated_at", "2020-04-22 05:35:38.317209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.320076"], ["updated_at", "2020-04-22 05:35:38.320076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.323378"], ["updated_at", "2020-04-22 05:35:38.323378"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_761980


 (0.1ms)  begin transaction

CommentTest: test_431062


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.328435"], ["updated_at", "2020-04-22 05:35:38.328435"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.329670"], ["updated_at", "2020-04-22 05:35:38.329670"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.331479"], ["updated_at", "2020-04-22 05:35:38.331479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.331190"], ["updated_at", "2020-04-22 05:35:38.331190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.333296"], ["updated_at", "2020-04-22 05:35:38.333296"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.333296"], ["updated_at", "2020-04-22 05:35:38.333296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_684324


 (0.7ms)  begin transaction

CommentTest: test_523530


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.341607"], ["updated_at", "2020-04-22 05:35:38.341607"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.342031"], ["updated_at", "2020-04-22 05:35:38.342031"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.344343"], ["updated_at", "2020-04-22 05:35:38.344343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.344522"], ["updated_at", "2020-04-22 05:35:38.344522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.345730"], ["updated_at", "2020-04-22 05:35:38.345730"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.346254"], ["updated_at", "2020-04-22 05:35:38.346254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_476095


 (0.1ms)  begin transaction

CommentTest: test_485760


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.353528"], ["updated_at", "2020-04-22 05:35:38.353528"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.354658"], ["updated_at", "2020-04-22 05:35:38.354658"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.357022"], ["updated_at", "2020-04-22 05:35:38.357022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.357032"], ["updated_at", "2020-04-22 05:35:38.357032"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.359645"], ["updated_at", "2020-04-22 05:35:38.359645"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.359760"], ["updated_at", "2020-04-22 05:35:38.359760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_20624


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.367390"], ["updated_at", "2020-04-22 05:35:38.367390"]]
 (0.1ms)  begin transaction

CommentTest: test_164485


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.370721"], ["updated_at", "2020-04-22 05:35:38.370721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.372658"], ["updated_at", "2020-04-22 05:35:38.372658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.372081"], ["updated_at", "2020-04-22 05:35:38.372081"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.379147"], ["updated_at", "2020-04-22 05:35:38.379147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.381791"], ["updated_at", "2020-04-22 05:35:38.381791"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_955525


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.386153"], ["updated_at", "2020-04-22 05:35:38.386153"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.388865"], ["updated_at", "2020-04-22 05:35:38.388865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.391777"], ["updated_at", "2020-04-22 05:35:38.391777"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_20686


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.394909"], ["updated_at", "2020-04-22 05:35:38.394909"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.398279"], ["updated_at", "2020-04-22 05:35:38.398279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_910103


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.400080"], ["updated_at", "2020-04-22 05:35:38.400080"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.400084"], ["updated_at", "2020-04-22 05:35:38.400084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.402329"], ["updated_at", "2020-04-22 05:35:38.402329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.406026"], ["updated_at", "2020-04-22 05:35:38.406026"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_136202


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.411229"], ["updated_at", "2020-04-22 05:35:38.411229"]]
 (0.1ms)  begin transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.414175"], ["updated_at", "2020-04-22 05:35:38.414175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_612051


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.415856"], ["updated_at", "2020-04-22 05:35:38.415856"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.415936"], ["updated_at", "2020-04-22 05:35:38.415936"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.418925"], ["updated_at", "2020-04-22 05:35:38.418925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.420455"], ["updated_at", "2020-04-22 05:35:38.420455"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_953662


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.424261"], ["updated_at", "2020-04-22 05:35:38.424261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.427568"], ["updated_at", "2020-04-22 05:35:38.427568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_417896


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.429088"], ["updated_at", "2020-04-22 05:35:38.429088"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.429448"], ["updated_at", "2020-04-22 05:35:38.429448"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.432159"], ["updated_at", "2020-04-22 05:35:38.432159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.434088"], ["updated_at", "2020-04-22 05:35:38.434088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_536649


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.436558"], ["updated_at", "2020-04-22 05:35:38.436558"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.439370"], ["updated_at", "2020-04-22 05:35:38.439370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_113165


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.441974"], ["updated_at", "2020-04-22 05:35:38.441974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.443969"], ["updated_at", "2020-04-22 05:35:38.443969"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.446522"], ["updated_at", "2020-04-22 05:35:38.446522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.448528"], ["updated_at", "2020-04-22 05:35:38.448528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_878759


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.452105"], ["updated_at", "2020-04-22 05:35:38.452105"]]
 (0.1ms)  begin transaction

CommentTest: test_31489


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.461586"], ["updated_at", "2020-04-22 05:35:38.461586"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.462189"], ["updated_at", "2020-04-22 05:35:38.462189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.465466"], ["updated_at", "2020-04-22 05:35:38.465466"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.465490"], ["updated_at", "2020-04-22 05:35:38.465490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.467459"], ["updated_at", "2020-04-22 05:35:38.467459"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (2.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction


CommentTest: test_697481 CommentTest: test_861072



 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.480193"], ["updated_at", "2020-04-22 05:35:38.480193"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.480938"], ["updated_at", "2020-04-22 05:35:38.480938"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.482768"], ["updated_at", "2020-04-22 05:35:38.482768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.484584"], ["updated_at", "2020-04-22 05:35:38.484584"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.483991"], ["updated_at", "2020-04-22 05:35:38.483991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.488851"], ["updated_at", "2020-04-22 05:35:38.488851"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  begin transaction

CommentTest: test_360433


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_506924


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.495077"], ["updated_at", "2020-04-22 05:35:38.495077"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.498496"], ["updated_at", "2020-04-22 05:35:38.498496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.498048"], ["updated_at", "2020-04-22 05:35:38.498048"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.500695"], ["updated_at", "2020-04-22 05:35:38.500695"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.501816"], ["updated_at", "2020-04-22 05:35:38.501816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.504545"], ["updated_at", "2020-04-22 05:35:38.504545"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_701597


CommentTest: test_943572


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.514381"], ["updated_at", "2020-04-22 05:35:38.514381"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.514409"], ["updated_at", "2020-04-22 05:35:38.514409"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.515980"], ["updated_at", "2020-04-22 05:35:38.515980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.516618"], ["updated_at", "2020-04-22 05:35:38.516618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.517827"], ["updated_at", "2020-04-22 05:35:38.517827"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.518462"], ["updated_at", "2020-04-22 05:35:38.518462"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_310150


 (0.1ms)  begin transaction

CommentTest: test_302719


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.528125"], ["updated_at", "2020-04-22 05:35:38.528125"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.528881"], ["updated_at", "2020-04-22 05:35:38.528881"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.530956"], ["updated_at", "2020-04-22 05:35:38.530956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.531400"], ["updated_at", "2020-04-22 05:35:38.531400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.532771"], ["updated_at", "2020-04-22 05:35:38.532771"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.533105"], ["updated_at", "2020-04-22 05:35:38.533105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_564123


 (0.1ms)  begin transaction

CommentTest: test_438330


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.543847"], ["updated_at", "2020-04-22 05:35:38.543847"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.544912"], ["updated_at", "2020-04-22 05:35:38.544912"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.547624"], ["updated_at", "2020-04-22 05:35:38.547624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.548710"], ["updated_at", "2020-04-22 05:35:38.548710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.550206"], ["updated_at", "2020-04-22 05:35:38.550206"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.551104"], ["updated_at", "2020-04-22 05:35:38.551104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_62824


 (0.1ms)  begin transaction

CommentTest: test_545391


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.561046"], ["updated_at", "2020-04-22 05:35:38.561046"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.560743"], ["updated_at", "2020-04-22 05:35:38.560743"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.563687"], ["updated_at", "2020-04-22 05:35:38.563687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.564399"], ["updated_at", "2020-04-22 05:35:38.564399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.565848"], ["updated_at", "2020-04-22 05:35:38.565848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.568877"], ["updated_at", "2020-04-22 05:35:38.568877"]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_192512


 (0.1ms)  begin transaction

CommentTest: test_119423


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.589007"], ["updated_at", "2020-04-22 05:35:38.589007"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.590005"], ["updated_at", "2020-04-22 05:35:38.590005"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.591741"], ["updated_at", "2020-04-22 05:35:38.591741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.593249"], ["updated_at", "2020-04-22 05:35:38.593249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.594114"], ["updated_at", "2020-04-22 05:35:38.594114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.595257"], ["updated_at", "2020-04-22 05:35:38.595257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_666261


 (0.1ms)  begin transaction

CommentTest: test_850339


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.602318"], ["updated_at", "2020-04-22 05:35:38.602318"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.603097"], ["updated_at", "2020-04-22 05:35:38.603097"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.604854"], ["updated_at", "2020-04-22 05:35:38.604854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.605446"], ["updated_at", "2020-04-22 05:35:38.605446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.606582"], ["updated_at", "2020-04-22 05:35:38.606582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.607427"], ["updated_at", "2020-04-22 05:35:38.607427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_725898


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_875110


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.616766"], ["updated_at", "2020-04-22 05:35:38.616766"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.619415"], ["updated_at", "2020-04-22 05:35:38.619415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.620778"], ["updated_at", "2020-04-22 05:35:38.620778"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.621984"], ["updated_at", "2020-04-22 05:35:38.621984"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.625409"], ["updated_at", "2020-04-22 05:35:38.625409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.628037"], ["updated_at", "2020-04-22 05:35:38.628037"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_481616


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.634480"], ["updated_at", "2020-04-22 05:35:38.634480"]]
 (0.1ms)  begin transaction

CommentTest: test_61910


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.638214"], ["updated_at", "2020-04-22 05:35:38.638214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.639205"], ["updated_at", "2020-04-22 05:35:38.639205"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.640318"], ["updated_at", "2020-04-22 05:35:38.640318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.642301"], ["updated_at", "2020-04-22 05:35:38.642301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.644929"], ["updated_at", "2020-04-22 05:35:38.644929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_425398


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.648794"], ["updated_at", "2020-04-22 05:35:38.648794"]]
 (0.1ms)  begin transaction

CommentTest: test_705568


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.651309"], ["updated_at", "2020-04-22 05:35:38.651309"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.656580"], ["updated_at", "2020-04-22 05:35:38.656580"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.652818"], ["updated_at", "2020-04-22 05:35:38.652818"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.659218"], ["updated_at", "2020-04-22 05:35:38.659218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.660709"], ["updated_at", "2020-04-22 05:35:38.660709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_611293


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.664960"], ["updated_at", "2020-04-22 05:35:38.664960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.666932"], ["updated_at", "2020-04-22 05:35:38.666932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_937035


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.668968"], ["updated_at", "2020-04-22 05:35:38.668968"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.671895"], ["updated_at", "2020-04-22 05:35:38.671895"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.675703"], ["updated_at", "2020-04-22 05:35:38.675703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_341182


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.677872"], ["updated_at", "2020-04-22 05:35:38.677872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.679424"], ["updated_at", "2020-04-22 05:35:38.679424"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.681131"], ["updated_at", "2020-04-22 05:35:38.681131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.682847"], ["updated_at", "2020-04-22 05:35:38.682847"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_509284


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.686703"], ["updated_at", "2020-04-22 05:35:38.686703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.689042"], ["updated_at", "2020-04-22 05:35:38.689042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_309429


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.691467"], ["updated_at", "2020-04-22 05:35:38.691467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.692251"], ["updated_at", "2020-04-22 05:35:38.692251"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.694677"], ["updated_at", "2020-04-22 05:35:38.694677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.697187"], ["updated_at", "2020-04-22 05:35:38.697187"]]
 (0.1ms)  begin transaction

CommentTest: test_671785


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.699638"], ["updated_at", "2020-04-22 05:35:38.699638"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.702293"], ["updated_at", "2020-04-22 05:35:38.702293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.704500"], ["updated_at", "2020-04-22 05:35:38.704500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_255882


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.712279"], ["updated_at", "2020-04-22 05:35:38.712279"]]
 (0.1ms)  begin transaction

CommentTest: test_583119


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.720036"], ["updated_at", "2020-04-22 05:35:38.720036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.720898"], ["updated_at", "2020-04-22 05:35:38.720898"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.722215"], ["updated_at", "2020-04-22 05:35:38.722215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.724352"], ["updated_at", "2020-04-22 05:35:38.724352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.727039"], ["updated_at", "2020-04-22 05:35:38.727039"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_642963


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_75305


Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.734335"], ["updated_at", "2020-04-22 05:35:38.734335"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.736884"], ["updated_at", "2020-04-22 05:35:38.736884"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.740648"], ["updated_at", "2020-04-22 05:35:38.740648"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.742419"], ["updated_at", "2020-04-22 05:35:38.742419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.743663"], ["updated_at", "2020-04-22 05:35:38.743663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.744529"], ["updated_at", "2020-04-22 05:35:38.744529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_234362


 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_876380


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.751616"], ["updated_at", "2020-04-22 05:35:38.751616"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.755001"], ["updated_at", "2020-04-22 05:35:38.755001"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.756174"], ["updated_at", "2020-04-22 05:35:38.756174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.756790"], ["updated_at", "2020-04-22 05:35:38.756790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.758778"], ["updated_at", "2020-04-22 05:35:38.758778"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.758777"], ["updated_at", "2020-04-22 05:35:38.758777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_274240


 (0.1ms)  begin transaction

CommentTest: test_283167


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.767025"], ["updated_at", "2020-04-22 05:35:38.767025"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.767789"], ["updated_at", "2020-04-22 05:35:38.767789"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.770382"], ["updated_at", "2020-04-22 05:35:38.770382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.770092"], ["updated_at", "2020-04-22 05:35:38.770092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.771722"], ["updated_at", "2020-04-22 05:35:38.771722"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.771975"], ["updated_at", "2020-04-22 05:35:38.771975"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_314606


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_103314


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.779358"], ["updated_at", "2020-04-22 05:35:38.779358"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.816657"], ["updated_at", "2020-04-22 05:35:38.816657"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.819370"], ["updated_at", "2020-04-22 05:35:38.819370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.827475"], ["updated_at", "2020-04-22 05:35:38.827475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.832962"], ["updated_at", "2020-04-22 05:35:38.832962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.838674"], ["updated_at", "2020-04-22 05:35:38.838674"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (4.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_760234


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.848392"], ["updated_at", "2020-04-22 05:35:38.848392"]]
 (0.1ms)  begin transaction

CommentTest: test_419096


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.850570"], ["updated_at", "2020-04-22 05:35:38.850570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.850490"], ["updated_at", "2020-04-22 05:35:38.850490"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.852362"], ["updated_at", "2020-04-22 05:35:38.852362"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.853042"], ["updated_at", "2020-04-22 05:35:38.853042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.855014"], ["updated_at", "2020-04-22 05:35:38.855014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_390880


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.860100"], ["updated_at", "2020-04-22 05:35:38.860100"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_594842


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.862070"], ["updated_at", "2020-04-22 05:35:38.862070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.864358"], ["updated_at", "2020-04-22 05:35:38.864358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.863725"], ["updated_at", "2020-04-22 05:35:38.863725"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.867896"], ["updated_at", "2020-04-22 05:35:38.867896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_311923


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.872120"], ["updated_at", "2020-04-22 05:35:38.872120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.878512"], ["updated_at", "2020-04-22 05:35:38.878512"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.882761"], ["updated_at", "2020-04-22 05:35:38.882761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.885333"], ["updated_at", "2020-04-22 05:35:38.885333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_992090


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.892631"], ["updated_at", "2020-04-22 05:35:38.892631"]]
 (0.1ms)  begin transaction

CommentTest: test_513177


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.895667"], ["updated_at", "2020-04-22 05:35:38.895667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.896665"], ["updated_at", "2020-04-22 05:35:38.896665"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.898655"], ["updated_at", "2020-04-22 05:35:38.898655"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.899013"], ["updated_at", "2020-04-22 05:35:38.899013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.901035"], ["updated_at", "2020-04-22 05:35:38.901035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_420666


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.910954"], ["updated_at", "2020-04-22 05:35:38.910954"]]
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.913420"], ["updated_at", "2020-04-22 05:35:38.913420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_859209


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.915167"], ["updated_at", "2020-04-22 05:35:38.915167"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.916454"], ["updated_at", "2020-04-22 05:35:38.916454"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.921636"], ["updated_at", "2020-04-22 05:35:38.921636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.923078"], ["updated_at", "2020-04-22 05:35:38.923078"]]
 (0.1ms)  begin transaction

CommentTest: test_485513


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.924908"], ["updated_at", "2020-04-22 05:35:38.924908"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.928331"], ["updated_at", "2020-04-22 05:35:38.928331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.930697"], ["updated_at", "2020-04-22 05:35:38.930697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_836873


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.935553"], ["updated_at", "2020-04-22 05:35:38.935553"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.938270"], ["updated_at", "2020-04-22 05:35:38.938270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_613107


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.939907"], ["updated_at", "2020-04-22 05:35:38.939907"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.940060"], ["updated_at", "2020-04-22 05:35:38.940060"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.943221"], ["updated_at", "2020-04-22 05:35:38.943221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.945222"], ["updated_at", "2020-04-22 05:35:38.945222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_940174


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.948274"], ["updated_at", "2020-04-22 05:35:38.948274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_679096


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.951301"], ["updated_at", "2020-04-22 05:35:38.951301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.955002"], ["updated_at", "2020-04-22 05:35:38.955002"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.955892"], ["updated_at", "2020-04-22 05:35:38.955892"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.957491"], ["updated_at", "2020-04-22 05:35:38.957491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.960404"], ["updated_at", "2020-04-22 05:35:38.960404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_449335


 (0.1ms)  begin transaction

CommentTest: test_126541


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.969278"], ["updated_at", "2020-04-22 05:35:38.969278"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.972250"], ["updated_at", "2020-04-22 05:35:38.972250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.970517"], ["updated_at", "2020-04-22 05:35:38.970517"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.975857"], ["updated_at", "2020-04-22 05:35:38.975857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.978357"], ["updated_at", "2020-04-22 05:35:38.978357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.981030"], ["updated_at", "2020-04-22 05:35:38.981030"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_742974


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.985745"], ["updated_at", "2020-04-22 05:35:38.985745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.990314"], ["updated_at", "2020-04-22 05:35:38.990314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_325123


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.992304"], ["updated_at", "2020-04-22 05:35:38.992304"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:38.992883"], ["updated_at", "2020-04-22 05:35:38.992883"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:38.995619"], ["updated_at", "2020-04-22 05:35:38.995619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:38.997341"], ["updated_at", "2020-04-22 05:35:38.997341"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_448246


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.000886"], ["updated_at", "2020-04-22 05:35:39.000886"]]
 (0.1ms)  begin transaction

CommentTest: test_568496


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.005016"], ["updated_at", "2020-04-22 05:35:39.005016"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.006858"], ["updated_at", "2020-04-22 05:35:39.006858"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.006458"], ["updated_at", "2020-04-22 05:35:39.006458"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.010881"], ["updated_at", "2020-04-22 05:35:39.010881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.013180"], ["updated_at", "2020-04-22 05:35:39.013180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_410025


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.016420"], ["updated_at", "2020-04-22 05:35:39.016420"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.019005"], ["updated_at", "2020-04-22 05:35:39.019005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_166860


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.021661"], ["updated_at", "2020-04-22 05:35:39.021661"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.021302"], ["updated_at", "2020-04-22 05:35:39.021302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.023466"], ["updated_at", "2020-04-22 05:35:39.023466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.026009"], ["updated_at", "2020-04-22 05:35:39.026009"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_997582


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.030271"], ["updated_at", "2020-04-22 05:35:39.030271"]]
 (0.1ms)  begin transaction

CommentTest: test_365329


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.032133"], ["updated_at", "2020-04-22 05:35:39.032133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.033747"], ["updated_at", "2020-04-22 05:35:39.033747"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.033422"], ["updated_at", "2020-04-22 05:35:39.033422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.038220"], ["updated_at", "2020-04-22 05:35:39.038220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.040567"], ["updated_at", "2020-04-22 05:35:39.040567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_1804


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.045345"], ["updated_at", "2020-04-22 05:35:39.045345"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.048410"], ["updated_at", "2020-04-22 05:35:39.048410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.050314"], ["updated_at", "2020-04-22 05:35:39.050314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_481113


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.053538"], ["updated_at", "2020-04-22 05:35:39.053538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_213117


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.058164"], ["updated_at", "2020-04-22 05:35:39.058164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.059988"], ["updated_at", "2020-04-22 05:35:39.059988"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.063650"], ["updated_at", "2020-04-22 05:35:39.063650"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.065868"], ["updated_at", "2020-04-22 05:35:39.065868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.066757"], ["updated_at", "2020-04-22 05:35:39.066757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_696968


 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_782781


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.077526"], ["updated_at", "2020-04-22 05:35:39.077526"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.079509"], ["updated_at", "2020-04-22 05:35:39.079509"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.080393"], ["updated_at", "2020-04-22 05:35:39.080393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.082100"], ["updated_at", "2020-04-22 05:35:39.082100"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.082010"], ["updated_at", "2020-04-22 05:35:39.082010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.083959"], ["updated_at", "2020-04-22 05:35:39.083959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_862847


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.091912"], ["updated_at", "2020-04-22 05:35:39.091912"]]
 (0.1ms)  begin transaction

CommentTest: test_890598


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.094715"], ["updated_at", "2020-04-22 05:35:39.094715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.095214"], ["updated_at", "2020-04-22 05:35:39.095214"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.096753"], ["updated_at", "2020-04-22 05:35:39.096753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.097811"], ["updated_at", "2020-04-22 05:35:39.097811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.099568"], ["updated_at", "2020-04-22 05:35:39.099568"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_337991


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.104675"], ["updated_at", "2020-04-22 05:35:39.104675"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788264


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.106559"], ["updated_at", "2020-04-22 05:35:39.106559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.109219"], ["updated_at", "2020-04-22 05:35:39.109219"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.109163"], ["updated_at", "2020-04-22 05:35:39.109163"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.112027"], ["updated_at", "2020-04-22 05:35:39.112027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.114438"], ["updated_at", "2020-04-22 05:35:39.114438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_664867


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.117339"], ["updated_at", "2020-04-22 05:35:39.117339"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.120267"], ["updated_at", "2020-04-22 05:35:39.120267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_999748


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.122850"], ["updated_at", "2020-04-22 05:35:39.122850"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.123482"], ["updated_at", "2020-04-22 05:35:39.123482"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.127659"], ["updated_at", "2020-04-22 05:35:39.127659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.129877"], ["updated_at", "2020-04-22 05:35:39.129877"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_523731


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.132042"], ["updated_at", "2020-04-22 05:35:39.132042"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.135044"], ["updated_at", "2020-04-22 05:35:39.135044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.136993"], ["updated_at", "2020-04-22 05:35:39.136993"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_324626


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.145104"], ["updated_at", "2020-04-22 05:35:39.145104"]]

CommentTest: test_389216


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.148119"], ["updated_at", "2020-04-22 05:35:39.148119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.149122"], ["updated_at", "2020-04-22 05:35:39.149122"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.151190"], ["updated_at", "2020-04-22 05:35:39.151190"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.152097"], ["updated_at", "2020-04-22 05:35:39.152097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.155712"], ["updated_at", "2020-04-22 05:35:39.155712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_609073



CommentTest: test_792257


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.165409"], ["updated_at", "2020-04-22 05:35:39.165409"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.165544"], ["updated_at", "2020-04-22 05:35:39.165544"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.168332"], ["updated_at", "2020-04-22 05:35:39.168332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.168267"], ["updated_at", "2020-04-22 05:35:39.168267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.172810"], ["updated_at", "2020-04-22 05:35:39.172810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.174691"], ["updated_at", "2020-04-22 05:35:39.174691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_678910


 (0.1ms)  begin transaction

CommentTest: test_348452


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.183057"], ["updated_at", "2020-04-22 05:35:39.183057"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.184212"], ["updated_at", "2020-04-22 05:35:39.184212"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.184952"], ["updated_at", "2020-04-22 05:35:39.184952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.189111"], ["updated_at", "2020-04-22 05:35:39.189111"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.188856"], ["updated_at", "2020-04-22 05:35:39.188856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.190846"], ["updated_at", "2020-04-22 05:35:39.190846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_994349


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_655525


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.197871"], ["updated_at", "2020-04-22 05:35:39.197871"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.199496"], ["updated_at", "2020-04-22 05:35:39.199496"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.200074"], ["updated_at", "2020-04-22 05:35:39.200074"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.202589"], ["updated_at", "2020-04-22 05:35:39.202589"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.201854"], ["updated_at", "2020-04-22 05:35:39.201854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.205117"], ["updated_at", "2020-04-22 05:35:39.205117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_429039


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.212364"], ["updated_at", "2020-04-22 05:35:39.212364"]]
 (0.0ms)  begin transaction

CommentTest: test_186102


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.214859"], ["updated_at", "2020-04-22 05:35:39.214859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.215306"], ["updated_at", "2020-04-22 05:35:39.215306"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.216918"], ["updated_at", "2020-04-22 05:35:39.216918"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.217298"], ["updated_at", "2020-04-22 05:35:39.217298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.219337"], ["updated_at", "2020-04-22 05:35:39.219337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  begin transaction

CommentTest: test_618254


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_300500


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.227644"], ["updated_at", "2020-04-22 05:35:39.227644"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.230953"], ["updated_at", "2020-04-22 05:35:39.230953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.230035"], ["updated_at", "2020-04-22 05:35:39.230035"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.232550"], ["updated_at", "2020-04-22 05:35:39.232550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.232524"], ["updated_at", "2020-04-22 05:35:39.232524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.234405"], ["updated_at", "2020-04-22 05:35:39.234405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_568715


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.242732"], ["updated_at", "2020-04-22 05:35:39.242732"]]
 (0.2ms)  begin transaction

CommentTest: test_317487


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.245683"], ["updated_at", "2020-04-22 05:35:39.245683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.249396"], ["updated_at", "2020-04-22 05:35:39.249396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.247162"], ["updated_at", "2020-04-22 05:35:39.247162"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.252546"], ["updated_at", "2020-04-22 05:35:39.252546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.255050"], ["updated_at", "2020-04-22 05:35:39.255050"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_13423

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.262170"], ["updated_at", "2020-04-22 05:35:39.262170"]]
 (0.1ms)  begin transaction

CommentTest: test_947294


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.265124"], ["updated_at", "2020-04-22 05:35:39.265124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.265035"], ["updated_at", "2020-04-22 05:35:39.265035"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.267287"], ["updated_at", "2020-04-22 05:35:39.267287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.268115"], ["updated_at", "2020-04-22 05:35:39.268115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.272929"], ["updated_at", "2020-04-22 05:35:39.272929"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_590396


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.281569"], ["updated_at", "2020-04-22 05:35:39.281569"]]
 (0.1ms)  begin transaction

CommentTest: test_4638


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.283755"], ["updated_at", "2020-04-22 05:35:39.283755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.283727"], ["updated_at", "2020-04-22 05:35:39.283727"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.285880"], ["updated_at", "2020-04-22 05:35:39.285880"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.287216"], ["updated_at", "2020-04-22 05:35:39.287216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.289675"], ["updated_at", "2020-04-22 05:35:39.289675"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_229682


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_4448


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.297743"], ["updated_at", "2020-04-22 05:35:39.297743"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.299768"], ["updated_at", "2020-04-22 05:35:39.299768"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.300591"], ["updated_at", "2020-04-22 05:35:39.300591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.302456"], ["updated_at", "2020-04-22 05:35:39.302456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.303276"], ["updated_at", "2020-04-22 05:35:39.303276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.304538"], ["updated_at", "2020-04-22 05:35:39.304538"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_865098


 (0.1ms)  begin transaction

CommentTest: test_755356


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.315037"], ["updated_at", "2020-04-22 05:35:39.315037"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.316449"], ["updated_at", "2020-04-22 05:35:39.316449"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.317798"], ["updated_at", "2020-04-22 05:35:39.317798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.319110"], ["updated_at", "2020-04-22 05:35:39.319110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.320267"], ["updated_at", "2020-04-22 05:35:39.320267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.322036"], ["updated_at", "2020-04-22 05:35:39.322036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_517434


 (0.2ms)  begin transaction

CommentTest: test_166161


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.329618"], ["updated_at", "2020-04-22 05:35:39.329618"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.330874"], ["updated_at", "2020-04-22 05:35:39.330874"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.332675"], ["updated_at", "2020-04-22 05:35:39.332675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.335379"], ["updated_at", "2020-04-22 05:35:39.335379"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.335494"], ["updated_at", "2020-04-22 05:35:39.335494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.338922"], ["updated_at", "2020-04-22 05:35:39.338922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.9ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_431964


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.351376"], ["updated_at", "2020-04-22 05:35:39.351376"]]
 (0.4ms)  begin transaction

CommentTest: test_154111


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.357042"], ["updated_at", "2020-04-22 05:35:39.357042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.357102"], ["updated_at", "2020-04-22 05:35:39.357102"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.360555"], ["updated_at", "2020-04-22 05:35:39.360555"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.360247"], ["updated_at", "2020-04-22 05:35:39.360247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.362560"], ["updated_at", "2020-04-22 05:35:39.362560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_571315


 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_915471


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.369646"], ["updated_at", "2020-04-22 05:35:39.369646"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.373278"], ["updated_at", "2020-04-22 05:35:39.373278"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.374082"], ["updated_at", "2020-04-22 05:35:39.374082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.376532"], ["updated_at", "2020-04-22 05:35:39.376532"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.376761"], ["updated_at", "2020-04-22 05:35:39.376761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.379138"], ["updated_at", "2020-04-22 05:35:39.379138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_863978


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_117261


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.385549"], ["updated_at", "2020-04-22 05:35:39.385549"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.386805"], ["updated_at", "2020-04-22 05:35:39.386805"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.388290"], ["updated_at", "2020-04-22 05:35:39.388290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.388944"], ["updated_at", "2020-04-22 05:35:39.388944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.390109"], ["updated_at", "2020-04-22 05:35:39.390109"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.390308"], ["updated_at", "2020-04-22 05:35:39.390308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_43370


 (0.2ms)  SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.397806"], ["updated_at", "2020-04-22 05:35:39.397806"]]
 (0.1ms)  begin transaction

CommentTest: test_721142


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.400212"], ["updated_at", "2020-04-22 05:35:39.400212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.405046"], ["updated_at", "2020-04-22 05:35:39.405046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.400846"], ["updated_at", "2020-04-22 05:35:39.400846"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.410987"], ["updated_at", "2020-04-22 05:35:39.410987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.412997"], ["updated_at", "2020-04-22 05:35:39.412997"]]
 (0.1ms)  begin transaction

CommentTest: test_184259


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.415406"], ["updated_at", "2020-04-22 05:35:39.415406"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.417630"], ["updated_at", "2020-04-22 05:35:39.417630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.420166"], ["updated_at", "2020-04-22 05:35:39.420166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_659954


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.425700"], ["updated_at", "2020-04-22 05:35:39.425700"]]
 (0.1ms)  begin transaction

CommentTest: test_193622


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.431701"], ["updated_at", "2020-04-22 05:35:39.431701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.431822"], ["updated_at", "2020-04-22 05:35:39.431822"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.434720"], ["updated_at", "2020-04-22 05:35:39.434720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.433793"], ["updated_at", "2020-04-22 05:35:39.433793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.437079"], ["updated_at", "2020-04-22 05:35:39.437079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_148003


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.444850"], ["updated_at", "2020-04-22 05:35:39.444850"]]

CommentTest: test_944138


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.447386"], ["updated_at", "2020-04-22 05:35:39.447386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.447703"], ["updated_at", "2020-04-22 05:35:39.447703"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.449353"], ["updated_at", "2020-04-22 05:35:39.449353"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.449693"], ["updated_at", "2020-04-22 05:35:39.449693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.451356"], ["updated_at", "2020-04-22 05:35:39.451356"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_565667


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.462026"], ["updated_at", "2020-04-22 05:35:39.462026"]]
 (0.1ms)  begin transaction

CommentTest: test_457742


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.465575"], ["updated_at", "2020-04-22 05:35:39.465575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.466095"], ["updated_at", "2020-04-22 05:35:39.466095"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.467483"], ["updated_at", "2020-04-22 05:35:39.467483"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.467707"], ["updated_at", "2020-04-22 05:35:39.467707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.469675"], ["updated_at", "2020-04-22 05:35:39.469675"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_858356


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_798618


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.476980"], ["updated_at", "2020-04-22 05:35:39.476980"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.479351"], ["updated_at", "2020-04-22 05:35:39.479351"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.480504"], ["updated_at", "2020-04-22 05:35:39.480504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.481853"], ["updated_at", "2020-04-22 05:35:39.481853"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.481704"], ["updated_at", "2020-04-22 05:35:39.481704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.483444"], ["updated_at", "2020-04-22 05:35:39.483444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  begin transaction

CommentTest: test_192109


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_203459


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.490605"], ["updated_at", "2020-04-22 05:35:39.490605"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.493892"], ["updated_at", "2020-04-22 05:35:39.493892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.493409"], ["updated_at", "2020-04-22 05:35:39.493409"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.495822"], ["updated_at", "2020-04-22 05:35:39.495822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.496414"], ["updated_at", "2020-04-22 05:35:39.496414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.498732"], ["updated_at", "2020-04-22 05:35:39.498732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_358963


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.504480"], ["updated_at", "2020-04-22 05:35:39.504480"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.507642"], ["updated_at", "2020-04-22 05:35:39.507642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.509908"], ["updated_at", "2020-04-22 05:35:39.509908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_429822


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.514399"], ["updated_at", "2020-04-22 05:35:39.514399"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.517499"], ["updated_at", "2020-04-22 05:35:39.517499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.519826"], ["updated_at", "2020-04-22 05:35:39.519826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_204476


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.523023"], ["updated_at", "2020-04-22 05:35:39.523023"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.528214"], ["updated_at", "2020-04-22 05:35:39.528214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_715372


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.530117"], ["updated_at", "2020-04-22 05:35:39.530117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.531795"], ["updated_at", "2020-04-22 05:35:39.531795"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.534292"], ["updated_at", "2020-04-22 05:35:39.534292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.536183"], ["updated_at", "2020-04-22 05:35:39.536183"]]
 (0.1ms)  begin transaction

CommentTest: test_608885


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.540723"], ["updated_at", "2020-04-22 05:35:39.540723"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.543839"], ["updated_at", "2020-04-22 05:35:39.543839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_929268


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.546416"], ["updated_at", "2020-04-22 05:35:39.546416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.548529"], ["updated_at", "2020-04-22 05:35:39.548529"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.551366"], ["updated_at", "2020-04-22 05:35:39.551366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.555927"], ["updated_at", "2020-04-22 05:35:39.555927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_492136


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.558844"], ["updated_at", "2020-04-22 05:35:39.558844"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.562121"], ["updated_at", "2020-04-22 05:35:39.562121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_335088


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.564874"], ["updated_at", "2020-04-22 05:35:39.564874"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.565797"], ["updated_at", "2020-04-22 05:35:39.565797"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.568574"], ["updated_at", "2020-04-22 05:35:39.568574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.572116"], ["updated_at", "2020-04-22 05:35:39.572116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_725405


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.574538"], ["updated_at", "2020-04-22 05:35:39.574538"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.577188"], ["updated_at", "2020-04-22 05:35:39.577188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.579169"], ["updated_at", "2020-04-22 05:35:39.579169"]]

CommentTest: test_112322


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.581188"], ["updated_at", "2020-04-22 05:35:39.581188"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.583808"], ["updated_at", "2020-04-22 05:35:39.583808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_988542


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.585969"], ["updated_at", "2020-04-22 05:35:39.585969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.587961"], ["updated_at", "2020-04-22 05:35:39.587961"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.590662"], ["updated_at", "2020-04-22 05:35:39.590662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.594359"], ["updated_at", "2020-04-22 05:35:39.594359"]]

CommentTest: test_960743


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.596147"], ["updated_at", "2020-04-22 05:35:39.596147"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.598927"], ["updated_at", "2020-04-22 05:35:39.598927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_488389


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.600869"], ["updated_at", "2020-04-22 05:35:39.600869"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.601271"], ["updated_at", "2020-04-22 05:35:39.601271"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.604071"], ["updated_at", "2020-04-22 05:35:39.604071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.606033"], ["updated_at", "2020-04-22 05:35:39.606033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_317095


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.614419"], ["updated_at", "2020-04-22 05:35:39.614419"]]
 (0.1ms)  begin transaction

CommentTest: test_185300


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.618093"], ["updated_at", "2020-04-22 05:35:39.618093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.618202"], ["updated_at", "2020-04-22 05:35:39.618202"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.621028"], ["updated_at", "2020-04-22 05:35:39.621028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.621909"], ["updated_at", "2020-04-22 05:35:39.621909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.623812"], ["updated_at", "2020-04-22 05:35:39.623812"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_882465


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_100351


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.631398"], ["updated_at", "2020-04-22 05:35:39.631398"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.634005"], ["updated_at", "2020-04-22 05:35:39.634005"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.634403"], ["updated_at", "2020-04-22 05:35:39.634403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.638624"], ["updated_at", "2020-04-22 05:35:39.638624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.638871"], ["updated_at", "2020-04-22 05:35:39.638871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.640506"], ["updated_at", "2020-04-22 05:35:39.640506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_550287


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.646571"], ["updated_at", "2020-04-22 05:35:39.646571"]]

CommentTest: test_408574


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.648858"], ["updated_at", "2020-04-22 05:35:39.648858"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.649426"], ["updated_at", "2020-04-22 05:35:39.649426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.650536"], ["updated_at", "2020-04-22 05:35:39.650536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.651392"], ["updated_at", "2020-04-22 05:35:39.651392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.652956"], ["updated_at", "2020-04-22 05:35:39.652956"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_543084


 (0.1ms)  begin transaction

CommentTest: test_60577


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.664345"], ["updated_at", "2020-04-22 05:35:39.664345"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.666064"], ["updated_at", "2020-04-22 05:35:39.666064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.665142"], ["updated_at", "2020-04-22 05:35:39.665142"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.667598"], ["updated_at", "2020-04-22 05:35:39.667598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.667369"], ["updated_at", "2020-04-22 05:35:39.667369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.669727"], ["updated_at", "2020-04-22 05:35:39.669727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_715185


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_280723


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.677829"], ["updated_at", "2020-04-22 05:35:39.677829"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.680538"], ["updated_at", "2020-04-22 05:35:39.680538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.679414"], ["updated_at", "2020-04-22 05:35:39.679414"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.686792"], ["updated_at", "2020-04-22 05:35:39.686792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.688116"], ["updated_at", "2020-04-22 05:35:39.688116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.689181"], ["updated_at", "2020-04-22 05:35:39.689181"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_812269



CommentTest: test_956876


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.699110"], ["updated_at", "2020-04-22 05:35:39.699110"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.699214"], ["updated_at", "2020-04-22 05:35:39.699214"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.704167"], ["updated_at", "2020-04-22 05:35:39.704167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.704292"], ["updated_at", "2020-04-22 05:35:39.704292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.706560"], ["updated_at", "2020-04-22 05:35:39.706560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.706549"], ["updated_at", "2020-04-22 05:35:39.706549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_492363


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_712971


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.720241"], ["updated_at", "2020-04-22 05:35:39.720241"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.723665"], ["updated_at", "2020-04-22 05:35:39.723665"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.724530"], ["updated_at", "2020-04-22 05:35:39.724530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.727160"], ["updated_at", "2020-04-22 05:35:39.727160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.727092"], ["updated_at", "2020-04-22 05:35:39.727092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.728878"], ["updated_at", "2020-04-22 05:35:39.728878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_126702


 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_364367


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.735654"], ["updated_at", "2020-04-22 05:35:39.735654"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.740236"], ["updated_at", "2020-04-22 05:35:39.740236"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.741293"], ["updated_at", "2020-04-22 05:35:39.741293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.743163"], ["updated_at", "2020-04-22 05:35:39.743163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.743437"], ["updated_at", "2020-04-22 05:35:39.743437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.744682"], ["updated_at", "2020-04-22 05:35:39.744682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_392049



CommentTest: test_861035


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.751507"], ["updated_at", "2020-04-22 05:35:39.751507"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.751679"], ["updated_at", "2020-04-22 05:35:39.751679"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.754491"], ["updated_at", "2020-04-22 05:35:39.754491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.753800"], ["updated_at", "2020-04-22 05:35:39.753800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.756046"], ["updated_at", "2020-04-22 05:35:39.756046"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.756046"], ["updated_at", "2020-04-22 05:35:39.756046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_513627


 (0.1ms)  begin transaction

CommentTest: test_572442


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.769131"], ["updated_at", "2020-04-22 05:35:39.769131"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.769850"], ["updated_at", "2020-04-22 05:35:39.769850"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.772137"], ["updated_at", "2020-04-22 05:35:39.772137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.782324"], ["updated_at", "2020-04-22 05:35:39.782324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.785877"], ["updated_at", "2020-04-22 05:35:39.785877"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.787346"], ["updated_at", "2020-04-22 05:35:39.787346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_67646


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.797289"], ["updated_at", "2020-04-22 05:35:39.797289"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.799887"], ["updated_at", "2020-04-22 05:35:39.799887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.802278"], ["updated_at", "2020-04-22 05:35:39.802278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_89051


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.812316"], ["updated_at", "2020-04-22 05:35:39.812316"]]
 (0.1ms)  begin transaction

CommentTest: test_320126


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.815365"], ["updated_at", "2020-04-22 05:35:39.815365"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.816410"], ["updated_at", "2020-04-22 05:35:39.816410"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.817584"], ["updated_at", "2020-04-22 05:35:39.817584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.819157"], ["updated_at", "2020-04-22 05:35:39.819157"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.824512"], ["updated_at", "2020-04-22 05:35:39.824512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.7ms)  rollback transaction

CommentTest: test_516273


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_329611


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.832000"], ["updated_at", "2020-04-22 05:35:39.832000"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.833746"], ["updated_at", "2020-04-22 05:35:39.833746"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.838029"], ["updated_at", "2020-04-22 05:35:39.838029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.838262"], ["updated_at", "2020-04-22 05:35:39.838262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.840305"], ["updated_at", "2020-04-22 05:35:39.840305"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.840201"], ["updated_at", "2020-04-22 05:35:39.840201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_76132


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_421517


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.849620"], ["updated_at", "2020-04-22 05:35:39.849620"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.851137"], ["updated_at", "2020-04-22 05:35:39.851137"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.852294"], ["updated_at", "2020-04-22 05:35:39.852294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.854106"], ["updated_at", "2020-04-22 05:35:39.854106"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.856151"], ["updated_at", "2020-04-22 05:35:39.856151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.860436"], ["updated_at", "2020-04-22 05:35:39.860436"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_232410


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.863784"], ["updated_at", "2020-04-22 05:35:39.863784"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.866346"], ["updated_at", "2020-04-22 05:35:39.866346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_171305


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.868419"], ["updated_at", "2020-04-22 05:35:39.868419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.869990"], ["updated_at", "2020-04-22 05:35:39.869990"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.873112"], ["updated_at", "2020-04-22 05:35:39.873112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.874965"], ["updated_at", "2020-04-22 05:35:39.874965"]]
 (3.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_742240


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_396380


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.886641"], ["updated_at", "2020-04-22 05:35:39.886641"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.889243"], ["updated_at", "2020-04-22 05:35:39.889243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.882782"], ["updated_at", "2020-04-22 05:35:39.882782"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.891372"], ["updated_at", "2020-04-22 05:35:39.891372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.891702"], ["updated_at", "2020-04-22 05:35:39.891702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.896025"], ["updated_at", "2020-04-22 05:35:39.896025"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_682864


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.901530"], ["updated_at", "2020-04-22 05:35:39.901530"]]
 (1.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.905579"], ["updated_at", "2020-04-22 05:35:39.905579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.910906"], ["updated_at", "2020-04-22 05:35:39.910906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_954916


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.917352"], ["updated_at", "2020-04-22 05:35:39.917352"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_403831


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.926675"], ["updated_at", "2020-04-22 05:35:39.926675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.926619"], ["updated_at", "2020-04-22 05:35:39.926619"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.928766"], ["updated_at", "2020-04-22 05:35:39.928766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.929446"], ["updated_at", "2020-04-22 05:35:39.929446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.931219"], ["updated_at", "2020-04-22 05:35:39.931219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_487824


 (0.0ms)  begin transaction

CommentTest: test_168914


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.940658"], ["updated_at", "2020-04-22 05:35:39.940658"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.940065"], ["updated_at", "2020-04-22 05:35:39.940065"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.944058"], ["updated_at", "2020-04-22 05:35:39.944058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.944082"], ["updated_at", "2020-04-22 05:35:39.944082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.945387"], ["updated_at", "2020-04-22 05:35:39.945387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.946032"], ["updated_at", "2020-04-22 05:35:39.946032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_10597


 (0.1ms)  begin transaction

CommentTest: test_796443


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.953423"], ["updated_at", "2020-04-22 05:35:39.953423"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.954386"], ["updated_at", "2020-04-22 05:35:39.954386"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.955973"], ["updated_at", "2020-04-22 05:35:39.955973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.956247"], ["updated_at", "2020-04-22 05:35:39.956247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.957266"], ["updated_at", "2020-04-22 05:35:39.957266"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.957994"], ["updated_at", "2020-04-22 05:35:39.957994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_390004


 (2.7ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.967026"], ["updated_at", "2020-04-22 05:35:39.967026"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.972872"], ["updated_at", "2020-04-22 05:35:39.972872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.975921"], ["updated_at", "2020-04-22 05:35:39.975921"]]
 (0.1ms)  begin transaction

CommentTest: test_362859


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.978639"], ["updated_at", "2020-04-22 05:35:39.978639"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.981532"], ["updated_at", "2020-04-22 05:35:39.981532"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_619423


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.983419"], ["updated_at", "2020-04-22 05:35:39.983419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.984793"], ["updated_at", "2020-04-22 05:35:39.984793"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.988984"], ["updated_at", "2020-04-22 05:35:39.988984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_592092


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:39.990950"], ["updated_at", "2020-04-22 05:35:39.990950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:39.992533"], ["updated_at", "2020-04-22 05:35:39.992533"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_28644


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:39.999944"], ["updated_at", "2020-04-22 05:35:39.999944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.005895"], ["updated_at", "2020-04-22 05:35:40.005895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.003802"], ["updated_at", "2020-04-22 05:35:40.003802"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.013794"], ["updated_at", "2020-04-22 05:35:40.013794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.016633"], ["updated_at", "2020-04-22 05:35:40.016633"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_744427


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.023473"], ["updated_at", "2020-04-22 05:35:40.023473"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.025348"], ["updated_at", "2020-04-22 05:35:40.025348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_837942


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.027962"], ["updated_at", "2020-04-22 05:35:40.027962"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.027877"], ["updated_at", "2020-04-22 05:35:40.027877"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.030525"], ["updated_at", "2020-04-22 05:35:40.030525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.032416"], ["updated_at", "2020-04-22 05:35:40.032416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_144916


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.040837"], ["updated_at", "2020-04-22 05:35:40.040837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_707287


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.045325"], ["updated_at", "2020-04-22 05:35:40.045325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.047283"], ["updated_at", "2020-04-22 05:35:40.047283"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.046765"], ["updated_at", "2020-04-22 05:35:40.046765"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.049561"], ["updated_at", "2020-04-22 05:35:40.049561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.052632"], ["updated_at", "2020-04-22 05:35:40.052632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_139551


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.056380"], ["updated_at", "2020-04-22 05:35:40.056380"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.060122"], ["updated_at", "2020-04-22 05:35:40.060122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.064813"], ["updated_at", "2020-04-22 05:35:40.064813"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_134708


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.067749"], ["updated_at", "2020-04-22 05:35:40.067749"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.072101"], ["updated_at", "2020-04-22 05:35:40.072101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.074474"], ["updated_at", "2020-04-22 05:35:40.074474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_746890


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.077717"], ["updated_at", "2020-04-22 05:35:40.077717"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.080451"], ["updated_at", "2020-04-22 05:35:40.080451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_847912


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.083164"], ["updated_at", "2020-04-22 05:35:40.083164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.084447"], ["updated_at", "2020-04-22 05:35:40.084447"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.088000"], ["updated_at", "2020-04-22 05:35:40.088000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.089762"], ["updated_at", "2020-04-22 05:35:40.089762"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_148548


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.094896"], ["updated_at", "2020-04-22 05:35:40.094896"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.099619"], ["updated_at", "2020-04-22 05:35:40.099619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.101927"], ["updated_at", "2020-04-22 05:35:40.101927"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_997859


 (0.2ms)  begin transaction

CommentTest: test_612252


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.112701"], ["updated_at", "2020-04-22 05:35:40.112701"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.113600"], ["updated_at", "2020-04-22 05:35:40.113600"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.115132"], ["updated_at", "2020-04-22 05:35:40.115132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.116081"], ["updated_at", "2020-04-22 05:35:40.116081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.116769"], ["updated_at", "2020-04-22 05:35:40.116769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.117830"], ["updated_at", "2020-04-22 05:35:40.117830"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_192448

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.128380"], ["updated_at", "2020-04-22 05:35:40.128380"]]
 (0.1ms)  begin transaction

CommentTest: test_520266


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.131167"], ["updated_at", "2020-04-22 05:35:40.131167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.133279"], ["updated_at", "2020-04-22 05:35:40.133279"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.133228"], ["updated_at", "2020-04-22 05:35:40.133228"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.135515"], ["updated_at", "2020-04-22 05:35:40.135515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.139168"], ["updated_at", "2020-04-22 05:35:40.139168"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_674537


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.144399"], ["updated_at", "2020-04-22 05:35:40.144399"]]
 (0.1ms)  begin transaction

CommentTest: test_514097


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.147601"], ["updated_at", "2020-04-22 05:35:40.147601"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.148717"], ["updated_at", "2020-04-22 05:35:40.148717"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.149659"], ["updated_at", "2020-04-22 05:35:40.149659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.151116"], ["updated_at", "2020-04-22 05:35:40.151116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.156327"], ["updated_at", "2020-04-22 05:35:40.156327"]]
 (0.1ms)  begin transaction

CommentTest: test_414484


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.158893"], ["updated_at", "2020-04-22 05:35:40.158893"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.161576"], ["updated_at", "2020-04-22 05:35:40.161576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.164281"], ["updated_at", "2020-04-22 05:35:40.164281"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_385451


 (0.1ms)  begin transaction

CommentTest: test_808365


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.172623"], ["updated_at", "2020-04-22 05:35:40.172623"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.172412"], ["updated_at", "2020-04-22 05:35:40.172412"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.175056"], ["updated_at", "2020-04-22 05:35:40.175056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.180470"], ["updated_at", "2020-04-22 05:35:40.180470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.180807"], ["updated_at", "2020-04-22 05:35:40.180807"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.183542"], ["updated_at", "2020-04-22 05:35:40.183542"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_97186



CommentTest: test_756271


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.192134"], ["updated_at", "2020-04-22 05:35:40.192134"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.193951"], ["updated_at", "2020-04-22 05:35:40.193951"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.195769"], ["updated_at", "2020-04-22 05:35:40.195769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.196904"], ["updated_at", "2020-04-22 05:35:40.196904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.198643"], ["updated_at", "2020-04-22 05:35:40.198643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.199286"], ["updated_at", "2020-04-22 05:35:40.199286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_863153


 (4.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.208761"], ["updated_at", "2020-04-22 05:35:40.208761"]]
 (0.1ms)  begin transaction

CommentTest: test_880320


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.213236"], ["updated_at", "2020-04-22 05:35:40.213236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.213886"], ["updated_at", "2020-04-22 05:35:40.213886"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.215236"], ["updated_at", "2020-04-22 05:35:40.215236"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.215711"], ["updated_at", "2020-04-22 05:35:40.215711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.217200"], ["updated_at", "2020-04-22 05:35:40.217200"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  begin transaction

CommentTest: test_409150


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.227435"], ["updated_at", "2020-04-22 05:35:40.227435"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.230206"], ["updated_at", "2020-04-22 05:35:40.230206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_200334


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.232430"], ["updated_at", "2020-04-22 05:35:40.232430"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.232625"], ["updated_at", "2020-04-22 05:35:40.232625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.234145"], ["updated_at", "2020-04-22 05:35:40.234145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.236271"], ["updated_at", "2020-04-22 05:35:40.236271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_359623


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.243129"], ["updated_at", "2020-04-22 05:35:40.243129"]]

CommentTest: test_984310


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.245292"], ["updated_at", "2020-04-22 05:35:40.245292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.245297"], ["updated_at", "2020-04-22 05:35:40.245297"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.246777"], ["updated_at", "2020-04-22 05:35:40.246777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.247827"], ["updated_at", "2020-04-22 05:35:40.247827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.249335"], ["updated_at", "2020-04-22 05:35:40.249335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_557218


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.255530"], ["updated_at", "2020-04-22 05:35:40.255530"]]
 (0.1ms)  begin transaction

CommentTest: test_231381


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.258220"], ["updated_at", "2020-04-22 05:35:40.258220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.262960"], ["updated_at", "2020-04-22 05:35:40.262960"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.264932"], ["updated_at", "2020-04-22 05:35:40.264932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.266565"], ["updated_at", "2020-04-22 05:35:40.266565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.268927"], ["updated_at", "2020-04-22 05:35:40.268927"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_736219


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.272884"], ["updated_at", "2020-04-22 05:35:40.272884"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.277190"], ["updated_at", "2020-04-22 05:35:40.277190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_424335


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.279256"], ["updated_at", "2020-04-22 05:35:40.279256"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.279688"], ["updated_at", "2020-04-22 05:35:40.279688"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.283897"], ["updated_at", "2020-04-22 05:35:40.283897"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.285958"], ["updated_at", "2020-04-22 05:35:40.285958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_498890


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.291170"], ["updated_at", "2020-04-22 05:35:40.291170"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.299862"], ["updated_at", "2020-04-22 05:35:40.299862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.303370"], ["updated_at", "2020-04-22 05:35:40.303370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_522096


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.311625"], ["updated_at", "2020-04-22 05:35:40.311625"]]
 (0.1ms)  begin transaction

CommentTest: test_200715


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.314479"], ["updated_at", "2020-04-22 05:35:40.314479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.315019"], ["updated_at", "2020-04-22 05:35:40.315019"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.316217"], ["updated_at", "2020-04-22 05:35:40.316217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.318087"], ["updated_at", "2020-04-22 05:35:40.318087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.323751"], ["updated_at", "2020-04-22 05:35:40.323751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

CommentTest: test_557541



CommentTest: test_385925


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.332099"], ["updated_at", "2020-04-22 05:35:40.332099"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.332315"], ["updated_at", "2020-04-22 05:35:40.332315"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.333907"], ["updated_at", "2020-04-22 05:35:40.333907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.336183"], ["updated_at", "2020-04-22 05:35:40.336183"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.336020"], ["updated_at", "2020-04-22 05:35:40.336020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.339063"], ["updated_at", "2020-04-22 05:35:40.339063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_207937


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.346577"], ["updated_at", "2020-04-22 05:35:40.346577"]]
 (0.1ms)  begin transaction

CommentTest: test_46366


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.349397"], ["updated_at", "2020-04-22 05:35:40.349397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.350022"], ["updated_at", "2020-04-22 05:35:40.350022"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.350736"], ["updated_at", "2020-04-22 05:35:40.350736"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.352602"], ["updated_at", "2020-04-22 05:35:40.352602"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.354379"], ["updated_at", "2020-04-22 05:35:40.354379"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_417528


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_342200


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.360685"], ["updated_at", "2020-04-22 05:35:40.360685"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.362505"], ["updated_at", "2020-04-22 05:35:40.362505"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.363441"], ["updated_at", "2020-04-22 05:35:40.363441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.365978"], ["updated_at", "2020-04-22 05:35:40.365978"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.365082"], ["updated_at", "2020-04-22 05:35:40.365082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.370670"], ["updated_at", "2020-04-22 05:35:40.370670"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_691702


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.374682"], ["updated_at", "2020-04-22 05:35:40.374682"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.380185"], ["updated_at", "2020-04-22 05:35:40.380185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.382896"], ["updated_at", "2020-04-22 05:35:40.382896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_338832


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.388045"], ["updated_at", "2020-04-22 05:35:40.388045"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.390371"], ["updated_at", "2020-04-22 05:35:40.390371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_687359


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.392823"], ["updated_at", "2020-04-22 05:35:40.392823"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.395628"], ["updated_at", "2020-04-22 05:35:40.395628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.396830"], ["updated_at", "2020-04-22 05:35:40.396830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.399560"], ["updated_at", "2020-04-22 05:35:40.399560"]]
 (3.7ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_88841


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_814985


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.409452"], ["updated_at", "2020-04-22 05:35:40.409452"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.412225"], ["updated_at", "2020-04-22 05:35:40.412225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.412050"], ["updated_at", "2020-04-22 05:35:40.412050"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.413996"], ["updated_at", "2020-04-22 05:35:40.413996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.414355"], ["updated_at", "2020-04-22 05:35:40.414355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.416153"], ["updated_at", "2020-04-22 05:35:40.416153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_150811


 (0.0ms)  begin transaction

CommentTest: test_678517


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.424744"], ["updated_at", "2020-04-22 05:35:40.424744"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.425523"], ["updated_at", "2020-04-22 05:35:40.425523"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.427596"], ["updated_at", "2020-04-22 05:35:40.427596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.427911"], ["updated_at", "2020-04-22 05:35:40.427911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.430157"], ["updated_at", "2020-04-22 05:35:40.430157"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.429743"], ["updated_at", "2020-04-22 05:35:40.429743"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_579877


 (0.1ms)  begin transaction

CommentTest: test_752312


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.437902"], ["updated_at", "2020-04-22 05:35:40.437902"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.438143"], ["updated_at", "2020-04-22 05:35:40.438143"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.440211"], ["updated_at", "2020-04-22 05:35:40.440211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.440515"], ["updated_at", "2020-04-22 05:35:40.440515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.442195"], ["updated_at", "2020-04-22 05:35:40.442195"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.442105"], ["updated_at", "2020-04-22 05:35:40.442105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_279606


 (0.1ms)  begin transaction

CommentTest: test_455243


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.451115"], ["updated_at", "2020-04-22 05:35:40.451115"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.451335"], ["updated_at", "2020-04-22 05:35:40.451335"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.454609"], ["updated_at", "2020-04-22 05:35:40.454609"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.454715"], ["updated_at", "2020-04-22 05:35:40.454715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.456121"], ["updated_at", "2020-04-22 05:35:40.456121"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.456625"], ["updated_at", "2020-04-22 05:35:40.456625"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_156379


 (1.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_311669


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.466832"], ["updated_at", "2020-04-22 05:35:40.466832"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.468680"], ["updated_at", "2020-04-22 05:35:40.468680"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.469653"], ["updated_at", "2020-04-22 05:35:40.469653"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.471276"], ["updated_at", "2020-04-22 05:35:40.471276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.471539"], ["updated_at", "2020-04-22 05:35:40.471539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.472939"], ["updated_at", "2020-04-22 05:35:40.472939"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_969075


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.481157"], ["updated_at", "2020-04-22 05:35:40.481157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.483754"], ["updated_at", "2020-04-22 05:35:40.483754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_343111


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.485721"], ["updated_at", "2020-04-22 05:35:40.485721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.488007"], ["updated_at", "2020-04-22 05:35:40.488007"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.500351"], ["updated_at", "2020-04-22 05:35:40.500351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_418374


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.503590"], ["updated_at", "2020-04-22 05:35:40.503590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.504548"], ["updated_at", "2020-04-22 05:35:40.504548"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.508743"], ["updated_at", "2020-04-22 05:35:40.508743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.511433"], ["updated_at", "2020-04-22 05:35:40.511433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_758689


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.515661"], ["updated_at", "2020-04-22 05:35:40.515661"]]
 (0.1ms)  begin transaction

CommentTest: test_814169


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.517924"], ["updated_at", "2020-04-22 05:35:40.517924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.522053"], ["updated_at", "2020-04-22 05:35:40.522053"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.520419"], ["updated_at", "2020-04-22 05:35:40.520419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.523829"], ["updated_at", "2020-04-22 05:35:40.523829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.526191"], ["updated_at", "2020-04-22 05:35:40.526191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_536108


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.531818"], ["updated_at", "2020-04-22 05:35:40.531818"]]
 (0.1ms)  begin transaction

CommentTest: test_947466


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.534220"], ["updated_at", "2020-04-22 05:35:40.534220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.535237"], ["updated_at", "2020-04-22 05:35:40.535237"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.537005"], ["updated_at", "2020-04-22 05:35:40.537005"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.538814"], ["updated_at", "2020-04-22 05:35:40.538814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.540753"], ["updated_at", "2020-04-22 05:35:40.540753"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_624985


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.548961"], ["updated_at", "2020-04-22 05:35:40.548961"]]
 (0.1ms)  begin transaction

Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.552538"], ["updated_at", "2020-04-22 05:35:40.552538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_213689


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.554173"], ["updated_at", "2020-04-22 05:35:40.554173"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.554149"], ["updated_at", "2020-04-22 05:35:40.554149"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.556345"], ["updated_at", "2020-04-22 05:35:40.556345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.557517"], ["updated_at", "2020-04-22 05:35:40.557517"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_349293


 (0.1ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.566027"], ["updated_at", "2020-04-22 05:35:40.566027"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.568923"], ["updated_at", "2020-04-22 05:35:40.568923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.573583"], ["updated_at", "2020-04-22 05:35:40.573583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_133187


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.585131"], ["updated_at", "2020-04-22 05:35:40.585131"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.588092"], ["updated_at", "2020-04-22 05:35:40.588092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.590664"], ["updated_at", "2020-04-22 05:35:40.590664"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_951046


 (0.1ms)  begin transaction

CommentTest: test_686295


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.601325"], ["updated_at", "2020-04-22 05:35:40.601325"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.601934"], ["updated_at", "2020-04-22 05:35:40.601934"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.606066"], ["updated_at", "2020-04-22 05:35:40.606066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.606705"], ["updated_at", "2020-04-22 05:35:40.606705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.609181"], ["updated_at", "2020-04-22 05:35:40.609181"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.609091"], ["updated_at", "2020-04-22 05:35:40.609091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_27672


 (0.1ms)  begin transaction

CommentTest: test_94019


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.618164"], ["updated_at", "2020-04-22 05:35:40.618164"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.618949"], ["updated_at", "2020-04-22 05:35:40.618949"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.623126"], ["updated_at", "2020-04-22 05:35:40.623126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.624326"], ["updated_at", "2020-04-22 05:35:40.624326"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.622294"], ["updated_at", "2020-04-22 05:35:40.622294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.627269"], ["updated_at", "2020-04-22 05:35:40.627269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_406581


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.632592"], ["updated_at", "2020-04-22 05:35:40.632592"]]
 (0.1ms)  begin transaction

CommentTest: test_551390


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.635011"], ["updated_at", "2020-04-22 05:35:40.635011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.635262"], ["updated_at", "2020-04-22 05:35:40.635262"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.637474"], ["updated_at", "2020-04-22 05:35:40.637474"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.637857"], ["updated_at", "2020-04-22 05:35:40.637857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.639667"], ["updated_at", "2020-04-22 05:35:40.639667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_957849


 (0.1ms)  begin transaction

CommentTest: test_262680


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.646978"], ["updated_at", "2020-04-22 05:35:40.646978"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.647731"], ["updated_at", "2020-04-22 05:35:40.647731"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.649971"], ["updated_at", "2020-04-22 05:35:40.649971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.649686"], ["updated_at", "2020-04-22 05:35:40.649686"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.651540"], ["updated_at", "2020-04-22 05:35:40.651540"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.651899"], ["updated_at", "2020-04-22 05:35:40.651899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.6ms)  rollback transaction

CommentTest: test_457040


 (0.1ms)  begin transaction

CommentTest: test_109298


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.660607"], ["updated_at", "2020-04-22 05:35:40.660607"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.663521"], ["updated_at", "2020-04-22 05:35:40.663521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.665908"], ["updated_at", "2020-04-22 05:35:40.665908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.663634"], ["updated_at", "2020-04-22 05:35:40.663634"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_163178

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.673442"], ["updated_at", "2020-04-22 05:35:40.673442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.675510"], ["updated_at", "2020-04-22 05:35:40.675510"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.678534"], ["updated_at", "2020-04-22 05:35:40.678534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.679969"], ["updated_at", "2020-04-22 05:35:40.679969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.682494"], ["updated_at", "2020-04-22 05:35:40.682494"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_842647


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.688395"], ["updated_at", "2020-04-22 05:35:40.688395"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.691562"], ["updated_at", "2020-04-22 05:35:40.691562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_761252


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.693853"], ["updated_at", "2020-04-22 05:35:40.693853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.695696"], ["updated_at", "2020-04-22 05:35:40.695696"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_823868


Bucket Create (4.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.698988"], ["updated_at", "2020-04-22 05:35:40.698988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.705951"], ["updated_at", "2020-04-22 05:35:40.705951"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.707115"], ["updated_at", "2020-04-22 05:35:40.707115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.709438"], ["updated_at", "2020-04-22 05:35:40.709438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.711310"], ["updated_at", "2020-04-22 05:35:40.711310"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_846216


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.722293"], ["updated_at", "2020-04-22 05:35:40.722293"]]
 (0.1ms)  begin transaction

CommentTest: test_7106


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.724560"], ["updated_at", "2020-04-22 05:35:40.724560"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.724673"], ["updated_at", "2020-04-22 05:35:40.724673"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.726651"], ["updated_at", "2020-04-22 05:35:40.726651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.727080"], ["updated_at", "2020-04-22 05:35:40.727080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.729705"], ["updated_at", "2020-04-22 05:35:40.729705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_614772


 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.734510"], ["updated_at", "2020-04-22 05:35:40.734510"]]
 (0.1ms)  begin transaction

CommentTest: test_818095


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.737473"], ["updated_at", "2020-04-22 05:35:40.737473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.738934"], ["updated_at", "2020-04-22 05:35:40.738934"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.738214"], ["updated_at", "2020-04-22 05:35:40.738214"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.740632"], ["updated_at", "2020-04-22 05:35:40.740632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.743460"], ["updated_at", "2020-04-22 05:35:40.743460"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_534008


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.746854"], ["updated_at", "2020-04-22 05:35:40.746854"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.749733"], ["updated_at", "2020-04-22 05:35:40.749733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.751743"], ["updated_at", "2020-04-22 05:35:40.751743"]]
 (0.1ms)  begin transaction

CommentTest: test_554597


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.755522"], ["updated_at", "2020-04-22 05:35:40.755522"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (3.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.758011"], ["updated_at", "2020-04-22 05:35:40.758011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_671706


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.762702"], ["updated_at", "2020-04-22 05:35:40.762702"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.762761"], ["updated_at", "2020-04-22 05:35:40.762761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.765469"], ["updated_at", "2020-04-22 05:35:40.765469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.767354"], ["updated_at", "2020-04-22 05:35:40.767354"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_658306


 (2.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.778643"], ["updated_at", "2020-04-22 05:35:40.778643"]]
 (0.1ms)  begin transaction

CommentTest: test_482361


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.781287"], ["updated_at", "2020-04-22 05:35:40.781287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.781372"], ["updated_at", "2020-04-22 05:35:40.781372"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.783239"], ["updated_at", "2020-04-22 05:35:40.783239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.783949"], ["updated_at", "2020-04-22 05:35:40.783949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.788494"], ["updated_at", "2020-04-22 05:35:40.788494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_345986


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.793167"], ["updated_at", "2020-04-22 05:35:40.793167"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.798379"], ["updated_at", "2020-04-22 05:35:40.798379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.800621"], ["updated_at", "2020-04-22 05:35:40.800621"]]

CommentTest: test_791601


 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.804942"], ["updated_at", "2020-04-22 05:35:40.804942"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.808380"], ["updated_at", "2020-04-22 05:35:40.808380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_66755


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.812094"], ["updated_at", "2020-04-22 05:35:40.812094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.812025"], ["updated_at", "2020-04-22 05:35:40.812025"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.814359"], ["updated_at", "2020-04-22 05:35:40.814359"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.815752"], ["updated_at", "2020-04-22 05:35:40.815752"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_436836


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.820174"], ["updated_at", "2020-04-22 05:35:40.820174"]]
 (0.2ms)  begin transaction

CommentTest: test_145944


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.824153"], ["updated_at", "2020-04-22 05:35:40.824153"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.825878"], ["updated_at", "2020-04-22 05:35:40.825878"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.825598"], ["updated_at", "2020-04-22 05:35:40.825598"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.828618"], ["updated_at", "2020-04-22 05:35:40.828618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.830481"], ["updated_at", "2020-04-22 05:35:40.830481"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_299123


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.833539"], ["updated_at", "2020-04-22 05:35:40.833539"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.836798"], ["updated_at", "2020-04-22 05:35:40.836798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_895236


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.839260"], ["updated_at", "2020-04-22 05:35:40.839260"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.839425"], ["updated_at", "2020-04-22 05:35:40.839425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.843172"], ["updated_at", "2020-04-22 05:35:40.843172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.845410"], ["updated_at", "2020-04-22 05:35:40.845410"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_629109


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.850928"], ["updated_at", "2020-04-22 05:35:40.850928"]]
 (0.1ms)  begin transaction

CommentTest: test_463534


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.853276"], ["updated_at", "2020-04-22 05:35:40.853276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.853852"], ["updated_at", "2020-04-22 05:35:40.853852"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.854783"], ["updated_at", "2020-04-22 05:35:40.854783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.855823"], ["updated_at", "2020-04-22 05:35:40.855823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.857129"], ["updated_at", "2020-04-22 05:35:40.857129"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_342982


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_235902

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.865446"], ["updated_at", "2020-04-22 05:35:40.865446"]]

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.867893"], ["updated_at", "2020-04-22 05:35:40.867893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.871512"], ["updated_at", "2020-04-22 05:35:40.871512"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.867627"], ["updated_at", "2020-04-22 05:35:40.867627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415602


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.881234"], ["updated_at", "2020-04-22 05:35:40.881234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.883764"], ["updated_at", "2020-04-22 05:35:40.883764"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.883242"], ["updated_at", "2020-04-22 05:35:40.883242"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.886582"], ["updated_at", "2020-04-22 05:35:40.886582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.888313"], ["updated_at", "2020-04-22 05:35:40.888313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_586490


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.895224"], ["updated_at", "2020-04-22 05:35:40.895224"]]
 (0.1ms)  begin transaction

CommentTest: test_9030


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.898834"], ["updated_at", "2020-04-22 05:35:40.898834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.900066"], ["updated_at", "2020-04-22 05:35:40.900066"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.901512"], ["updated_at", "2020-04-22 05:35:40.901512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.905952"], ["updated_at", "2020-04-22 05:35:40.905952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.909141"], ["updated_at", "2020-04-22 05:35:40.909141"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_27631


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.912164"], ["updated_at", "2020-04-22 05:35:40.912164"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.915211"], ["updated_at", "2020-04-22 05:35:40.915211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.916995"], ["updated_at", "2020-04-22 05:35:40.916995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_901096


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.919841"], ["updated_at", "2020-04-22 05:35:40.919841"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.924130"], ["updated_at", "2020-04-22 05:35:40.924130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_641683


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.926724"], ["updated_at", "2020-04-22 05:35:40.926724"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.926495"], ["updated_at", "2020-04-22 05:35:40.926495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.929364"], ["updated_at", "2020-04-22 05:35:40.929364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.931643"], ["updated_at", "2020-04-22 05:35:40.931643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_930610


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_105248


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.940538"], ["updated_at", "2020-04-22 05:35:40.940538"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.941664"], ["updated_at", "2020-04-22 05:35:40.941664"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.943381"], ["updated_at", "2020-04-22 05:35:40.943381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.944542"], ["updated_at", "2020-04-22 05:35:40.944542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.945384"], ["updated_at", "2020-04-22 05:35:40.945384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.946538"], ["updated_at", "2020-04-22 05:35:40.946538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_732153


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.951941"], ["updated_at", "2020-04-22 05:35:40.951941"]]
 (0.1ms)  begin transaction

CommentTest: test_722565


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.955451"], ["updated_at", "2020-04-22 05:35:40.955451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.955342"], ["updated_at", "2020-04-22 05:35:40.955342"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.957804"], ["updated_at", "2020-04-22 05:35:40.957804"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.958078"], ["updated_at", "2020-04-22 05:35:40.958078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.959620"], ["updated_at", "2020-04-22 05:35:40.959620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_526325


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.967401"], ["updated_at", "2020-04-22 05:35:40.967401"]]

CommentTest: test_995733


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.970490"], ["updated_at", "2020-04-22 05:35:40.970490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.971506"], ["updated_at", "2020-04-22 05:35:40.971506"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.972480"], ["updated_at", "2020-04-22 05:35:40.972480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.974283"], ["updated_at", "2020-04-22 05:35:40.974283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.976825"], ["updated_at", "2020-04-22 05:35:40.976825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_964487


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.982961"], ["updated_at", "2020-04-22 05:35:40.982961"]]
 (0.3ms)  begin transaction

CommentTest: test_503773


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.985713"], ["updated_at", "2020-04-22 05:35:40.985713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.988070"], ["updated_at", "2020-04-22 05:35:40.988070"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.987651"], ["updated_at", "2020-04-22 05:35:40.987651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:40.989999"], ["updated_at", "2020-04-22 05:35:40.989999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:40.992246"], ["updated_at", "2020-04-22 05:35:40.992246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_824423


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:40.996902"], ["updated_at", "2020-04-22 05:35:40.996902"]]
 (0.2ms)  begin transaction

CommentTest: test_803346


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.001901"], ["updated_at", "2020-04-22 05:35:41.001901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.004426"], ["updated_at", "2020-04-22 05:35:41.004426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.002836"], ["updated_at", "2020-04-22 05:35:41.002836"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.016561"], ["updated_at", "2020-04-22 05:35:41.016561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.018412"], ["updated_at", "2020-04-22 05:35:41.018412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_257741


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.027723"], ["updated_at", "2020-04-22 05:35:41.027723"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.030078"], ["updated_at", "2020-04-22 05:35:41.030078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_606597


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.032076"], ["updated_at", "2020-04-22 05:35:41.032076"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.031949"], ["updated_at", "2020-04-22 05:35:41.031949"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.034818"], ["updated_at", "2020-04-22 05:35:41.034818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.038171"], ["updated_at", "2020-04-22 05:35:41.038171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_857332


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.044089"], ["updated_at", "2020-04-22 05:35:41.044089"]]
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.049485"], ["updated_at", "2020-04-22 05:35:41.049485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_924347


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.051608"], ["updated_at", "2020-04-22 05:35:41.051608"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.052501"], ["updated_at", "2020-04-22 05:35:41.052501"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.054105"], ["updated_at", "2020-04-22 05:35:41.054105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.055382"], ["updated_at", "2020-04-22 05:35:41.055382"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_446969


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.058858"], ["updated_at", "2020-04-22 05:35:41.058858"]]
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.061693"], ["updated_at", "2020-04-22 05:35:41.061693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_218714


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.064476"], ["updated_at", "2020-04-22 05:35:41.064476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.064402"], ["updated_at", "2020-04-22 05:35:41.064402"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.067828"], ["updated_at", "2020-04-22 05:35:41.067828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.072385"], ["updated_at", "2020-04-22 05:35:41.072385"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_699477


 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.077668"], ["updated_at", "2020-04-22 05:35:41.077668"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_185515


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.080969"], ["updated_at", "2020-04-22 05:35:41.080969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.082237"], ["updated_at", "2020-04-22 05:35:41.082237"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.083101"], ["updated_at", "2020-04-22 05:35:41.083101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.085813"], ["updated_at", "2020-04-22 05:35:41.085813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.087890"], ["updated_at", "2020-04-22 05:35:41.087890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_701299


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.092844"], ["updated_at", "2020-04-22 05:35:41.092844"]]
 (0.1ms)  begin transaction

CommentTest: test_891576


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.096646"], ["updated_at", "2020-04-22 05:35:41.096646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.097139"], ["updated_at", "2020-04-22 05:35:41.097139"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.098885"], ["updated_at", "2020-04-22 05:35:41.098885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.099746"], ["updated_at", "2020-04-22 05:35:41.099746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.101887"], ["updated_at", "2020-04-22 05:35:41.101887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_33763


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_12151


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.112918"], ["updated_at", "2020-04-22 05:35:41.112918"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.109129"], ["updated_at", "2020-04-22 05:35:41.109129"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.115269"], ["updated_at", "2020-04-22 05:35:41.115269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.115902"], ["updated_at", "2020-04-22 05:35:41.115902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.117435"], ["updated_at", "2020-04-22 05:35:41.117435"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.117731"], ["updated_at", "2020-04-22 05:35:41.117731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_427840


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_755492


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.128338"], ["updated_at", "2020-04-22 05:35:41.128338"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.130662"], ["updated_at", "2020-04-22 05:35:41.130662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.130314"], ["updated_at", "2020-04-22 05:35:41.130314"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.132120"], ["updated_at", "2020-04-22 05:35:41.132120"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.132735"], ["updated_at", "2020-04-22 05:35:41.132735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.134759"], ["updated_at", "2020-04-22 05:35:41.134759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_806558


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.141507"], ["updated_at", "2020-04-22 05:35:41.141507"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.145090"], ["updated_at", "2020-04-22 05:35:41.145090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (3.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.149368"], ["updated_at", "2020-04-22 05:35:41.149368"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_366784


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.162920"], ["updated_at", "2020-04-22 05:35:41.162920"]]
 (0.1ms)  begin transaction

CommentTest: test_766971


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.165421"], ["updated_at", "2020-04-22 05:35:41.165421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.166726"], ["updated_at", "2020-04-22 05:35:41.166726"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.166014"], ["updated_at", "2020-04-22 05:35:41.166014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.168447"], ["updated_at", "2020-04-22 05:35:41.168447"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.171019"], ["updated_at", "2020-04-22 05:35:41.171019"]]
 (0.5ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_380199


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.174830"], ["updated_at", "2020-04-22 05:35:41.174830"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.179530"], ["updated_at", "2020-04-22 05:35:41.179530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.181889"], ["updated_at", "2020-04-22 05:35:41.181889"]]

CommentTest: test_971841


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.184242"], ["updated_at", "2020-04-22 05:35:41.184242"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.186956"], ["updated_at", "2020-04-22 05:35:41.186956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.189055"], ["updated_at", "2020-04-22 05:35:41.189055"]]
 (4.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_336933


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.197317"], ["updated_at", "2020-04-22 05:35:41.197317"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.200184"], ["updated_at", "2020-04-22 05:35:41.200184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.202335"], ["updated_at", "2020-04-22 05:35:41.202335"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_381318


 (0.9ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.206601"], ["updated_at", "2020-04-22 05:35:41.206601"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_522170


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.214740"], ["updated_at", "2020-04-22 05:35:41.214740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.217245"], ["updated_at", "2020-04-22 05:35:41.217245"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.216550"], ["updated_at", "2020-04-22 05:35:41.216550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.219875"], ["updated_at", "2020-04-22 05:35:41.219875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.222587"], ["updated_at", "2020-04-22 05:35:41.222587"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_309355


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.229879"], ["updated_at", "2020-04-22 05:35:41.229879"]]
 (0.1ms)  begin transaction

CommentTest: test_119687


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.232290"], ["updated_at", "2020-04-22 05:35:41.232290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.232602"], ["updated_at", "2020-04-22 05:35:41.232602"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.234810"], ["updated_at", "2020-04-22 05:35:41.234810"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.234991"], ["updated_at", "2020-04-22 05:35:41.234991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.237681"], ["updated_at", "2020-04-22 05:35:41.237681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_569505


 (0.1ms)  begin transaction

CommentTest: test_306865


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.246817"], ["updated_at", "2020-04-22 05:35:41.246817"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.247958"], ["updated_at", "2020-04-22 05:35:41.247958"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.249621"], ["updated_at", "2020-04-22 05:35:41.249621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.250849"], ["updated_at", "2020-04-22 05:35:41.250849"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.250547"], ["updated_at", "2020-04-22 05:35:41.250547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.252457"], ["updated_at", "2020-04-22 05:35:41.252457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_497066


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_52586


Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.258881"], ["updated_at", "2020-04-22 05:35:41.258881"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.261688"], ["updated_at", "2020-04-22 05:35:41.261688"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.262485"], ["updated_at", "2020-04-22 05:35:41.262485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.263423"], ["updated_at", "2020-04-22 05:35:41.263423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.264575"], ["updated_at", "2020-04-22 05:35:41.264575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.265219"], ["updated_at", "2020-04-22 05:35:41.265219"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  begin transaction

CommentTest: test_213507


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.270848"], ["updated_at", "2020-04-22 05:35:41.270848"]]
 (0.1ms)  begin transaction

CommentTest: test_234516


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.272744"], ["updated_at", "2020-04-22 05:35:41.272744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.273329"], ["updated_at", "2020-04-22 05:35:41.273329"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.274200"], ["updated_at", "2020-04-22 05:35:41.274200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.276087"], ["updated_at", "2020-04-22 05:35:41.276087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.279524"], ["updated_at", "2020-04-22 05:35:41.279524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_454251


 (0.1ms)  begin transaction

CommentTest: test_884412


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.288881"], ["updated_at", "2020-04-22 05:35:41.288881"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.289740"], ["updated_at", "2020-04-22 05:35:41.289740"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.291306"], ["updated_at", "2020-04-22 05:35:41.291306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.292055"], ["updated_at", "2020-04-22 05:35:41.292055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.293444"], ["updated_at", "2020-04-22 05:35:41.293444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.296715"], ["updated_at", "2020-04-22 05:35:41.296715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_697191


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.304048"], ["updated_at", "2020-04-22 05:35:41.304048"]]

CommentTest: test_258160


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.306290"], ["updated_at", "2020-04-22 05:35:41.306290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.308082"], ["updated_at", "2020-04-22 05:35:41.308082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.306169"], ["updated_at", "2020-04-22 05:35:41.306169"]]
 (1.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.324221"], ["updated_at", "2020-04-22 05:35:41.324221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_462965


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.326818"], ["updated_at", "2020-04-22 05:35:41.326818"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.326779"], ["updated_at", "2020-04-22 05:35:41.326779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.329698"], ["updated_at", "2020-04-22 05:35:41.329698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.332395"], ["updated_at", "2020-04-22 05:35:41.332395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_722828



CommentTest: test_864054


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.345374"], ["updated_at", "2020-04-22 05:35:41.345374"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.346209"], ["updated_at", "2020-04-22 05:35:41.346209"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.349002"], ["updated_at", "2020-04-22 05:35:41.349002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.349890"], ["updated_at", "2020-04-22 05:35:41.349890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.351091"], ["updated_at", "2020-04-22 05:35:41.351091"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.351708"], ["updated_at", "2020-04-22 05:35:41.351708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (2.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_223205


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.364958"], ["updated_at", "2020-04-22 05:35:41.364958"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.367520"], ["updated_at", "2020-04-22 05:35:41.367520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.369726"], ["updated_at", "2020-04-22 05:35:41.369726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_777114


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.372599"], ["updated_at", "2020-04-22 05:35:41.372599"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.374330"], ["updated_at", "2020-04-22 05:35:41.374330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_350848


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.376079"], ["updated_at", "2020-04-22 05:35:41.376079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.377466"], ["updated_at", "2020-04-22 05:35:41.377466"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.381939"], ["updated_at", "2020-04-22 05:35:41.381939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_786609


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.385109"], ["updated_at", "2020-04-22 05:35:41.385109"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.386157"], ["updated_at", "2020-04-22 05:35:41.386157"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.388575"], ["updated_at", "2020-04-22 05:35:41.388575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.390562"], ["updated_at", "2020-04-22 05:35:41.390562"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_167655


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.396411"], ["updated_at", "2020-04-22 05:35:41.396411"]]
 (0.1ms)  begin transaction

CommentTest: test_681904


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.399443"], ["updated_at", "2020-04-22 05:35:41.399443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.399953"], ["updated_at", "2020-04-22 05:35:41.399953"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.402655"], ["updated_at", "2020-04-22 05:35:41.402655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.406427"], ["updated_at", "2020-04-22 05:35:41.406427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.401382"], ["updated_at", "2020-04-22 05:35:41.401382"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_197407


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.415873"], ["updated_at", "2020-04-22 05:35:41.415873"]]
 (0.1ms)  begin transaction

CommentTest: test_30688


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.419098"], ["updated_at", "2020-04-22 05:35:41.419098"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.421835"], ["updated_at", "2020-04-22 05:35:41.421835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.418785"], ["updated_at", "2020-04-22 05:35:41.418785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.424253"], ["updated_at", "2020-04-22 05:35:41.424253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.424312"], ["updated_at", "2020-04-22 05:35:41.424312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_271612

 (0.1ms)  begin transaction


CommentTest: test_734621


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.439240"], ["updated_at", "2020-04-22 05:35:41.439240"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.439262"], ["updated_at", "2020-04-22 05:35:41.439262"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.440960"], ["updated_at", "2020-04-22 05:35:41.440960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.441781"], ["updated_at", "2020-04-22 05:35:41.441781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.442499"], ["updated_at", "2020-04-22 05:35:41.442499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.443723"], ["updated_at", "2020-04-22 05:35:41.443723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_594677


 (0.1ms)  begin transaction

CommentTest: test_523936


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.451644"], ["updated_at", "2020-04-22 05:35:41.451644"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.452334"], ["updated_at", "2020-04-22 05:35:41.452334"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.455836"], ["updated_at", "2020-04-22 05:35:41.455836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.456865"], ["updated_at", "2020-04-22 05:35:41.456865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.457460"], ["updated_at", "2020-04-22 05:35:41.457460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.458146"], ["updated_at", "2020-04-22 05:35:41.458146"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_899361


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_141048


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.466518"], ["updated_at", "2020-04-22 05:35:41.466518"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.469150"], ["updated_at", "2020-04-22 05:35:41.469150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.467716"], ["updated_at", "2020-04-22 05:35:41.467716"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.470539"], ["updated_at", "2020-04-22 05:35:41.470539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.471010"], ["updated_at", "2020-04-22 05:35:41.471010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.472855"], ["updated_at", "2020-04-22 05:35:41.472855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_208057


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.479352"], ["updated_at", "2020-04-22 05:35:41.479352"]]
 (1.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.482516"], ["updated_at", "2020-04-22 05:35:41.482516"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_491456


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.484446"], ["updated_at", "2020-04-22 05:35:41.484446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_790671


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.521447"], ["updated_at", "2020-04-22 05:35:41.521447"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.523973"], ["updated_at", "2020-04-22 05:35:41.523973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.528449"], ["updated_at", "2020-04-22 05:35:41.528449"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_823328


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.559637"], ["updated_at", "2020-04-22 05:35:41.559637"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.566237"], ["updated_at", "2020-04-22 05:35:41.566237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.568401"], ["updated_at", "2020-04-22 05:35:41.568401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_479304


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.581178"], ["updated_at", "2020-04-22 05:35:41.581178"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.583803"], ["updated_at", "2020-04-22 05:35:41.583803"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.586672"], ["updated_at", "2020-04-22 05:35:41.586672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_844028


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.599213"], ["updated_at", "2020-04-22 05:35:41.599213"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.603164"], ["updated_at", "2020-04-22 05:35:41.603164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.605879"], ["updated_at", "2020-04-22 05:35:41.605879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_967479


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.615185"], ["updated_at", "2020-04-22 05:35:41.615185"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.618528"], ["updated_at", "2020-04-22 05:35:41.618528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.621325"], ["updated_at", "2020-04-22 05:35:41.621325"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_183553


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.632528"], ["updated_at", "2020-04-22 05:35:41.632528"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.636447"], ["updated_at", "2020-04-22 05:35:41.636447"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.639412"], ["updated_at", "2020-04-22 05:35:41.639412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_441520


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.660810"], ["updated_at", "2020-04-22 05:35:41.660810"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.663644"], ["updated_at", "2020-04-22 05:35:41.663644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.665978"], ["updated_at", "2020-04-22 05:35:41.665978"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_664197


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.679254"], ["updated_at", "2020-04-22 05:35:41.679254"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.682463"], ["updated_at", "2020-04-22 05:35:41.682463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.685198"], ["updated_at", "2020-04-22 05:35:41.685198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_697111


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.695187"], ["updated_at", "2020-04-22 05:35:41.695187"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.698292"], ["updated_at", "2020-04-22 05:35:41.698292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.699587"], ["updated_at", "2020-04-22 05:35:41.699587"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_794251


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.712788"], ["updated_at", "2020-04-22 05:35:41.712788"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.719051"], ["updated_at", "2020-04-22 05:35:41.719051"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.721431"], ["updated_at", "2020-04-22 05:35:41.721431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_252128


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.736241"], ["updated_at", "2020-04-22 05:35:41.736241"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.739795"], ["updated_at", "2020-04-22 05:35:41.739795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.742499"], ["updated_at", "2020-04-22 05:35:41.742499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.2ms)  begin transaction

CommentTest: test_402793


 (0.1ms)  SAVEPOINT active_record_1
Course Create (6.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.758281"], ["updated_at", "2020-04-22 05:35:41.758281"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.767206"], ["updated_at", "2020-04-22 05:35:41.767206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.770620"], ["updated_at", "2020-04-22 05:35:41.770620"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_581366


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.780361"], ["updated_at", "2020-04-22 05:35:41.780361"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.783377"], ["updated_at", "2020-04-22 05:35:41.783377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.785657"], ["updated_at", "2020-04-22 05:35:41.785657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_273878


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.800933"], ["updated_at", "2020-04-22 05:35:41.800933"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.803493"], ["updated_at", "2020-04-22 05:35:41.803493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.805612"], ["updated_at", "2020-04-22 05:35:41.805612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_88390


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.815763"], ["updated_at", "2020-04-22 05:35:41.815763"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.818410"], ["updated_at", "2020-04-22 05:35:41.818410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.823376"], ["updated_at", "2020-04-22 05:35:41.823376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_950017


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.837153"], ["updated_at", "2020-04-22 05:35:41.837153"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.839825"], ["updated_at", "2020-04-22 05:35:41.839825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.841775"], ["updated_at", "2020-04-22 05:35:41.841775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_379068


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.856878"], ["updated_at", "2020-04-22 05:35:41.856878"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:41.860451"], ["updated_at", "2020-04-22 05:35:41.860451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:41.865415"], ["updated_at", "2020-04-22 05:35:41.865415"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_219716


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.890852"], ["updated_at", "2020-04-22 05:35:41.890852"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:41.484624"], ["updated_at", "2020-04-22 05:35:41.484624"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.049123"], ["updated_at", "2020-04-22 05:35:42.049123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.051323"], ["updated_at", "2020-04-22 05:35:42.051323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_538087


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.074739"], ["updated_at", "2020-04-22 05:35:42.074739"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.077706"], ["updated_at", "2020-04-22 05:35:42.077706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.079797"], ["updated_at", "2020-04-22 05:35:42.079797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_653501


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.095799"], ["updated_at", "2020-04-22 05:35:42.095799"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.098895"], ["updated_at", "2020-04-22 05:35:42.098895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.101677"], ["updated_at", "2020-04-22 05:35:42.101677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_452563


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.117443"], ["updated_at", "2020-04-22 05:35:42.117443"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.124001"], ["updated_at", "2020-04-22 05:35:42.124001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.126187"], ["updated_at", "2020-04-22 05:35:42.126187"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_632097


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.140423"], ["updated_at", "2020-04-22 05:35:42.140423"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.143093"], ["updated_at", "2020-04-22 05:35:42.143093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.145701"], ["updated_at", "2020-04-22 05:35:42.145701"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_176872


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.158852"], ["updated_at", "2020-04-22 05:35:42.158852"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.162631"], ["updated_at", "2020-04-22 05:35:42.162631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.165031"], ["updated_at", "2020-04-22 05:35:42.165031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_99713


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.174126"], ["updated_at", "2020-04-22 05:35:42.174126"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.182772"], ["updated_at", "2020-04-22 05:35:42.182772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.186599"], ["updated_at", "2020-04-22 05:35:42.186599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_273758


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.196456"], ["updated_at", "2020-04-22 05:35:42.196456"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.203500"], ["updated_at", "2020-04-22 05:35:42.203500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.205789"], ["updated_at", "2020-04-22 05:35:42.205789"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_312422


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.222561"], ["updated_at", "2020-04-22 05:35:42.222561"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.225083"], ["updated_at", "2020-04-22 05:35:42.225083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.227282"], ["updated_at", "2020-04-22 05:35:42.227282"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_970681


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.242449"], ["updated_at", "2020-04-22 05:35:42.242449"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.245856"], ["updated_at", "2020-04-22 05:35:42.245856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.249104"], ["updated_at", "2020-04-22 05:35:42.249104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_207970


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.261687"], ["updated_at", "2020-04-22 05:35:42.261687"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.269096"], ["updated_at", "2020-04-22 05:35:42.269096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.271428"], ["updated_at", "2020-04-22 05:35:42.271428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_567541


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.284591"], ["updated_at", "2020-04-22 05:35:42.284591"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.289415"], ["updated_at", "2020-04-22 05:35:42.289415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.291552"], ["updated_at", "2020-04-22 05:35:42.291552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_105789


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.306812"], ["updated_at", "2020-04-22 05:35:42.306812"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.309376"], ["updated_at", "2020-04-22 05:35:42.309376"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.313942"], ["updated_at", "2020-04-22 05:35:42.313942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_929925


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.329952"], ["updated_at", "2020-04-22 05:35:42.329952"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.333302"], ["updated_at", "2020-04-22 05:35:42.333302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.341523"], ["updated_at", "2020-04-22 05:35:42.341523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_855469


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.358413"], ["updated_at", "2020-04-22 05:35:42.358413"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.361180"], ["updated_at", "2020-04-22 05:35:42.361180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.364497"], ["updated_at", "2020-04-22 05:35:42.364497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_38208


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.375207"], ["updated_at", "2020-04-22 05:35:42.375207"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.377412"], ["updated_at", "2020-04-22 05:35:42.377412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.379759"], ["updated_at", "2020-04-22 05:35:42.379759"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_183667


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.391449"], ["updated_at", "2020-04-22 05:35:42.391449"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.394164"], ["updated_at", "2020-04-22 05:35:42.394164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.397877"], ["updated_at", "2020-04-22 05:35:42.397877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_61032


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.411822"], ["updated_at", "2020-04-22 05:35:42.411822"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.416056"], ["updated_at", "2020-04-22 05:35:42.416056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.418549"], ["updated_at", "2020-04-22 05:35:42.418549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_851928


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.434333"], ["updated_at", "2020-04-22 05:35:42.434333"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.439814"], ["updated_at", "2020-04-22 05:35:42.439814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.442848"], ["updated_at", "2020-04-22 05:35:42.442848"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.457689"], ["updated_at", "2020-04-22 05:35:42.457689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_254487


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.460025"], ["updated_at", "2020-04-22 05:35:42.460025"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.460261"], ["updated_at", "2020-04-22 05:35:42.460261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.463773"], ["updated_at", "2020-04-22 05:35:42.463773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.465872"], ["updated_at", "2020-04-22 05:35:42.465872"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_792515


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_82829


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.479956"], ["updated_at", "2020-04-22 05:35:42.479956"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.482268"], ["updated_at", "2020-04-22 05:35:42.482268"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.482817"], ["updated_at", "2020-04-22 05:35:42.482817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.484700"], ["updated_at", "2020-04-22 05:35:42.484700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.484813"], ["updated_at", "2020-04-22 05:35:42.484813"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.487476"], ["updated_at", "2020-04-22 05:35:42.487476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_481348


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.493195"], ["updated_at", "2020-04-22 05:35:42.493195"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.495569"], ["updated_at", "2020-04-22 05:35:42.495569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_695299


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.497428"], ["updated_at", "2020-04-22 05:35:42.497428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.497747"], ["updated_at", "2020-04-22 05:35:42.497747"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.500246"], ["updated_at", "2020-04-22 05:35:42.500246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.504238"], ["updated_at", "2020-04-22 05:35:42.504238"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_144846


 (0.1ms)  begin transaction

CommentTest: test_528828


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.517388"], ["updated_at", "2020-04-22 05:35:42.517388"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.518203"], ["updated_at", "2020-04-22 05:35:42.518203"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.525040"], ["updated_at", "2020-04-22 05:35:42.525040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.520088"], ["updated_at", "2020-04-22 05:35:42.520088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.530030"], ["updated_at", "2020-04-22 05:35:42.530030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.531989"], ["updated_at", "2020-04-22 05:35:42.531989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_943561


 (0.1ms)  begin transaction

CommentTest: test_322590


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.549167"], ["updated_at", "2020-04-22 05:35:42.549167"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.549458"], ["updated_at", "2020-04-22 05:35:42.549458"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.553694"], ["updated_at", "2020-04-22 05:35:42.553694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.554213"], ["updated_at", "2020-04-22 05:35:42.554213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.556362"], ["updated_at", "2020-04-22 05:35:42.556362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.558575"], ["updated_at", "2020-04-22 05:35:42.558575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_962899


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.574313"], ["updated_at", "2020-04-22 05:35:42.574313"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.584265"], ["updated_at", "2020-04-22 05:35:42.584265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.586764"], ["updated_at", "2020-04-22 05:35:42.586764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_54833


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.589597"], ["updated_at", "2020-04-22 05:35:42.589597"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.592603"], ["updated_at", "2020-04-22 05:35:42.592603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_87931


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.595411"], ["updated_at", "2020-04-22 05:35:42.595411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.596489"], ["updated_at", "2020-04-22 05:35:42.596489"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.599589"], ["updated_at", "2020-04-22 05:35:42.599589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.601599"], ["updated_at", "2020-04-22 05:35:42.601599"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_68578


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.603834"], ["updated_at", "2020-04-22 05:35:42.603834"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.606151"], ["updated_at", "2020-04-22 05:35:42.606151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.607998"], ["updated_at", "2020-04-22 05:35:42.607998"]]

CommentTest: test_258486


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.610109"], ["updated_at", "2020-04-22 05:35:42.610109"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_485628


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.621157"], ["updated_at", "2020-04-22 05:35:42.621157"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.613969"], ["updated_at", "2020-04-22 05:35:42.613969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.624542"], ["updated_at", "2020-04-22 05:35:42.624542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.624849"], ["updated_at", "2020-04-22 05:35:42.624849"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.626992"], ["updated_at", "2020-04-22 05:35:42.626992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_924341


 (0.1ms)  begin transaction

CommentTest: test_949066


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.637093"], ["updated_at", "2020-04-22 05:35:42.637093"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.640637"], ["updated_at", "2020-04-22 05:35:42.640637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.643881"], ["updated_at", "2020-04-22 05:35:42.643881"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.638007"], ["updated_at", "2020-04-22 05:35:42.638007"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.651661"], ["updated_at", "2020-04-22 05:35:42.651661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.656336"], ["updated_at", "2020-04-22 05:35:42.656336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_582891


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.659330"], ["updated_at", "2020-04-22 05:35:42.659330"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.664508"], ["updated_at", "2020-04-22 05:35:42.664508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.667080"], ["updated_at", "2020-04-22 05:35:42.667080"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_698944


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.670964"], ["updated_at", "2020-04-22 05:35:42.670964"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.673938"], ["updated_at", "2020-04-22 05:35:42.673938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_512159


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.676615"], ["updated_at", "2020-04-22 05:35:42.676615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.676965"], ["updated_at", "2020-04-22 05:35:42.676965"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.681120"], ["updated_at", "2020-04-22 05:35:42.681120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.682847"], ["updated_at", "2020-04-22 05:35:42.682847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_325760

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.689767"], ["updated_at", "2020-04-22 05:35:42.689767"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_638728


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.692824"], ["updated_at", "2020-04-22 05:35:42.692824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.695663"], ["updated_at", "2020-04-22 05:35:42.695663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.694334"], ["updated_at", "2020-04-22 05:35:42.694334"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.699524"], ["updated_at", "2020-04-22 05:35:42.699524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.701517"], ["updated_at", "2020-04-22 05:35:42.701517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_393846


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.707033"], ["updated_at", "2020-04-22 05:35:42.707033"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.709398"], ["updated_at", "2020-04-22 05:35:42.709398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_516091


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.711588"], ["updated_at", "2020-04-22 05:35:42.711588"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.711299"], ["updated_at", "2020-04-22 05:35:42.711299"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.715858"], ["updated_at", "2020-04-22 05:35:42.715858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.717786"], ["updated_at", "2020-04-22 05:35:42.717786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_981885


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.721869"], ["updated_at", "2020-04-22 05:35:42.721869"]]
 (0.0ms)  begin transaction

CommentTest: test_232243


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.724823"], ["updated_at", "2020-04-22 05:35:42.724823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.724657"], ["updated_at", "2020-04-22 05:35:42.724657"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.728391"], ["updated_at", "2020-04-22 05:35:42.728391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.731980"], ["updated_at", "2020-04-22 05:35:42.731980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.734064"], ["updated_at", "2020-04-22 05:35:42.734064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_70235


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_663434


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.740813"], ["updated_at", "2020-04-22 05:35:42.740813"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.744090"], ["updated_at", "2020-04-22 05:35:42.744090"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.745891"], ["updated_at", "2020-04-22 05:35:42.745891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.746633"], ["updated_at", "2020-04-22 05:35:42.746633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.749665"], ["updated_at", "2020-04-22 05:35:42.749665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_872852


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.759334"], ["updated_at", "2020-04-22 05:35:42.759334"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.761808"], ["updated_at", "2020-04-22 05:35:42.761808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.763448"], ["updated_at", "2020-04-22 05:35:42.763448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_394424


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.784515"], ["updated_at", "2020-04-22 05:35:42.784515"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.789225"], ["updated_at", "2020-04-22 05:35:42.789225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.792846"], ["updated_at", "2020-04-22 05:35:42.792846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_228521


 (2.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.809396"], ["updated_at", "2020-04-22 05:35:42.809396"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.817774"], ["updated_at", "2020-04-22 05:35:42.817774"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.821979"], ["updated_at", "2020-04-22 05:35:42.821979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_599658


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.829217"], ["updated_at", "2020-04-22 05:35:42.829217"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.831439"], ["updated_at", "2020-04-22 05:35:42.831439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.833395"], ["updated_at", "2020-04-22 05:35:42.833395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_815036


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.843169"], ["updated_at", "2020-04-22 05:35:42.843169"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.847124"], ["updated_at", "2020-04-22 05:35:42.847124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.849785"], ["updated_at", "2020-04-22 05:35:42.849785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_345351


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.860241"], ["updated_at", "2020-04-22 05:35:42.860241"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.865472"], ["updated_at", "2020-04-22 05:35:42.865472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.867887"], ["updated_at", "2020-04-22 05:35:42.867887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_144479


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.882179"], ["updated_at", "2020-04-22 05:35:42.882179"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.885282"], ["updated_at", "2020-04-22 05:35:42.885282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.887683"], ["updated_at", "2020-04-22 05:35:42.887683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_469414


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.900588"], ["updated_at", "2020-04-22 05:35:42.900588"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.904900"], ["updated_at", "2020-04-22 05:35:42.904900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.909755"], ["updated_at", "2020-04-22 05:35:42.909755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_98163


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.917790"], ["updated_at", "2020-04-22 05:35:42.917790"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.922728"], ["updated_at", "2020-04-22 05:35:42.922728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.924329"], ["updated_at", "2020-04-22 05:35:42.924329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_215434


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.941330"], ["updated_at", "2020-04-22 05:35:42.941330"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.947294"], ["updated_at", "2020-04-22 05:35:42.947294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.950729"], ["updated_at", "2020-04-22 05:35:42.950729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_838196


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:42.972803"], ["updated_at", "2020-04-22 05:35:42.972803"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:42.976489"], ["updated_at", "2020-04-22 05:35:42.976489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.990360"], ["updated_at", "2020-04-22 05:35:42.990360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_585452


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.022695"], ["updated_at", "2020-04-22 05:35:43.022695"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.027005"], ["updated_at", "2020-04-22 05:35:43.027005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.030076"], ["updated_at", "2020-04-22 05:35:43.030076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_973624


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.041843"], ["updated_at", "2020-04-22 05:35:43.041843"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.045938"], ["updated_at", "2020-04-22 05:35:43.045938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.052097"], ["updated_at", "2020-04-22 05:35:43.052097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_500526


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.059372"], ["updated_at", "2020-04-22 05:35:43.059372"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.064793"], ["updated_at", "2020-04-22 05:35:43.064793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.067092"], ["updated_at", "2020-04-22 05:35:43.067092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380012


 (1.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.079211"], ["updated_at", "2020-04-22 05:35:43.079211"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.087114"], ["updated_at", "2020-04-22 05:35:43.087114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.091459"], ["updated_at", "2020-04-22 05:35:43.091459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:42.748833"], ["updated_at", "2020-04-22 05:35:42.748833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_66937


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_550313


Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.107042"], ["updated_at", "2020-04-22 05:35:43.107042"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.112862"], ["updated_at", "2020-04-22 05:35:43.112862"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.116045"], ["updated_at", "2020-04-22 05:35:43.116045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.115383"], ["updated_at", "2020-04-22 05:35:43.115383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.118085"], ["updated_at", "2020-04-22 05:35:43.118085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.118530"], ["updated_at", "2020-04-22 05:35:43.118530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_875885


 (2.7ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.130622"], ["updated_at", "2020-04-22 05:35:43.130622"]]
 (0.1ms)  begin transaction

CommentTest: test_891401


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.134408"], ["updated_at", "2020-04-22 05:35:43.134408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.135168"], ["updated_at", "2020-04-22 05:35:43.135168"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.138782"], ["updated_at", "2020-04-22 05:35:43.138782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.141014"], ["updated_at", "2020-04-22 05:35:43.141014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.143170"], ["updated_at", "2020-04-22 05:35:43.143170"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_313505


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.148230"], ["updated_at", "2020-04-22 05:35:43.148230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.151081"], ["updated_at", "2020-04-22 05:35:43.151081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_60425


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.155676"], ["updated_at", "2020-04-22 05:35:43.155676"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.156247"], ["updated_at", "2020-04-22 05:35:43.156247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.158658"], ["updated_at", "2020-04-22 05:35:43.158658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_889880


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.167315"], ["updated_at", "2020-04-22 05:35:43.167315"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.170173"], ["updated_at", "2020-04-22 05:35:43.170173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.171986"], ["updated_at", "2020-04-22 05:35:43.171986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_684621


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.181087"], ["updated_at", "2020-04-22 05:35:43.181087"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.183522"], ["updated_at", "2020-04-22 05:35:43.183522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.185597"], ["updated_at", "2020-04-22 05:35:43.185597"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_482864


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.192080"], ["updated_at", "2020-04-22 05:35:43.192080"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.194236"], ["updated_at", "2020-04-22 05:35:43.194236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.197998"], ["updated_at", "2020-04-22 05:35:43.197998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_148099


 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.207260"], ["updated_at", "2020-04-22 05:35:43.207260"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.213558"], ["updated_at", "2020-04-22 05:35:43.213558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.215709"], ["updated_at", "2020-04-22 05:35:43.215709"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_45510


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.224746"], ["updated_at", "2020-04-22 05:35:43.224746"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.227706"], ["updated_at", "2020-04-22 05:35:43.227706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.230608"], ["updated_at", "2020-04-22 05:35:43.230608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_884401


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.241619"], ["updated_at", "2020-04-22 05:35:43.241619"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.244240"], ["updated_at", "2020-04-22 05:35:43.244240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.246856"], ["updated_at", "2020-04-22 05:35:43.246856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_115303


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.259592"], ["updated_at", "2020-04-22 05:35:43.259592"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.262874"], ["updated_at", "2020-04-22 05:35:43.262874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.264815"], ["updated_at", "2020-04-22 05:35:43.264815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_609295


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.274510"], ["updated_at", "2020-04-22 05:35:43.274510"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.276909"], ["updated_at", "2020-04-22 05:35:43.276909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.278186"], ["updated_at", "2020-04-22 05:35:43.278186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_578927


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.287982"], ["updated_at", "2020-04-22 05:35:43.287982"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.290594"], ["updated_at", "2020-04-22 05:35:43.290594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.293965"], ["updated_at", "2020-04-22 05:35:43.293965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_272401


 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.307139"], ["updated_at", "2020-04-22 05:35:43.307139"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.316144"], ["updated_at", "2020-04-22 05:35:43.316144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.317705"], ["updated_at", "2020-04-22 05:35:43.317705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_779651


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.329232"], ["updated_at", "2020-04-22 05:35:43.329232"]]
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.332152"], ["updated_at", "2020-04-22 05:35:43.332152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.337870"], ["updated_at", "2020-04-22 05:35:43.337870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_73561


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.355366"], ["updated_at", "2020-04-22 05:35:43.355366"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.364842"], ["updated_at", "2020-04-22 05:35:43.364842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.367589"], ["updated_at", "2020-04-22 05:35:43.367589"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_315102


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.380358"], ["updated_at", "2020-04-22 05:35:43.380358"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.384896"], ["updated_at", "2020-04-22 05:35:43.384896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.388972"], ["updated_at", "2020-04-22 05:35:43.388972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_525706


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.398445"], ["updated_at", "2020-04-22 05:35:43.398445"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.400306"], ["updated_at", "2020-04-22 05:35:43.400306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.402187"], ["updated_at", "2020-04-22 05:35:43.402187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_813551


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.412173"], ["updated_at", "2020-04-22 05:35:43.412173"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.414440"], ["updated_at", "2020-04-22 05:35:43.414440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.416537"], ["updated_at", "2020-04-22 05:35:43.416537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_674821


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.424562"], ["updated_at", "2020-04-22 05:35:43.424562"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.426792"], ["updated_at", "2020-04-22 05:35:43.426792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.429083"], ["updated_at", "2020-04-22 05:35:43.429083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_336330


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.440236"], ["updated_at", "2020-04-22 05:35:43.440236"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.442687"], ["updated_at", "2020-04-22 05:35:43.442687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.444995"], ["updated_at", "2020-04-22 05:35:43.444995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_87793


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.457944"], ["updated_at", "2020-04-22 05:35:43.457944"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.461660"], ["updated_at", "2020-04-22 05:35:43.461660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.466103"], ["updated_at", "2020-04-22 05:35:43.466103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_338674


 (2.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.477837"], ["updated_at", "2020-04-22 05:35:43.477837"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.484808"], ["updated_at", "2020-04-22 05:35:43.484808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.489368"], ["updated_at", "2020-04-22 05:35:43.489368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.160583"], ["updated_at", "2020-04-22 05:35:43.160583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_63373


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.499416"], ["updated_at", "2020-04-22 05:35:43.499416"]]
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.501517"], ["updated_at", "2020-04-22 05:35:43.501517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_191538


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.505730"], ["updated_at", "2020-04-22 05:35:43.505730"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.506191"], ["updated_at", "2020-04-22 05:35:43.506191"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.508669"], ["updated_at", "2020-04-22 05:35:43.508669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_377205


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.510752"], ["updated_at", "2020-04-22 05:35:43.510752"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.513075"], ["updated_at", "2020-04-22 05:35:43.513075"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.515642"], ["updated_at", "2020-04-22 05:35:43.515642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.517522"], ["updated_at", "2020-04-22 05:35:43.517522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_132681


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.520727"], ["updated_at", "2020-04-22 05:35:43.520727"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_236229

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.524472"], ["updated_at", "2020-04-22 05:35:43.524472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.526660"], ["updated_at", "2020-04-22 05:35:43.526660"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.526274"], ["updated_at", "2020-04-22 05:35:43.526274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.528755"], ["updated_at", "2020-04-22 05:35:43.528755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.530955"], ["updated_at", "2020-04-22 05:35:43.530955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_138491


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.535554"], ["updated_at", "2020-04-22 05:35:43.535554"]]
 (0.1ms)  begin transaction

CommentTest: test_311375


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.539719"], ["updated_at", "2020-04-22 05:35:43.539719"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.539768"], ["updated_at", "2020-04-22 05:35:43.539768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.541580"], ["updated_at", "2020-04-22 05:35:43.541580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.542159"], ["updated_at", "2020-04-22 05:35:43.542159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.543197"], ["updated_at", "2020-04-22 05:35:43.543197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_712094


 (0.1ms)  begin transaction

CommentTest: test_598038


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.552664"], ["updated_at", "2020-04-22 05:35:43.552664"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.553327"], ["updated_at", "2020-04-22 05:35:43.553327"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.556367"], ["updated_at", "2020-04-22 05:35:43.556367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.560610"], ["updated_at", "2020-04-22 05:35:43.560610"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.560755"], ["updated_at", "2020-04-22 05:35:43.560755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.564093"], ["updated_at", "2020-04-22 05:35:43.564093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_725829


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_267831


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.571311"], ["updated_at", "2020-04-22 05:35:43.571311"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.573827"], ["updated_at", "2020-04-22 05:35:43.573827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.573328"], ["updated_at", "2020-04-22 05:35:43.573328"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.575594"], ["updated_at", "2020-04-22 05:35:43.575594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.575737"], ["updated_at", "2020-04-22 05:35:43.575737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.578560"], ["updated_at", "2020-04-22 05:35:43.578560"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_729489


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.585294"], ["updated_at", "2020-04-22 05:35:43.585294"]]
 (0.1ms)  begin transaction

CommentTest: test_306832


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.588059"], ["updated_at", "2020-04-22 05:35:43.588059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.590984"], ["updated_at", "2020-04-22 05:35:43.590984"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.594913"], ["updated_at", "2020-04-22 05:35:43.594913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.593639"], ["updated_at", "2020-04-22 05:35:43.593639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.600789"], ["updated_at", "2020-04-22 05:35:43.600789"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (3.3ms)  rollback transaction

CommentTest: test_281315


 (0.1ms)  begin transaction

CommentTest: test_146697


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.615550"], ["updated_at", "2020-04-22 05:35:43.615550"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.617187"], ["updated_at", "2020-04-22 05:35:43.617187"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.621722"], ["updated_at", "2020-04-22 05:35:43.621722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.622761"], ["updated_at", "2020-04-22 05:35:43.622761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.624385"], ["updated_at", "2020-04-22 05:35:43.624385"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.624371"], ["updated_at", "2020-04-22 05:35:43.624371"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_70575


 (0.1ms)  begin transaction

CommentTest: test_823392


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.632579"], ["updated_at", "2020-04-22 05:35:43.632579"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.633426"], ["updated_at", "2020-04-22 05:35:43.633426"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.635102"], ["updated_at", "2020-04-22 05:35:43.635102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.635981"], ["updated_at", "2020-04-22 05:35:43.635981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.637262"], ["updated_at", "2020-04-22 05:35:43.637262"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.637746"], ["updated_at", "2020-04-22 05:35:43.637746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_746


 (0.1ms)  begin transaction

CommentTest: test_501271


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.645998"], ["updated_at", "2020-04-22 05:35:43.645998"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.645679"], ["updated_at", "2020-04-22 05:35:43.645679"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.649111"], ["updated_at", "2020-04-22 05:35:43.649111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.649395"], ["updated_at", "2020-04-22 05:35:43.649395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.651113"], ["updated_at", "2020-04-22 05:35:43.651113"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.650901"], ["updated_at", "2020-04-22 05:35:43.650901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_608736


 (0.1ms)  begin transaction

CommentTest: test_627232


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.660061"], ["updated_at", "2020-04-22 05:35:43.660061"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.660772"], ["updated_at", "2020-04-22 05:35:43.660772"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.663592"], ["updated_at", "2020-04-22 05:35:43.663592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.663887"], ["updated_at", "2020-04-22 05:35:43.663887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.666438"], ["updated_at", "2020-04-22 05:35:43.666438"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.666651"], ["updated_at", "2020-04-22 05:35:43.666651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_199816


 (0.1ms)  begin transaction

CommentTest: test_174136


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.675657"], ["updated_at", "2020-04-22 05:35:43.675657"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.675949"], ["updated_at", "2020-04-22 05:35:43.675949"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.678179"], ["updated_at", "2020-04-22 05:35:43.678179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.680119"], ["updated_at", "2020-04-22 05:35:43.680119"]]
Bucket Create (4.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.678191"], ["updated_at", "2020-04-22 05:35:43.678191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.684030"], ["updated_at", "2020-04-22 05:35:43.684030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_757149


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_608746


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.692333"], ["updated_at", "2020-04-22 05:35:43.692333"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.694852"], ["updated_at", "2020-04-22 05:35:43.694852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.694135"], ["updated_at", "2020-04-22 05:35:43.694135"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.697483"], ["updated_at", "2020-04-22 05:35:43.697483"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.697818"], ["updated_at", "2020-04-22 05:35:43.697818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.699861"], ["updated_at", "2020-04-22 05:35:43.699861"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_487897


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.706242"], ["updated_at", "2020-04-22 05:35:43.706242"]]
 (0.1ms)  begin transaction

CommentTest: test_295550


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.713941"], ["updated_at", "2020-04-22 05:35:43.713941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.714810"], ["updated_at", "2020-04-22 05:35:43.714810"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.717676"], ["updated_at", "2020-04-22 05:35:43.717676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.718388"], ["updated_at", "2020-04-22 05:35:43.718388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.720822"], ["updated_at", "2020-04-22 05:35:43.720822"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_752810


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.727023"], ["updated_at", "2020-04-22 05:35:43.727023"]]
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_424852


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.731413"], ["updated_at", "2020-04-22 05:35:43.731413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.732393"], ["updated_at", "2020-04-22 05:35:43.732393"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.733642"], ["updated_at", "2020-04-22 05:35:43.733642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.735878"], ["updated_at", "2020-04-22 05:35:43.735878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.741689"], ["updated_at", "2020-04-22 05:35:43.741689"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_276634


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.747620"], ["updated_at", "2020-04-22 05:35:43.747620"]]
 (0.1ms)  begin transaction

CommentTest: test_42316


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.750213"], ["updated_at", "2020-04-22 05:35:43.750213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.750773"], ["updated_at", "2020-04-22 05:35:43.750773"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.752332"], ["updated_at", "2020-04-22 05:35:43.752332"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.753714"], ["updated_at", "2020-04-22 05:35:43.753714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_33350


Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.758612"], ["updated_at", "2020-04-22 05:35:43.758612"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.763001"], ["updated_at", "2020-04-22 05:35:43.763001"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.765362"], ["updated_at", "2020-04-22 05:35:43.765362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.767469"], ["updated_at", "2020-04-22 05:35:43.767469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_548287


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.771001"], ["updated_at", "2020-04-22 05:35:43.771001"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_603399


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.773662"], ["updated_at", "2020-04-22 05:35:43.773662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.775187"], ["updated_at", "2020-04-22 05:35:43.775187"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.775539"], ["updated_at", "2020-04-22 05:35:43.775539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.776893"], ["updated_at", "2020-04-22 05:35:43.776893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.778467"], ["updated_at", "2020-04-22 05:35:43.778467"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_84575


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.786483"], ["updated_at", "2020-04-22 05:35:43.786483"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_14083


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.790953"], ["updated_at", "2020-04-22 05:35:43.790953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.793021"], ["updated_at", "2020-04-22 05:35:43.793021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.792711"], ["updated_at", "2020-04-22 05:35:43.792711"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.801823"], ["updated_at", "2020-04-22 05:35:43.801823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.804014"], ["updated_at", "2020-04-22 05:35:43.804014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_687178


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.806863"], ["updated_at", "2020-04-22 05:35:43.806863"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.810097"], ["updated_at", "2020-04-22 05:35:43.810097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.812246"], ["updated_at", "2020-04-22 05:35:43.812246"]]
 (3.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_596464


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.817932"], ["updated_at", "2020-04-22 05:35:43.817932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.821246"], ["updated_at", "2020-04-22 05:35:43.821246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_637448


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.823335"], ["updated_at", "2020-04-22 05:35:43.823335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.824026"], ["updated_at", "2020-04-22 05:35:43.824026"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.827146"], ["updated_at", "2020-04-22 05:35:43.827146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_263325


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.830725"], ["updated_at", "2020-04-22 05:35:43.830725"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.833035"], ["updated_at", "2020-04-22 05:35:43.833035"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.837169"], ["updated_at", "2020-04-22 05:35:43.837169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.839699"], ["updated_at", "2020-04-22 05:35:43.839699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_10268


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.842715"], ["updated_at", "2020-04-22 05:35:43.842715"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_992890


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.850778"], ["updated_at", "2020-04-22 05:35:43.850778"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.852122"], ["updated_at", "2020-04-22 05:35:43.852122"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.856002"], ["updated_at", "2020-04-22 05:35:43.856002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.857319"], ["updated_at", "2020-04-22 05:35:43.857319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.859380"], ["updated_at", "2020-04-22 05:35:43.859380"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_444767


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.865036"], ["updated_at", "2020-04-22 05:35:43.865036"]]
 (0.0ms)  begin transaction

CommentTest: test_560538


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.867596"], ["updated_at", "2020-04-22 05:35:43.867596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.869603"], ["updated_at", "2020-04-22 05:35:43.869603"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.868993"], ["updated_at", "2020-04-22 05:35:43.868993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.873431"], ["updated_at", "2020-04-22 05:35:43.873431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.874847"], ["updated_at", "2020-04-22 05:35:43.874847"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_840510


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.878539"], ["updated_at", "2020-04-22 05:35:43.878539"]]
 (0.0ms)  begin transaction

CommentTest: test_22604


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.883348"], ["updated_at", "2020-04-22 05:35:43.883348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.883900"], ["updated_at", "2020-04-22 05:35:43.883900"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.885305"], ["updated_at", "2020-04-22 05:35:43.885305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.886143"], ["updated_at", "2020-04-22 05:35:43.886143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.888290"], ["updated_at", "2020-04-22 05:35:43.888290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_434032


 (0.1ms)  begin transaction

CommentTest: test_791039


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.894197"], ["updated_at", "2020-04-22 05:35:43.894197"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.894964"], ["updated_at", "2020-04-22 05:35:43.894964"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.895847"], ["updated_at", "2020-04-22 05:35:43.895847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.898044"], ["updated_at", "2020-04-22 05:35:43.898044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.898554"], ["updated_at", "2020-04-22 05:35:43.898554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.899970"], ["updated_at", "2020-04-22 05:35:43.899970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_53607


 (0.1ms)  begin transaction

CommentTest: test_118151


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.910891"], ["updated_at", "2020-04-22 05:35:43.910891"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.913490"], ["updated_at", "2020-04-22 05:35:43.913490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.912279"], ["updated_at", "2020-04-22 05:35:43.912279"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.915601"], ["updated_at", "2020-04-22 05:35:43.915601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.917273"], ["updated_at", "2020-04-22 05:35:43.917273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.919807"], ["updated_at", "2020-04-22 05:35:43.919807"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_651594


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.925902"], ["updated_at", "2020-04-22 05:35:43.925902"]]
 (0.1ms)  begin transaction

CommentTest: test_274619


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.928690"], ["updated_at", "2020-04-22 05:35:43.928690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.930993"], ["updated_at", "2020-04-22 05:35:43.930993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.937127"], ["updated_at", "2020-04-22 05:35:43.937127"]]
 (0.1ms)  begin transaction

CommentTest: test_840905


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.942019"], ["updated_at", "2020-04-22 05:35:43.942019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.943140"], ["updated_at", "2020-04-22 05:35:43.943140"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.944880"], ["updated_at", "2020-04-22 05:35:43.944880"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.945710"], ["updated_at", "2020-04-22 05:35:43.945710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.948294"], ["updated_at", "2020-04-22 05:35:43.948294"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_846256


 (0.1ms)  begin transaction

CommentTest: test_435796


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.958664"], ["updated_at", "2020-04-22 05:35:43.958664"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.958945"], ["updated_at", "2020-04-22 05:35:43.958945"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.961952"], ["updated_at", "2020-04-22 05:35:43.961952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.962408"], ["updated_at", "2020-04-22 05:35:43.962408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.970762"], ["updated_at", "2020-04-22 05:35:43.970762"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.973680"], ["updated_at", "2020-04-22 05:35:43.973680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_538900


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.988974"], ["updated_at", "2020-04-22 05:35:43.988974"]]
 (0.1ms)  begin transaction

CommentTest: test_448795


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.991759"], ["updated_at", "2020-04-22 05:35:43.991759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.993713"], ["updated_at", "2020-04-22 05:35:43.993713"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:43.992587"], ["updated_at", "2020-04-22 05:35:43.992587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:43.995417"], ["updated_at", "2020-04-22 05:35:43.995417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:43.997418"], ["updated_at", "2020-04-22 05:35:43.997418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_160997


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.001456"], ["updated_at", "2020-04-22 05:35:44.001456"]]
 (0.1ms)  begin transaction

CommentTest: test_131166


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.003938"], ["updated_at", "2020-04-22 05:35:44.003938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.005252"], ["updated_at", "2020-04-22 05:35:44.005252"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.004865"], ["updated_at", "2020-04-22 05:35:44.004865"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.010009"], ["updated_at", "2020-04-22 05:35:44.010009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_286369


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.013343"], ["updated_at", "2020-04-22 05:35:44.013343"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.014091"], ["updated_at", "2020-04-22 05:35:44.014091"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.016174"], ["updated_at", "2020-04-22 05:35:44.016174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.017959"], ["updated_at", "2020-04-22 05:35:44.017959"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_910658


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.020887"], ["updated_at", "2020-04-22 05:35:44.020887"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.023668"], ["updated_at", "2020-04-22 05:35:44.023668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.025152"], ["updated_at", "2020-04-22 05:35:44.025152"]]
 (0.1ms)  begin transaction

CommentTest: test_419036


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.026709"], ["updated_at", "2020-04-22 05:35:44.026709"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.030692"], ["updated_at", "2020-04-22 05:35:44.030692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.033280"], ["updated_at", "2020-04-22 05:35:44.033280"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_55196


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.038725"], ["updated_at", "2020-04-22 05:35:44.038725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.041472"], ["updated_at", "2020-04-22 05:35:44.041472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_646944


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.043595"], ["updated_at", "2020-04-22 05:35:44.043595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.044156"], ["updated_at", "2020-04-22 05:35:44.044156"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.046693"], ["updated_at", "2020-04-22 05:35:44.046693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.051303"], ["updated_at", "2020-04-22 05:35:44.051303"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_220616


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.055275"], ["updated_at", "2020-04-22 05:35:44.055275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.058121"], ["updated_at", "2020-04-22 05:35:44.058121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_709302


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.060138"], ["updated_at", "2020-04-22 05:35:44.060138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.060280"], ["updated_at", "2020-04-22 05:35:44.060280"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.063253"], ["updated_at", "2020-04-22 05:35:44.063253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.066102"], ["updated_at", "2020-04-22 05:35:44.066102"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_896729


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.069553"], ["updated_at", "2020-04-22 05:35:44.069553"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.076047"], ["updated_at", "2020-04-22 05:35:44.076047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_362833


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.078431"], ["updated_at", "2020-04-22 05:35:44.078431"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.078332"], ["updated_at", "2020-04-22 05:35:44.078332"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.081274"], ["updated_at", "2020-04-22 05:35:44.081274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.083866"], ["updated_at", "2020-04-22 05:35:44.083866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_761725


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.089107"], ["updated_at", "2020-04-22 05:35:44.089107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.090834"], ["updated_at", "2020-04-22 05:35:44.090834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_794018


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.093781"], ["updated_at", "2020-04-22 05:35:44.093781"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.094483"], ["updated_at", "2020-04-22 05:35:44.094483"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.097644"], ["updated_at", "2020-04-22 05:35:44.097644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.099581"], ["updated_at", "2020-04-22 05:35:44.099581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_865231


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.102986"], ["updated_at", "2020-04-22 05:35:44.102986"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.110756"], ["updated_at", "2020-04-22 05:35:44.110756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_575592


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.112882"], ["updated_at", "2020-04-22 05:35:44.112882"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.113586"], ["updated_at", "2020-04-22 05:35:44.113586"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.116188"], ["updated_at", "2020-04-22 05:35:44.116188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.118270"], ["updated_at", "2020-04-22 05:35:44.118270"]]
 (0.3ms)  begin transaction

CommentTest: test_841327


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.122563"], ["updated_at", "2020-04-22 05:35:44.122563"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_206734


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.125054"], ["updated_at", "2020-04-22 05:35:44.125054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.126502"], ["updated_at", "2020-04-22 05:35:44.126502"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.126908"], ["updated_at", "2020-04-22 05:35:44.126908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.129000"], ["updated_at", "2020-04-22 05:35:44.129000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.130364"], ["updated_at", "2020-04-22 05:35:44.130364"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_154605


 (0.1ms)  SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.136330"], ["updated_at", "2020-04-22 05:35:44.136330"]]
 (0.1ms)  begin transaction

CommentTest: test_639679


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.139133"], ["updated_at", "2020-04-22 05:35:44.139133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.141410"], ["updated_at", "2020-04-22 05:35:44.141410"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.141065"], ["updated_at", "2020-04-22 05:35:44.141065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.143169"], ["updated_at", "2020-04-22 05:35:44.143169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.145069"], ["updated_at", "2020-04-22 05:35:44.145069"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_575583


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.147897"], ["updated_at", "2020-04-22 05:35:44.147897"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.150611"], ["updated_at", "2020-04-22 05:35:44.150611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_550126


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.153387"], ["updated_at", "2020-04-22 05:35:44.153387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.157986"], ["updated_at", "2020-04-22 05:35:44.157986"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.161826"], ["updated_at", "2020-04-22 05:35:44.161826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.163760"], ["updated_at", "2020-04-22 05:35:44.163760"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_479916


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.168501"], ["updated_at", "2020-04-22 05:35:44.168501"]]
 (0.1ms)  begin transaction

CommentTest: test_929190


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.173455"], ["updated_at", "2020-04-22 05:35:44.173455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.173414"], ["updated_at", "2020-04-22 05:35:44.173414"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.175312"], ["updated_at", "2020-04-22 05:35:44.175312"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.175674"], ["updated_at", "2020-04-22 05:35:44.175674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.177620"], ["updated_at", "2020-04-22 05:35:44.177620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_303448


 (0.1ms)  begin transaction

CommentTest: test_841815


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.186009"], ["updated_at", "2020-04-22 05:35:44.186009"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.186656"], ["updated_at", "2020-04-22 05:35:44.186656"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.189380"], ["updated_at", "2020-04-22 05:35:44.189380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.190182"], ["updated_at", "2020-04-22 05:35:44.190182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.191111"], ["updated_at", "2020-04-22 05:35:44.191111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.195427"], ["updated_at", "2020-04-22 05:35:44.195427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_980898


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_360147


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.203693"], ["updated_at", "2020-04-22 05:35:44.203693"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.205479"], ["updated_at", "2020-04-22 05:35:44.205479"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.206879"], ["updated_at", "2020-04-22 05:35:44.206879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.209253"], ["updated_at", "2020-04-22 05:35:44.209253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.210711"], ["updated_at", "2020-04-22 05:35:44.210711"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.211354"], ["updated_at", "2020-04-22 05:35:44.211354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_233796


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_796140


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.223757"], ["updated_at", "2020-04-22 05:35:44.223757"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.225751"], ["updated_at", "2020-04-22 05:35:44.225751"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.227150"], ["updated_at", "2020-04-22 05:35:44.227150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.228341"], ["updated_at", "2020-04-22 05:35:44.228341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.229008"], ["updated_at", "2020-04-22 05:35:44.229008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.230289"], ["updated_at", "2020-04-22 05:35:44.230289"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_246888


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.235209"], ["updated_at", "2020-04-22 05:35:44.235209"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_52509


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.240289"], ["updated_at", "2020-04-22 05:35:44.240289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.242142"], ["updated_at", "2020-04-22 05:35:44.242142"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.243841"], ["updated_at", "2020-04-22 05:35:44.243841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.244813"], ["updated_at", "2020-04-22 05:35:44.244813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.246592"], ["updated_at", "2020-04-22 05:35:44.246592"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_81881


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_927098


Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.251607"], ["updated_at", "2020-04-22 05:35:44.251607"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.256037"], ["updated_at", "2020-04-22 05:35:44.256037"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.256772"], ["updated_at", "2020-04-22 05:35:44.256772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.257918"], ["updated_at", "2020-04-22 05:35:44.257918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.258492"], ["updated_at", "2020-04-22 05:35:44.258492"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.259100"], ["updated_at", "2020-04-22 05:35:44.259100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_70847


 (0.1ms)  begin transaction

CommentTest: test_240172


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.267030"], ["updated_at", "2020-04-22 05:35:44.267030"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.267171"], ["updated_at", "2020-04-22 05:35:44.267171"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.270771"], ["updated_at", "2020-04-22 05:35:44.270771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.270773"], ["updated_at", "2020-04-22 05:35:44.270773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.272888"], ["updated_at", "2020-04-22 05:35:44.272888"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.272888"], ["updated_at", "2020-04-22 05:35:44.272888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_159751



CommentTest: test_448076


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.281115"], ["updated_at", "2020-04-22 05:35:44.281115"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.281074"], ["updated_at", "2020-04-22 05:35:44.281074"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.285224"], ["updated_at", "2020-04-22 05:35:44.285224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.287736"], ["updated_at", "2020-04-22 05:35:44.287736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.289088"], ["updated_at", "2020-04-22 05:35:44.289088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.289715"], ["updated_at", "2020-04-22 05:35:44.289715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_462221


 (0.1ms)  begin transaction

CommentTest: test_468671


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.297720"], ["updated_at", "2020-04-22 05:35:44.297720"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.298737"], ["updated_at", "2020-04-22 05:35:44.298737"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.300619"], ["updated_at", "2020-04-22 05:35:44.300619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.300592"], ["updated_at", "2020-04-22 05:35:44.300592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.302691"], ["updated_at", "2020-04-22 05:35:44.302691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.306038"], ["updated_at", "2020-04-22 05:35:44.306038"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_587890



CommentTest: test_376901


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.314970"], ["updated_at", "2020-04-22 05:35:44.314970"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.314970"], ["updated_at", "2020-04-22 05:35:44.314970"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.317600"], ["updated_at", "2020-04-22 05:35:44.317600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.317674"], ["updated_at", "2020-04-22 05:35:44.317674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.319644"], ["updated_at", "2020-04-22 05:35:44.319644"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.319860"], ["updated_at", "2020-04-22 05:35:44.319860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_761708


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_51502


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.331568"], ["updated_at", "2020-04-22 05:35:44.331568"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.333768"], ["updated_at", "2020-04-22 05:35:44.333768"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.334619"], ["updated_at", "2020-04-22 05:35:44.334619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.337857"], ["updated_at", "2020-04-22 05:35:44.337857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.337605"], ["updated_at", "2020-04-22 05:35:44.337605"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.341393"], ["updated_at", "2020-04-22 05:35:44.341393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_624308


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_882379


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.347626"], ["updated_at", "2020-04-22 05:35:44.347626"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.350944"], ["updated_at", "2020-04-22 05:35:44.350944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.350658"], ["updated_at", "2020-04-22 05:35:44.350658"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.352883"], ["updated_at", "2020-04-22 05:35:44.352883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.356251"], ["updated_at", "2020-04-22 05:35:44.356251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.358328"], ["updated_at", "2020-04-22 05:35:44.358328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_137329


 (0.1ms)  begin transaction

CommentTest: test_303691


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.365404"], ["updated_at", "2020-04-22 05:35:44.365404"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.366557"], ["updated_at", "2020-04-22 05:35:44.366557"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.367363"], ["updated_at", "2020-04-22 05:35:44.367363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.368955"], ["updated_at", "2020-04-22 05:35:44.368955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.370778"], ["updated_at", "2020-04-22 05:35:44.370778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.372164"], ["updated_at", "2020-04-22 05:35:44.372164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_134398


 (0.1ms)  begin transaction

CommentTest: test_396987


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.378349"], ["updated_at", "2020-04-22 05:35:44.378349"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.379467"], ["updated_at", "2020-04-22 05:35:44.379467"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.380904"], ["updated_at", "2020-04-22 05:35:44.380904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.382107"], ["updated_at", "2020-04-22 05:35:44.382107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.383083"], ["updated_at", "2020-04-22 05:35:44.383083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.383845"], ["updated_at", "2020-04-22 05:35:44.383845"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_372880


 (0.1ms)  begin transaction

CommentTest: test_302265


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.392426"], ["updated_at", "2020-04-22 05:35:44.392426"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.393057"], ["updated_at", "2020-04-22 05:35:44.393057"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.395029"], ["updated_at", "2020-04-22 05:35:44.395029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.395586"], ["updated_at", "2020-04-22 05:35:44.395586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.396977"], ["updated_at", "2020-04-22 05:35:44.396977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.397603"], ["updated_at", "2020-04-22 05:35:44.397603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_962841



CommentTest: test_213712


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.412272"], ["updated_at", "2020-04-22 05:35:44.412272"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.414421"], ["updated_at", "2020-04-22 05:35:44.414421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.410410"], ["updated_at", "2020-04-22 05:35:44.410410"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.415742"], ["updated_at", "2020-04-22 05:35:44.415742"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.416212"], ["updated_at", "2020-04-22 05:35:44.416212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.418482"], ["updated_at", "2020-04-22 05:35:44.418482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_263238


 (0.1ms)  begin transaction

CommentTest: test_389072


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.429428"], ["updated_at", "2020-04-22 05:35:44.429428"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.430088"], ["updated_at", "2020-04-22 05:35:44.430088"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.432719"], ["updated_at", "2020-04-22 05:35:44.432719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.431874"], ["updated_at", "2020-04-22 05:35:44.431874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.434915"], ["updated_at", "2020-04-22 05:35:44.434915"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.435166"], ["updated_at", "2020-04-22 05:35:44.435166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_146997

 (0.8ms)  rollback transaction

 (0.1ms)  begin transaction

CommentTest: test_347009


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.445350"], ["updated_at", "2020-04-22 05:35:44.445350"]]
 (3.1ms)  SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.448080"], ["updated_at", "2020-04-22 05:35:44.448080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.446716"], ["updated_at", "2020-04-22 05:35:44.446716"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.451812"], ["updated_at", "2020-04-22 05:35:44.451812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.454323"], ["updated_at", "2020-04-22 05:35:44.454323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.462252"], ["updated_at", "2020-04-22 05:35:44.462252"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_574450


 (0.1ms)  begin transaction

CommentTest: test_326342


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.473233"], ["updated_at", "2020-04-22 05:35:44.473233"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.474118"], ["updated_at", "2020-04-22 05:35:44.474118"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.476911"], ["updated_at", "2020-04-22 05:35:44.476911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.476993"], ["updated_at", "2020-04-22 05:35:44.476993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.478958"], ["updated_at", "2020-04-22 05:35:44.478958"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.478958"], ["updated_at", "2020-04-22 05:35:44.478958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_930381


 (0.2ms)  begin transaction

CommentTest: test_311866


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.488184"], ["updated_at", "2020-04-22 05:35:44.488184"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.488052"], ["updated_at", "2020-04-22 05:35:44.488052"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.491311"], ["updated_at", "2020-04-22 05:35:44.491311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.491348"], ["updated_at", "2020-04-22 05:35:44.491348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.493176"], ["updated_at", "2020-04-22 05:35:44.493176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.493340"], ["updated_at", "2020-04-22 05:35:44.493340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_224922


 (0.1ms)  begin transaction

CommentTest: test_549020


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.500187"], ["updated_at", "2020-04-22 05:35:44.500187"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.501504"], ["updated_at", "2020-04-22 05:35:44.501504"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.503044"], ["updated_at", "2020-04-22 05:35:44.503044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.505278"], ["updated_at", "2020-04-22 05:35:44.505278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.505485"], ["updated_at", "2020-04-22 05:35:44.505485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.507786"], ["updated_at", "2020-04-22 05:35:44.507786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_537949


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_11678


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.514160"], ["updated_at", "2020-04-22 05:35:44.514160"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.516181"], ["updated_at", "2020-04-22 05:35:44.516181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.515677"], ["updated_at", "2020-04-22 05:35:44.515677"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.517374"], ["updated_at", "2020-04-22 05:35:44.517374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.518170"], ["updated_at", "2020-04-22 05:35:44.518170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.522219"], ["updated_at", "2020-04-22 05:35:44.522219"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_195850


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.526843"], ["updated_at", "2020-04-22 05:35:44.526843"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.529003"], ["updated_at", "2020-04-22 05:35:44.529003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.530871"], ["updated_at", "2020-04-22 05:35:44.530871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_837231


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.533707"], ["updated_at", "2020-04-22 05:35:44.533707"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.539567"], ["updated_at", "2020-04-22 05:35:44.539567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.541956"], ["updated_at", "2020-04-22 05:35:44.541956"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_692908


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.545055"], ["updated_at", "2020-04-22 05:35:44.545055"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.547606"], ["updated_at", "2020-04-22 05:35:44.547606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_123464


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.549897"], ["updated_at", "2020-04-22 05:35:44.549897"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.550560"], ["updated_at", "2020-04-22 05:35:44.550560"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.557287"], ["updated_at", "2020-04-22 05:35:44.557287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.559971"], ["updated_at", "2020-04-22 05:35:44.559971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_875488


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (6.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.584933"], ["updated_at", "2020-04-22 05:35:44.584933"]]
 (0.1ms)  begin transaction

CommentTest: test_413850


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.596252"], ["updated_at", "2020-04-22 05:35:44.596252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.597036"], ["updated_at", "2020-04-22 05:35:44.597036"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.598388"], ["updated_at", "2020-04-22 05:35:44.598388"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.599689"], ["updated_at", "2020-04-22 05:35:44.599689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.601508"], ["updated_at", "2020-04-22 05:35:44.601508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_206117


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.610017"], ["updated_at", "2020-04-22 05:35:44.610017"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_874484


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.612171"], ["updated_at", "2020-04-22 05:35:44.612171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.613598"], ["updated_at", "2020-04-22 05:35:44.613598"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.614150"], ["updated_at", "2020-04-22 05:35:44.614150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.615205"], ["updated_at", "2020-04-22 05:35:44.615205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.616848"], ["updated_at", "2020-04-22 05:35:44.616848"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_739456


 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.622686"], ["updated_at", "2020-04-22 05:35:44.622686"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.624800"], ["updated_at", "2020-04-22 05:35:44.624800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_941492


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.627182"], ["updated_at", "2020-04-22 05:35:44.627182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.627203"], ["updated_at", "2020-04-22 05:35:44.627203"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.629595"], ["updated_at", "2020-04-22 05:35:44.629595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.631742"], ["updated_at", "2020-04-22 05:35:44.631742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_789341


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.634234"], ["updated_at", "2020-04-22 05:35:44.634234"]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.638339"], ["updated_at", "2020-04-22 05:35:44.638339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.639973"], ["updated_at", "2020-04-22 05:35:44.639973"]]

CommentTest: test_386978


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.641617"], ["updated_at", "2020-04-22 05:35:44.641617"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.644400"], ["updated_at", "2020-04-22 05:35:44.644400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.646106"], ["updated_at", "2020-04-22 05:35:44.646106"]]

CommentTest: test_844894


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.648109"], ["updated_at", "2020-04-22 05:35:44.648109"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.651047"], ["updated_at", "2020-04-22 05:35:44.651047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_507624


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.658645"], ["updated_at", "2020-04-22 05:35:44.658645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.660164"], ["updated_at", "2020-04-22 05:35:44.660164"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.662715"], ["updated_at", "2020-04-22 05:35:44.662715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.664625"], ["updated_at", "2020-04-22 05:35:44.664625"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_640952


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.671752"], ["updated_at", "2020-04-22 05:35:44.671752"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.674603"], ["updated_at", "2020-04-22 05:35:44.674603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_124341


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.676974"], ["updated_at", "2020-04-22 05:35:44.676974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.677712"], ["updated_at", "2020-04-22 05:35:44.677712"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.681518"], ["updated_at", "2020-04-22 05:35:44.681518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_575782


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.683991"], ["updated_at", "2020-04-22 05:35:44.683991"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.685188"], ["updated_at", "2020-04-22 05:35:44.685188"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.688211"], ["updated_at", "2020-04-22 05:35:44.688211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.691777"], ["updated_at", "2020-04-22 05:35:44.691777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_297718


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.695528"], ["updated_at", "2020-04-22 05:35:44.695528"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.698012"], ["updated_at", "2020-04-22 05:35:44.698012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_99605


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.699827"], ["updated_at", "2020-04-22 05:35:44.699827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.701432"], ["updated_at", "2020-04-22 05:35:44.701432"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.705672"], ["updated_at", "2020-04-22 05:35:44.705672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_219874


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.708045"], ["updated_at", "2020-04-22 05:35:44.708045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.711134"], ["updated_at", "2020-04-22 05:35:44.711134"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.714450"], ["updated_at", "2020-04-22 05:35:44.714450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.717126"], ["updated_at", "2020-04-22 05:35:44.717126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_388163


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_298107


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.726966"], ["updated_at", "2020-04-22 05:35:44.726966"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.728839"], ["updated_at", "2020-04-22 05:35:44.728839"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.729469"], ["updated_at", "2020-04-22 05:35:44.729469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.731111"], ["updated_at", "2020-04-22 05:35:44.731111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.730986"], ["updated_at", "2020-04-22 05:35:44.730986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.733293"], ["updated_at", "2020-04-22 05:35:44.733293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_551964


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.741678"], ["updated_at", "2020-04-22 05:35:44.741678"]]
 (0.0ms)  begin transaction

CommentTest: test_670708


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.743923"], ["updated_at", "2020-04-22 05:35:44.743923"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.744227"], ["updated_at", "2020-04-22 05:35:44.744227"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.746041"], ["updated_at", "2020-04-22 05:35:44.746041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.746401"], ["updated_at", "2020-04-22 05:35:44.746401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.748268"], ["updated_at", "2020-04-22 05:35:44.748268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_843216


 (0.1ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.757426"], ["updated_at", "2020-04-22 05:35:44.757426"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.760216"], ["updated_at", "2020-04-22 05:35:44.760216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_585091


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.761936"], ["updated_at", "2020-04-22 05:35:44.761936"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.762050"], ["updated_at", "2020-04-22 05:35:44.762050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.765136"], ["updated_at", "2020-04-22 05:35:44.765136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.767476"], ["updated_at", "2020-04-22 05:35:44.767476"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_553133


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.772007"], ["updated_at", "2020-04-22 05:35:44.772007"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.773748"], ["updated_at", "2020-04-22 05:35:44.773748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.775669"], ["updated_at", "2020-04-22 05:35:44.775669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_490632


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.778265"], ["updated_at", "2020-04-22 05:35:44.778265"]]
 (1.6ms)  rollback transaction
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.781514"], ["updated_at", "2020-04-22 05:35:44.781514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_498999


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.785529"], ["updated_at", "2020-04-22 05:35:44.785529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.788387"], ["updated_at", "2020-04-22 05:35:44.788387"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.791380"], ["updated_at", "2020-04-22 05:35:44.791380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_715106


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.793210"], ["updated_at", "2020-04-22 05:35:44.793210"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.795086"], ["updated_at", "2020-04-22 05:35:44.795086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.797748"], ["updated_at", "2020-04-22 05:35:44.797748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.799948"], ["updated_at", "2020-04-22 05:35:44.799948"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_243386


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.806856"], ["updated_at", "2020-04-22 05:35:44.806856"]]
 (0.1ms)  begin transaction

CommentTest: test_639355


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.809226"], ["updated_at", "2020-04-22 05:35:44.809226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.811172"], ["updated_at", "2020-04-22 05:35:44.811172"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.810230"], ["updated_at", "2020-04-22 05:35:44.810230"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.814326"], ["updated_at", "2020-04-22 05:35:44.814326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.816572"], ["updated_at", "2020-04-22 05:35:44.816572"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_674677


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.823952"], ["updated_at", "2020-04-22 05:35:44.823952"]]
 (0.1ms)  begin transaction

CommentTest: test_210495


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.826654"], ["updated_at", "2020-04-22 05:35:44.826654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.827941"], ["updated_at", "2020-04-22 05:35:44.827941"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.830457"], ["updated_at", "2020-04-22 05:35:44.830457"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.834047"], ["updated_at", "2020-04-22 05:35:44.834047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.835467"], ["updated_at", "2020-04-22 05:35:44.835467"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_130789


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.841829"], ["updated_at", "2020-04-22 05:35:44.841829"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.845233"], ["updated_at", "2020-04-22 05:35:44.845233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.848197"], ["updated_at", "2020-04-22 05:35:44.848197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_306194


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.856194"], ["updated_at", "2020-04-22 05:35:44.856194"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.859480"], ["updated_at", "2020-04-22 05:35:44.859480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.862449"], ["updated_at", "2020-04-22 05:35:44.862449"]]
 (0.1ms)  begin transaction

CommentTest: test_68851


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.864473"], ["updated_at", "2020-04-22 05:35:44.864473"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.867592"], ["updated_at", "2020-04-22 05:35:44.867592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.869490"], ["updated_at", "2020-04-22 05:35:44.869490"]]

CommentTest: test_304181


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.873375"], ["updated_at", "2020-04-22 05:35:44.873375"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.876095"], ["updated_at", "2020-04-22 05:35:44.876095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_493429


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.878048"], ["updated_at", "2020-04-22 05:35:44.878048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.879090"], ["updated_at", "2020-04-22 05:35:44.879090"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.881197"], ["updated_at", "2020-04-22 05:35:44.881197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.883799"], ["updated_at", "2020-04-22 05:35:44.883799"]]

CommentTest: test_386922


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.885681"], ["updated_at", "2020-04-22 05:35:44.885681"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.888652"], ["updated_at", "2020-04-22 05:35:44.888652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_393777


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.891347"], ["updated_at", "2020-04-22 05:35:44.891347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.892300"], ["updated_at", "2020-04-22 05:35:44.892300"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.894688"], ["updated_at", "2020-04-22 05:35:44.894688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.896154"], ["updated_at", "2020-04-22 05:35:44.896154"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_731919


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.899869"], ["updated_at", "2020-04-22 05:35:44.899869"]]
 (0.1ms)  begin transaction

CommentTest: test_311414


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.902586"], ["updated_at", "2020-04-22 05:35:44.902586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.904474"], ["updated_at", "2020-04-22 05:35:44.904474"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.905858"], ["updated_at", "2020-04-22 05:35:44.905858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.907414"], ["updated_at", "2020-04-22 05:35:44.907414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.909455"], ["updated_at", "2020-04-22 05:35:44.909455"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_761788


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.913957"], ["updated_at", "2020-04-22 05:35:44.913957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.916556"], ["updated_at", "2020-04-22 05:35:44.916556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_654899


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.918938"], ["updated_at", "2020-04-22 05:35:44.918938"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.919392"], ["updated_at", "2020-04-22 05:35:44.919392"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.926426"], ["updated_at", "2020-04-22 05:35:44.926426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_479858


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.929606"], ["updated_at", "2020-04-22 05:35:44.929606"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.928356"], ["updated_at", "2020-04-22 05:35:44.928356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.931542"], ["updated_at", "2020-04-22 05:35:44.931542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.933794"], ["updated_at", "2020-04-22 05:35:44.933794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (5.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_662188

 (0.1ms)  begin transaction


CommentTest: test_416814


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.944598"], ["updated_at", "2020-04-22 05:35:44.944598"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.944548"], ["updated_at", "2020-04-22 05:35:44.944548"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.947622"], ["updated_at", "2020-04-22 05:35:44.947622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.947932"], ["updated_at", "2020-04-22 05:35:44.947932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.949578"], ["updated_at", "2020-04-22 05:35:44.949578"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.949874"], ["updated_at", "2020-04-22 05:35:44.949874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_716764


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.959435"], ["updated_at", "2020-04-22 05:35:44.959435"]]
 (0.1ms)  begin transaction

CommentTest: test_95272


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.963907"], ["updated_at", "2020-04-22 05:35:44.963907"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.961971"], ["updated_at", "2020-04-22 05:35:44.961971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.966728"], ["updated_at", "2020-04-22 05:35:44.966728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.967884"], ["updated_at", "2020-04-22 05:35:44.967884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_713715


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.979678"], ["updated_at", "2020-04-22 05:35:44.979678"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.978875"], ["updated_at", "2020-04-22 05:35:44.978875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:44.982818"], ["updated_at", "2020-04-22 05:35:44.982818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:44.985112"], ["updated_at", "2020-04-22 05:35:44.985112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_422339


 (0.1ms)  begin transaction

CommentTest: test_702506


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.997578"], ["updated_at", "2020-04-22 05:35:44.997578"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:44.998719"], ["updated_at", "2020-04-22 05:35:44.998719"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.000190"], ["updated_at", "2020-04-22 05:35:45.000190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.001178"], ["updated_at", "2020-04-22 05:35:45.001178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.006932"], ["updated_at", "2020-04-22 05:35:45.006932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.007153"], ["updated_at", "2020-04-22 05:35:45.007153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_899217


 (0.1ms)  begin transaction

CommentTest: test_691128


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.016207"], ["updated_at", "2020-04-22 05:35:45.016207"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.016476"], ["updated_at", "2020-04-22 05:35:45.016476"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.018392"], ["updated_at", "2020-04-22 05:35:45.018392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.019212"], ["updated_at", "2020-04-22 05:35:45.019212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.020753"], ["updated_at", "2020-04-22 05:35:45.020753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.021483"], ["updated_at", "2020-04-22 05:35:45.021483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_838839


 (0.1ms)  begin transaction

CommentTest: test_188586


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.029378"], ["updated_at", "2020-04-22 05:35:45.029378"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.029336"], ["updated_at", "2020-04-22 05:35:45.029336"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.032051"], ["updated_at", "2020-04-22 05:35:45.032051"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.032374"], ["updated_at", "2020-04-22 05:35:45.032374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.034090"], ["updated_at", "2020-04-22 05:35:45.034090"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.034116"], ["updated_at", "2020-04-22 05:35:45.034116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_805427


 (0.1ms)  begin transaction

CommentTest: test_435657


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.045045"], ["updated_at", "2020-04-22 05:35:45.045045"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.045110"], ["updated_at", "2020-04-22 05:35:45.045110"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.047517"], ["updated_at", "2020-04-22 05:35:45.047517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.047573"], ["updated_at", "2020-04-22 05:35:45.047573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.049759"], ["updated_at", "2020-04-22 05:35:45.049759"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.049766"], ["updated_at", "2020-04-22 05:35:45.049766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_803538


 (0.1ms)  begin transaction

CommentTest: test_408886


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.059577"], ["updated_at", "2020-04-22 05:35:45.059577"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.060732"], ["updated_at", "2020-04-22 05:35:45.060732"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.064542"], ["updated_at", "2020-04-22 05:35:45.064542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.062385"], ["updated_at", "2020-04-22 05:35:45.062385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.065942"], ["updated_at", "2020-04-22 05:35:45.065942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.067049"], ["updated_at", "2020-04-22 05:35:45.067049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_20067


 (0.1ms)  begin transaction

CommentTest: test_924277


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.077950"], ["updated_at", "2020-04-22 05:35:45.077950"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.078625"], ["updated_at", "2020-04-22 05:35:45.078625"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.080345"], ["updated_at", "2020-04-22 05:35:45.080345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.080907"], ["updated_at", "2020-04-22 05:35:45.080907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.082261"], ["updated_at", "2020-04-22 05:35:45.082261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.082536"], ["updated_at", "2020-04-22 05:35:45.082536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_959147


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.095773"], ["updated_at", "2020-04-22 05:35:45.095773"]]

CommentTest: test_14790


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.098564"], ["updated_at", "2020-04-22 05:35:45.098564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.098389"], ["updated_at", "2020-04-22 05:35:45.098389"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.100790"], ["updated_at", "2020-04-22 05:35:45.100790"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.101050"], ["updated_at", "2020-04-22 05:35:45.101050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.103039"], ["updated_at", "2020-04-22 05:35:45.103039"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_817213


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.112871"], ["updated_at", "2020-04-22 05:35:45.112871"]]
 (0.1ms)  begin transaction

CommentTest: test_127211


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.118260"], ["updated_at", "2020-04-22 05:35:45.118260"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.120441"], ["updated_at", "2020-04-22 05:35:45.120441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.122000"], ["updated_at", "2020-04-22 05:35:45.122000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.122622"], ["updated_at", "2020-04-22 05:35:45.122622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.123924"], ["updated_at", "2020-04-22 05:35:45.123924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_713375


 (0.1ms)  begin transaction

CommentTest: test_69582


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.130909"], ["updated_at", "2020-04-22 05:35:45.130909"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.131195"], ["updated_at", "2020-04-22 05:35:45.131195"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.133401"], ["updated_at", "2020-04-22 05:35:45.133401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.133767"], ["updated_at", "2020-04-22 05:35:45.133767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.135340"], ["updated_at", "2020-04-22 05:35:45.135340"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.135341"], ["updated_at", "2020-04-22 05:35:45.135341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.3ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_76056


 (0.1ms)  begin transaction

CommentTest: test_432693


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.147087"], ["updated_at", "2020-04-22 05:35:45.147087"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.147471"], ["updated_at", "2020-04-22 05:35:45.147471"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.148726"], ["updated_at", "2020-04-22 05:35:45.148726"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.149996"], ["updated_at", "2020-04-22 05:35:45.149996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.150492"], ["updated_at", "2020-04-22 05:35:45.150492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.151833"], ["updated_at", "2020-04-22 05:35:45.151833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_19378


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_35909


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.160143"], ["updated_at", "2020-04-22 05:35:45.160143"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.161875"], ["updated_at", "2020-04-22 05:35:45.161875"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.162980"], ["updated_at", "2020-04-22 05:35:45.162980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.164649"], ["updated_at", "2020-04-22 05:35:45.164649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.164710"], ["updated_at", "2020-04-22 05:35:45.164710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.166436"], ["updated_at", "2020-04-22 05:35:45.166436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_659681


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_699583


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.174153"], ["updated_at", "2020-04-22 05:35:45.174153"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.176246"], ["updated_at", "2020-04-22 05:35:45.176246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.175906"], ["updated_at", "2020-04-22 05:35:45.175906"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.179001"], ["updated_at", "2020-04-22 05:35:45.179001"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.178694"], ["updated_at", "2020-04-22 05:35:45.178694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.181229"], ["updated_at", "2020-04-22 05:35:45.181229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_681972


 (0.1ms)  begin transaction

CommentTest: test_117770


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.191173"], ["updated_at", "2020-04-22 05:35:45.191173"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.191943"], ["updated_at", "2020-04-22 05:35:45.191943"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.195076"], ["updated_at", "2020-04-22 05:35:45.195076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.193672"], ["updated_at", "2020-04-22 05:35:45.193672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.196969"], ["updated_at", "2020-04-22 05:35:45.196969"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.196884"], ["updated_at", "2020-04-22 05:35:45.196884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_120001


CommentTest: test_93960


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.209789"], ["updated_at", "2020-04-22 05:35:45.209789"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.209768"], ["updated_at", "2020-04-22 05:35:45.209768"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.212287"], ["updated_at", "2020-04-22 05:35:45.212287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.214076"], ["updated_at", "2020-04-22 05:35:45.214076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.216848"], ["updated_at", "2020-04-22 05:35:45.216848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.218734"], ["updated_at", "2020-04-22 05:35:45.218734"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_26153


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.225706"], ["updated_at", "2020-04-22 05:35:45.225706"]]
 (0.1ms)  begin transaction

CommentTest: test_958274


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.230302"], ["updated_at", "2020-04-22 05:35:45.230302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.230820"], ["updated_at", "2020-04-22 05:35:45.230820"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.232286"], ["updated_at", "2020-04-22 05:35:45.232286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.233430"], ["updated_at", "2020-04-22 05:35:45.233430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.235280"], ["updated_at", "2020-04-22 05:35:45.235280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_337573


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_240351


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.244580"], ["updated_at", "2020-04-22 05:35:45.244580"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.246526"], ["updated_at", "2020-04-22 05:35:45.246526"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.247291"], ["updated_at", "2020-04-22 05:35:45.247291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.248956"], ["updated_at", "2020-04-22 05:35:45.248956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.249119"], ["updated_at", "2020-04-22 05:35:45.249119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.250817"], ["updated_at", "2020-04-22 05:35:45.250817"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_269451


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.261488"], ["updated_at", "2020-04-22 05:35:45.261488"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.263923"], ["updated_at", "2020-04-22 05:35:45.263923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.265181"], ["updated_at", "2020-04-22 05:35:45.265181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_708695


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.268793"], ["updated_at", "2020-04-22 05:35:45.268793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.275186"], ["updated_at", "2020-04-22 05:35:45.275186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_827915


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.276986"], ["updated_at", "2020-04-22 05:35:45.276986"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.277289"], ["updated_at", "2020-04-22 05:35:45.277289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.278600"], ["updated_at", "2020-04-22 05:35:45.278600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.279741"], ["updated_at", "2020-04-22 05:35:45.279741"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_720292


 (1.1ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.285876"], ["updated_at", "2020-04-22 05:35:45.285876"]]
 (0.1ms)  begin transaction

CommentTest: test_770715


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.290772"], ["updated_at", "2020-04-22 05:35:45.290772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.290512"], ["updated_at", "2020-04-22 05:35:45.290512"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.292417"], ["updated_at", "2020-04-22 05:35:45.292417"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.292828"], ["updated_at", "2020-04-22 05:35:45.292828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.294681"], ["updated_at", "2020-04-22 05:35:45.294681"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_466776


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.299150"], ["updated_at", "2020-04-22 05:35:45.299150"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.301484"], ["updated_at", "2020-04-22 05:35:45.301484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_499022


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.303261"], ["updated_at", "2020-04-22 05:35:45.303261"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.303514"], ["updated_at", "2020-04-22 05:35:45.303514"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.306352"], ["updated_at", "2020-04-22 05:35:45.306352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.308593"], ["updated_at", "2020-04-22 05:35:45.308593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_645328


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.313365"], ["updated_at", "2020-04-22 05:35:45.313365"]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_78828


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.315553"], ["updated_at", "2020-04-22 05:35:45.315553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.318167"], ["updated_at", "2020-04-22 05:35:45.318167"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.317313"], ["updated_at", "2020-04-22 05:35:45.317313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.320367"], ["updated_at", "2020-04-22 05:35:45.320367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.322584"], ["updated_at", "2020-04-22 05:35:45.322584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_711186


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_314869


Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.330100"], ["updated_at", "2020-04-22 05:35:45.330100"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.333118"], ["updated_at", "2020-04-22 05:35:45.333118"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.333791"], ["updated_at", "2020-04-22 05:35:45.333791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.335862"], ["updated_at", "2020-04-22 05:35:45.335862"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.335991"], ["updated_at", "2020-04-22 05:35:45.335991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.338792"], ["updated_at", "2020-04-22 05:35:45.338792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_694695


 (0.1ms)  begin transaction

CommentTest: test_746875


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.345547"], ["updated_at", "2020-04-22 05:35:45.345547"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.346108"], ["updated_at", "2020-04-22 05:35:45.346108"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.347911"], ["updated_at", "2020-04-22 05:35:45.347911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.348379"], ["updated_at", "2020-04-22 05:35:45.348379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.350387"], ["updated_at", "2020-04-22 05:35:45.350387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.351632"], ["updated_at", "2020-04-22 05:35:45.351632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_190273


 (0.1ms)  begin transaction

CommentTest: test_497537


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.361793"], ["updated_at", "2020-04-22 05:35:45.361793"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.363618"], ["updated_at", "2020-04-22 05:35:45.363618"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.364981"], ["updated_at", "2020-04-22 05:35:45.364981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.365947"], ["updated_at", "2020-04-22 05:35:45.365947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.366847"], ["updated_at", "2020-04-22 05:35:45.366847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.367984"], ["updated_at", "2020-04-22 05:35:45.367984"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_17336 CommentTest: test_67827



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.380377"], ["updated_at", "2020-04-22 05:35:45.380377"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.380419"], ["updated_at", "2020-04-22 05:35:45.380419"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.384458"], ["updated_at", "2020-04-22 05:35:45.384458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.383854"], ["updated_at", "2020-04-22 05:35:45.383854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.388647"], ["updated_at", "2020-04-22 05:35:45.388647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.389975"], ["updated_at", "2020-04-22 05:35:45.389975"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_125078


 (0.1ms)  begin transaction

CommentTest: test_500918


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.400778"], ["updated_at", "2020-04-22 05:35:45.400778"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.401330"], ["updated_at", "2020-04-22 05:35:45.401330"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.405204"], ["updated_at", "2020-04-22 05:35:45.405204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.406303"], ["updated_at", "2020-04-22 05:35:45.406303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.407505"], ["updated_at", "2020-04-22 05:35:45.407505"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.408135"], ["updated_at", "2020-04-22 05:35:45.408135"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_398722


 (0.1ms)  begin transaction

CommentTest: test_848917


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.417226"], ["updated_at", "2020-04-22 05:35:45.417226"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.418658"], ["updated_at", "2020-04-22 05:35:45.418658"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.421491"], ["updated_at", "2020-04-22 05:35:45.421491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.423261"], ["updated_at", "2020-04-22 05:35:45.423261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.424004"], ["updated_at", "2020-04-22 05:35:45.424004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.425467"], ["updated_at", "2020-04-22 05:35:45.425467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_445602


 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_959469


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.431814"], ["updated_at", "2020-04-22 05:35:45.431814"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.434062"], ["updated_at", "2020-04-22 05:35:45.434062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.433193"], ["updated_at", "2020-04-22 05:35:45.433193"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.435675"], ["updated_at", "2020-04-22 05:35:45.435675"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.435841"], ["updated_at", "2020-04-22 05:35:45.435841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.437922"], ["updated_at", "2020-04-22 05:35:45.437922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_475670


 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_300867


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.444164"], ["updated_at", "2020-04-22 05:35:45.444164"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.445347"], ["updated_at", "2020-04-22 05:35:45.445347"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.446871"], ["updated_at", "2020-04-22 05:35:45.446871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.446606"], ["updated_at", "2020-04-22 05:35:45.446606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.448000"], ["updated_at", "2020-04-22 05:35:45.448000"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.448385"], ["updated_at", "2020-04-22 05:35:45.448385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_429173


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.458226"], ["updated_at", "2020-04-22 05:35:45.458226"]]
 (0.1ms)  begin transaction

CommentTest: test_440466


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.460126"], ["updated_at", "2020-04-22 05:35:45.460126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.461080"], ["updated_at", "2020-04-22 05:35:45.461080"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.462504"], ["updated_at", "2020-04-22 05:35:45.462504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.463594"], ["updated_at", "2020-04-22 05:35:45.463594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.465250"], ["updated_at", "2020-04-22 05:35:45.465250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_933043


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.471122"], ["updated_at", "2020-04-22 05:35:45.471122"]]
 (0.1ms)  begin transaction

CommentTest: test_680369


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.473990"], ["updated_at", "2020-04-22 05:35:45.473990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.474682"], ["updated_at", "2020-04-22 05:35:45.474682"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.476101"], ["updated_at", "2020-04-22 05:35:45.476101"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.476719"], ["updated_at", "2020-04-22 05:35:45.476719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.477913"], ["updated_at", "2020-04-22 05:35:45.477913"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_778990


 (0.1ms)  begin transaction

CommentTest: test_417215


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.488033"], ["updated_at", "2020-04-22 05:35:45.488033"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.491178"], ["updated_at", "2020-04-22 05:35:45.491178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.492489"], ["updated_at", "2020-04-22 05:35:45.492489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.487484"], ["updated_at", "2020-04-22 05:35:45.487484"]]
 (0.1ms)  begin transaction

CommentTest: test_443995


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.498346"], ["updated_at", "2020-04-22 05:35:45.498346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.498777"], ["updated_at", "2020-04-22 05:35:45.498777"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.501548"], ["updated_at", "2020-04-22 05:35:45.501548"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.501229"], ["updated_at", "2020-04-22 05:35:45.501229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.505117"], ["updated_at", "2020-04-22 05:35:45.505117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_65026


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.516650"], ["updated_at", "2020-04-22 05:35:45.516650"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.521578"], ["updated_at", "2020-04-22 05:35:45.521578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.523433"], ["updated_at", "2020-04-22 05:35:45.523433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (10.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_673645


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_340888


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.532396"], ["updated_at", "2020-04-22 05:35:45.532396"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.534555"], ["updated_at", "2020-04-22 05:35:45.534555"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.535023"], ["updated_at", "2020-04-22 05:35:45.535023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.538963"], ["updated_at", "2020-04-22 05:35:45.538963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.539697"], ["updated_at", "2020-04-22 05:35:45.539697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.541577"], ["updated_at", "2020-04-22 05:35:45.541577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_899752


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.547460"], ["updated_at", "2020-04-22 05:35:45.547460"]]
 (0.1ms)  begin transaction

CommentTest: test_579972


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.549517"], ["updated_at", "2020-04-22 05:35:45.549517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.550994"], ["updated_at", "2020-04-22 05:35:45.550994"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.550449"], ["updated_at", "2020-04-22 05:35:45.550449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.554517"], ["updated_at", "2020-04-22 05:35:45.554517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.557329"], ["updated_at", "2020-04-22 05:35:45.557329"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_633009


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.562500"], ["updated_at", "2020-04-22 05:35:45.562500"]]
 (0.1ms)  begin transaction

CommentTest: test_176984


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.565330"], ["updated_at", "2020-04-22 05:35:45.565330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.565739"], ["updated_at", "2020-04-22 05:35:45.565739"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.568222"], ["updated_at", "2020-04-22 05:35:45.568222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.567989"], ["updated_at", "2020-04-22 05:35:45.567989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.570049"], ["updated_at", "2020-04-22 05:35:45.570049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_452000


 (0.1ms)  begin transaction

CommentTest: test_829155


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.577632"], ["updated_at", "2020-04-22 05:35:45.577632"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.579390"], ["updated_at", "2020-04-22 05:35:45.579390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.578512"], ["updated_at", "2020-04-22 05:35:45.578512"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.580572"], ["updated_at", "2020-04-22 05:35:45.580572"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.580815"], ["updated_at", "2020-04-22 05:35:45.580815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.582551"], ["updated_at", "2020-04-22 05:35:45.582551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_908394


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_426645


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.594118"], ["updated_at", "2020-04-22 05:35:45.594118"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.597183"], ["updated_at", "2020-04-22 05:35:45.597183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.596850"], ["updated_at", "2020-04-22 05:35:45.596850"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.599027"], ["updated_at", "2020-04-22 05:35:45.599027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.599394"], ["updated_at", "2020-04-22 05:35:45.599394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.601360"], ["updated_at", "2020-04-22 05:35:45.601360"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_841989


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.610344"], ["updated_at", "2020-04-22 05:35:45.610344"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.613298"], ["updated_at", "2020-04-22 05:35:45.613298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.614482"], ["updated_at", "2020-04-22 05:35:45.614482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_120344


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.622703"], ["updated_at", "2020-04-22 05:35:45.622703"]]
 (0.1ms)  begin transaction

CommentTest: test_453908


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.625637"], ["updated_at", "2020-04-22 05:35:45.625637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.625604"], ["updated_at", "2020-04-22 05:35:45.625604"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.628908"], ["updated_at", "2020-04-22 05:35:45.628908"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.629373"], ["updated_at", "2020-04-22 05:35:45.629373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.631145"], ["updated_at", "2020-04-22 05:35:45.631145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_735008


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.638782"], ["updated_at", "2020-04-22 05:35:45.638782"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.642760"], ["updated_at", "2020-04-22 05:35:45.642760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.644766"], ["updated_at", "2020-04-22 05:35:45.644766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_24550


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_689024


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.650385"], ["updated_at", "2020-04-22 05:35:45.650385"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.652929"], ["updated_at", "2020-04-22 05:35:45.652929"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.657773"], ["updated_at", "2020-04-22 05:35:45.657773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.659315"], ["updated_at", "2020-04-22 05:35:45.659315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.660414"], ["updated_at", "2020-04-22 05:35:45.660414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.662736"], ["updated_at", "2020-04-22 05:35:45.662736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_420124


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_594490


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.674026"], ["updated_at", "2020-04-22 05:35:45.674026"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.673807"], ["updated_at", "2020-04-22 05:35:45.673807"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.677243"], ["updated_at", "2020-04-22 05:35:45.677243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.677559"], ["updated_at", "2020-04-22 05:35:45.677559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.679022"], ["updated_at", "2020-04-22 05:35:45.679022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.679209"], ["updated_at", "2020-04-22 05:35:45.679209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_747415


 (0.2ms)  begin transaction

CommentTest: test_239750


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.686661"], ["updated_at", "2020-04-22 05:35:45.686661"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.689508"], ["updated_at", "2020-04-22 05:35:45.689508"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.691453"], ["updated_at", "2020-04-22 05:35:45.691453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.693536"], ["updated_at", "2020-04-22 05:35:45.693536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.693152"], ["updated_at", "2020-04-22 05:35:45.693152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.696261"], ["updated_at", "2020-04-22 05:35:45.696261"]]
 (0.2ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_937882


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.700608"], ["updated_at", "2020-04-22 05:35:45.700608"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.703287"], ["updated_at", "2020-04-22 05:35:45.703287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.705465"], ["updated_at", "2020-04-22 05:35:45.705465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_682751


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.707717"], ["updated_at", "2020-04-22 05:35:45.707717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.710385"], ["updated_at", "2020-04-22 05:35:45.710385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_642828


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.712063"], ["updated_at", "2020-04-22 05:35:45.712063"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.712868"], ["updated_at", "2020-04-22 05:35:45.712868"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.716865"], ["updated_at", "2020-04-22 05:35:45.716865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_687546


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.718798"], ["updated_at", "2020-04-22 05:35:45.718798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.719970"], ["updated_at", "2020-04-22 05:35:45.719970"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.724146"], ["updated_at", "2020-04-22 05:35:45.724146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_89247


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.726175"], ["updated_at", "2020-04-22 05:35:45.726175"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.725904"], ["updated_at", "2020-04-22 05:35:45.725904"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.729841"], ["updated_at", "2020-04-22 05:35:45.729841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.731985"], ["updated_at", "2020-04-22 05:35:45.731985"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_748432


 (0.1ms)  begin transaction

CommentTest: test_215803


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.741222"], ["updated_at", "2020-04-22 05:35:45.741222"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.742104"], ["updated_at", "2020-04-22 05:35:45.742104"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.743052"], ["updated_at", "2020-04-22 05:35:45.743052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.744530"], ["updated_at", "2020-04-22 05:35:45.744530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.745189"], ["updated_at", "2020-04-22 05:35:45.745189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.746286"], ["updated_at", "2020-04-22 05:35:45.746286"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_511301


CommentTest: test_443733


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.755671"], ["updated_at", "2020-04-22 05:35:45.755671"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.758111"], ["updated_at", "2020-04-22 05:35:45.758111"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.759738"], ["updated_at", "2020-04-22 05:35:45.759738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.761174"], ["updated_at", "2020-04-22 05:35:45.761174"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.762853"], ["updated_at", "2020-04-22 05:35:45.762853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.764739"], ["updated_at", "2020-04-22 05:35:45.764739"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_140703


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.768922"], ["updated_at", "2020-04-22 05:35:45.768922"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.771646"], ["updated_at", "2020-04-22 05:35:45.771646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.774290"], ["updated_at", "2020-04-22 05:35:45.774290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_224951


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.777097"], ["updated_at", "2020-04-22 05:35:45.777097"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_707751


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.780747"], ["updated_at", "2020-04-22 05:35:45.780747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.782880"], ["updated_at", "2020-04-22 05:35:45.782880"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.785341"], ["updated_at", "2020-04-22 05:35:45.785341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.783403"], ["updated_at", "2020-04-22 05:35:45.783403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.789121"], ["updated_at", "2020-04-22 05:35:45.789121"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_879074


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.797531"], ["updated_at", "2020-04-22 05:35:45.797531"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.802825"], ["updated_at", "2020-04-22 05:35:45.802825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.804289"], ["updated_at", "2020-04-22 05:35:45.804289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_962539

 (0.6ms)  rollback transaction

 (0.1ms)  begin transaction

CommentTest: test_503660


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.814242"], ["updated_at", "2020-04-22 05:35:45.814242"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.815523"], ["updated_at", "2020-04-22 05:35:45.815523"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.816949"], ["updated_at", "2020-04-22 05:35:45.816949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.817882"], ["updated_at", "2020-04-22 05:35:45.817882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.818980"], ["updated_at", "2020-04-22 05:35:45.818980"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.822788"], ["updated_at", "2020-04-22 05:35:45.822788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction

CommentTest: test_651053



CommentTest: test_253579


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.831370"], ["updated_at", "2020-04-22 05:35:45.831370"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.831468"], ["updated_at", "2020-04-22 05:35:45.831468"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.833330"], ["updated_at", "2020-04-22 05:35:45.833330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.834173"], ["updated_at", "2020-04-22 05:35:45.834173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.835461"], ["updated_at", "2020-04-22 05:35:45.835461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.842509"], ["updated_at", "2020-04-22 05:35:45.842509"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_851021


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.847093"], ["updated_at", "2020-04-22 05:35:45.847093"]]
 (0.1ms)  begin transaction

CommentTest: test_954687


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.850440"], ["updated_at", "2020-04-22 05:35:45.850440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.854703"], ["updated_at", "2020-04-22 05:35:45.854703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.851596"], ["updated_at", "2020-04-22 05:35:45.851596"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.857729"], ["updated_at", "2020-04-22 05:35:45.857729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.859059"], ["updated_at", "2020-04-22 05:35:45.859059"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_225480


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.863245"], ["updated_at", "2020-04-22 05:35:45.863245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.865222"], ["updated_at", "2020-04-22 05:35:45.865222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_711645


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.867375"], ["updated_at", "2020-04-22 05:35:45.867375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.868276"], ["updated_at", "2020-04-22 05:35:45.868276"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.871783"], ["updated_at", "2020-04-22 05:35:45.871783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.873079"], ["updated_at", "2020-04-22 05:35:45.873079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_489565


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.875842"], ["updated_at", "2020-04-22 05:35:45.875842"]]
 (0.1ms)  begin transaction

CommentTest: test_267331


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.878299"], ["updated_at", "2020-04-22 05:35:45.878299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.879000"], ["updated_at", "2020-04-22 05:35:45.879000"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.880110"], ["updated_at", "2020-04-22 05:35:45.880110"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.880592"], ["updated_at", "2020-04-22 05:35:45.880592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.882194"], ["updated_at", "2020-04-22 05:35:45.882194"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_440365


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.890624"], ["updated_at", "2020-04-22 05:35:45.890624"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_454580


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.893391"], ["updated_at", "2020-04-22 05:35:45.893391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.895324"], ["updated_at", "2020-04-22 05:35:45.895324"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.894869"], ["updated_at", "2020-04-22 05:35:45.894869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.897277"], ["updated_at", "2020-04-22 05:35:45.897277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_327968


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.903742"], ["updated_at", "2020-04-22 05:35:45.903742"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.899564"], ["updated_at", "2020-04-22 05:35:45.899564"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.909192"], ["updated_at", "2020-04-22 05:35:45.909192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.911421"], ["updated_at", "2020-04-22 05:35:45.911421"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_93566


 (0.1ms)  begin transaction

CommentTest: test_265268


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.920740"], ["updated_at", "2020-04-22 05:35:45.920740"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.923559"], ["updated_at", "2020-04-22 05:35:45.923559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.926227"], ["updated_at", "2020-04-22 05:35:45.926227"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.921663"], ["updated_at", "2020-04-22 05:35:45.921663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.928977"], ["updated_at", "2020-04-22 05:35:45.928977"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.930663"], ["updated_at", "2020-04-22 05:35:45.930663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_993474


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.934997"], ["updated_at", "2020-04-22 05:35:45.934997"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.937335"], ["updated_at", "2020-04-22 05:35:45.937335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.939135"], ["updated_at", "2020-04-22 05:35:45.939135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_355728


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.946093"], ["updated_at", "2020-04-22 05:35:45.946093"]]

CommentTest: test_294635


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.948699"], ["updated_at", "2020-04-22 05:35:45.948699"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.949536"], ["updated_at", "2020-04-22 05:35:45.949536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.951393"], ["updated_at", "2020-04-22 05:35:45.951393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.951265"], ["updated_at", "2020-04-22 05:35:45.951265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.953831"], ["updated_at", "2020-04-22 05:35:45.953831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_220881


 (0.2ms)  begin transaction

CommentTest: test_964350


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.963678"], ["updated_at", "2020-04-22 05:35:45.963678"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.963579"], ["updated_at", "2020-04-22 05:35:45.963579"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.966341"], ["updated_at", "2020-04-22 05:35:45.966341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.966948"], ["updated_at", "2020-04-22 05:35:45.966948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.969011"], ["updated_at", "2020-04-22 05:35:45.969011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.969982"], ["updated_at", "2020-04-22 05:35:45.969982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_349722


 (0.1ms)  begin transaction

CommentTest: test_810978


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.980119"], ["updated_at", "2020-04-22 05:35:45.980119"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.981267"], ["updated_at", "2020-04-22 05:35:45.981267"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.983176"], ["updated_at", "2020-04-22 05:35:45.983176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.983667"], ["updated_at", "2020-04-22 05:35:45.983667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.985126"], ["updated_at", "2020-04-22 05:35:45.985126"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:45.987429"], ["updated_at", "2020-04-22 05:35:45.987429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_942393


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.996795"], ["updated_at", "2020-04-22 05:35:45.996795"]]
 (0.1ms)  begin transaction

CommentTest: test_782393


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:45.999521"], ["updated_at", "2020-04-22 05:35:45.999521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:45.999159"], ["updated_at", "2020-04-22 05:35:45.999159"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.001055"], ["updated_at", "2020-04-22 05:35:46.001055"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.001487"], ["updated_at", "2020-04-22 05:35:46.001487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.005177"], ["updated_at", "2020-04-22 05:35:46.005177"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_409660


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.011612"], ["updated_at", "2020-04-22 05:35:46.011612"]]
 (0.0ms)  begin transaction

CommentTest: test_638049


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.014596"], ["updated_at", "2020-04-22 05:35:46.014596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.015125"], ["updated_at", "2020-04-22 05:35:46.015125"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.016434"], ["updated_at", "2020-04-22 05:35:46.016434"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.017001"], ["updated_at", "2020-04-22 05:35:46.017001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.018684"], ["updated_at", "2020-04-22 05:35:46.018684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_301787


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.025169"], ["updated_at", "2020-04-22 05:35:46.025169"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.026982"], ["updated_at", "2020-04-22 05:35:46.026982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_968017


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.028872"], ["updated_at", "2020-04-22 05:35:46.028872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.028638"], ["updated_at", "2020-04-22 05:35:46.028638"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.031004"], ["updated_at", "2020-04-22 05:35:46.031004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.033198"], ["updated_at", "2020-04-22 05:35:46.033198"]]
 (0.1ms)  begin transaction

CommentTest: test_531767

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.038737"], ["updated_at", "2020-04-22 05:35:46.038737"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.041333"], ["updated_at", "2020-04-22 05:35:46.041333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.043214"], ["updated_at", "2020-04-22 05:35:46.043214"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_244187


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_550295


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.049285"], ["updated_at", "2020-04-22 05:35:46.049285"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.051472"], ["updated_at", "2020-04-22 05:35:46.051472"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.052404"], ["updated_at", "2020-04-22 05:35:46.052404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.055506"], ["updated_at", "2020-04-22 05:35:46.055506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.057999"], ["updated_at", "2020-04-22 05:35:46.057999"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.058266"], ["updated_at", "2020-04-22 05:35:46.058266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_474745


 (0.1ms)  begin transaction

CommentTest: test_208154


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.066516"], ["updated_at", "2020-04-22 05:35:46.066516"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.066489"], ["updated_at", "2020-04-22 05:35:46.066489"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.069394"], ["updated_at", "2020-04-22 05:35:46.069394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.069150"], ["updated_at", "2020-04-22 05:35:46.069150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.071251"], ["updated_at", "2020-04-22 05:35:46.071251"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.071369"], ["updated_at", "2020-04-22 05:35:46.071369"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_599993


 (0.2ms)  begin transaction

CommentTest: test_140691


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.088233"], ["updated_at", "2020-04-22 05:35:46.088233"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.091534"], ["updated_at", "2020-04-22 05:35:46.091534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.090924"], ["updated_at", "2020-04-22 05:35:46.090924"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.093493"], ["updated_at", "2020-04-22 05:35:46.093493"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.093882"], ["updated_at", "2020-04-22 05:35:46.093882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.095491"], ["updated_at", "2020-04-22 05:35:46.095491"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_159895


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.100929"], ["updated_at", "2020-04-22 05:35:46.100929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.103962"], ["updated_at", "2020-04-22 05:35:46.103962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.106295"], ["updated_at", "2020-04-22 05:35:46.106295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_639826


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_716649


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.110174"], ["updated_at", "2020-04-22 05:35:46.110174"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.116991"], ["updated_at", "2020-04-22 05:35:46.116991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.116184"], ["updated_at", "2020-04-22 05:35:46.116184"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.119494"], ["updated_at", "2020-04-22 05:35:46.119494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.120164"], ["updated_at", "2020-04-22 05:35:46.120164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.122395"], ["updated_at", "2020-04-22 05:35:46.122395"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_264485


 (0.1ms)  begin transaction

CommentTest: test_474181


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.131403"], ["updated_at", "2020-04-22 05:35:46.131403"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.131954"], ["updated_at", "2020-04-22 05:35:46.131954"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.135148"], ["updated_at", "2020-04-22 05:35:46.135148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.134834"], ["updated_at", "2020-04-22 05:35:46.134834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.139585"], ["updated_at", "2020-04-22 05:35:46.139585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.140633"], ["updated_at", "2020-04-22 05:35:46.140633"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_3871


 (0.1ms)  begin transaction

CommentTest: test_337264


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.148334"], ["updated_at", "2020-04-22 05:35:46.148334"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.149337"], ["updated_at", "2020-04-22 05:35:46.149337"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.150945"], ["updated_at", "2020-04-22 05:35:46.150945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.151128"], ["updated_at", "2020-04-22 05:35:46.151128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.156330"], ["updated_at", "2020-04-22 05:35:46.156330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.157526"], ["updated_at", "2020-04-22 05:35:46.157526"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_623453


 (0.1ms)  begin transaction

CommentTest: test_720730


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.164887"], ["updated_at", "2020-04-22 05:35:46.164887"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.165245"], ["updated_at", "2020-04-22 05:35:46.165245"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.166664"], ["updated_at", "2020-04-22 05:35:46.166664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.167476"], ["updated_at", "2020-04-22 05:35:46.167476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.168626"], ["updated_at", "2020-04-22 05:35:46.168626"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.168951"], ["updated_at", "2020-04-22 05:35:46.168951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_548990


 (0.1ms)  begin transaction

CommentTest: test_248099


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.177596"], ["updated_at", "2020-04-22 05:35:46.177596"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.178277"], ["updated_at", "2020-04-22 05:35:46.178277"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.179221"], ["updated_at", "2020-04-22 05:35:46.179221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.180435"], ["updated_at", "2020-04-22 05:35:46.180435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.180618"], ["updated_at", "2020-04-22 05:35:46.180618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.181883"], ["updated_at", "2020-04-22 05:35:46.181883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618980


 (0.1ms)  begin transaction

CommentTest: test_963195


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.191738"], ["updated_at", "2020-04-22 05:35:46.191738"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.192510"], ["updated_at", "2020-04-22 05:35:46.192510"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.194245"], ["updated_at", "2020-04-22 05:35:46.194245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.194819"], ["updated_at", "2020-04-22 05:35:46.194819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.197745"], ["updated_at", "2020-04-22 05:35:46.197745"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.196159"], ["updated_at", "2020-04-22 05:35:46.196159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_175757


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_848651


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.207310"], ["updated_at", "2020-04-22 05:35:46.207310"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.210538"], ["updated_at", "2020-04-22 05:35:46.210538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.212566"], ["updated_at", "2020-04-22 05:35:46.212566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.209985"], ["updated_at", "2020-04-22 05:35:46.209985"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.216008"], ["updated_at", "2020-04-22 05:35:46.216008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_889279


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.222528"], ["updated_at", "2020-04-22 05:35:46.222528"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.220151"], ["updated_at", "2020-04-22 05:35:46.220151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.228798"], ["updated_at", "2020-04-22 05:35:46.228798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.230908"], ["updated_at", "2020-04-22 05:35:46.230908"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_365906


 (0.1ms)  begin transaction

CommentTest: test_682268


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.239800"], ["updated_at", "2020-04-22 05:35:46.239800"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.239141"], ["updated_at", "2020-04-22 05:35:46.239141"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.242805"], ["updated_at", "2020-04-22 05:35:46.242805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.244507"], ["updated_at", "2020-04-22 05:35:46.244507"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.242738"], ["updated_at", "2020-04-22 05:35:46.242738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.247372"], ["updated_at", "2020-04-22 05:35:46.247372"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_896483


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.252402"], ["updated_at", "2020-04-22 05:35:46.252402"]]
 (0.1ms)  begin transaction

CommentTest: test_832124


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.256827"], ["updated_at", "2020-04-22 05:35:46.256827"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.256031"], ["updated_at", "2020-04-22 05:35:46.256031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.259666"], ["updated_at", "2020-04-22 05:35:46.259666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.260812"], ["updated_at", "2020-04-22 05:35:46.260812"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.261646"], ["updated_at", "2020-04-22 05:35:46.261646"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_924494


 (0.1ms)  begin transaction

CommentTest: test_858888


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.272564"], ["updated_at", "2020-04-22 05:35:46.272564"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.274442"], ["updated_at", "2020-04-22 05:35:46.274442"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.275680"], ["updated_at", "2020-04-22 05:35:46.275680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.277232"], ["updated_at", "2020-04-22 05:35:46.277232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.277756"], ["updated_at", "2020-04-22 05:35:46.277756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.279486"], ["updated_at", "2020-04-22 05:35:46.279486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_221760


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.286942"], ["updated_at", "2020-04-22 05:35:46.286942"]]
 (0.1ms)  begin transaction

CommentTest: test_636997


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.291587"], ["updated_at", "2020-04-22 05:35:46.291587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.293416"], ["updated_at", "2020-04-22 05:35:46.293416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.293107"], ["updated_at", "2020-04-22 05:35:46.293107"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.295673"], ["updated_at", "2020-04-22 05:35:46.295673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.297856"], ["updated_at", "2020-04-22 05:35:46.297856"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_356311


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.301230"], ["updated_at", "2020-04-22 05:35:46.301230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.305707"], ["updated_at", "2020-04-22 05:35:46.305707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_517885


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.307944"], ["updated_at", "2020-04-22 05:35:46.307944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.309573"], ["updated_at", "2020-04-22 05:35:46.309573"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.312326"], ["updated_at", "2020-04-22 05:35:46.312326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.314160"], ["updated_at", "2020-04-22 05:35:46.314160"]]
 (0.1ms)  begin transaction

CommentTest: test_731263


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.316313"], ["updated_at", "2020-04-22 05:35:46.316313"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.319504"], ["updated_at", "2020-04-22 05:35:46.319504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.321480"], ["updated_at", "2020-04-22 05:35:46.321480"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_760077


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.324723"], ["updated_at", "2020-04-22 05:35:46.324723"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.326549"], ["updated_at", "2020-04-22 05:35:46.326549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_429101


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.328727"], ["updated_at", "2020-04-22 05:35:46.328727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.329802"], ["updated_at", "2020-04-22 05:35:46.329802"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.331406"], ["updated_at", "2020-04-22 05:35:46.331406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.333397"], ["updated_at", "2020-04-22 05:35:46.333397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_733446


 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_682286


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.343096"], ["updated_at", "2020-04-22 05:35:46.343096"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.344201"], ["updated_at", "2020-04-22 05:35:46.344201"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.345588"], ["updated_at", "2020-04-22 05:35:46.345588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.346743"], ["updated_at", "2020-04-22 05:35:46.346743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.347741"], ["updated_at", "2020-04-22 05:35:46.347741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.348678"], ["updated_at", "2020-04-22 05:35:46.348678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_184179


 (0.1ms)  begin transaction

CommentTest: test_234086


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.358718"], ["updated_at", "2020-04-22 05:35:46.358718"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.358861"], ["updated_at", "2020-04-22 05:35:46.358861"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.361384"], ["updated_at", "2020-04-22 05:35:46.361384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.363705"], ["updated_at", "2020-04-22 05:35:46.363705"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.364119"], ["updated_at", "2020-04-22 05:35:46.364119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.366501"], ["updated_at", "2020-04-22 05:35:46.366501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_168504


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.372954"], ["updated_at", "2020-04-22 05:35:46.372954"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_438503


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.375869"], ["updated_at", "2020-04-22 05:35:46.375869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.377663"], ["updated_at", "2020-04-22 05:35:46.377663"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.378184"], ["updated_at", "2020-04-22 05:35:46.378184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.379363"], ["updated_at", "2020-04-22 05:35:46.379363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.380518"], ["updated_at", "2020-04-22 05:35:46.380518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_42481


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.387695"], ["updated_at", "2020-04-22 05:35:46.387695"]]
 (2.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.390639"], ["updated_at", "2020-04-22 05:35:46.390639"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_175274


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.392563"], ["updated_at", "2020-04-22 05:35:46.392563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.393997"], ["updated_at", "2020-04-22 05:35:46.393997"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.398696"], ["updated_at", "2020-04-22 05:35:46.398696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_682008


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.401085"], ["updated_at", "2020-04-22 05:35:46.401085"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.401624"], ["updated_at", "2020-04-22 05:35:46.401624"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.404375"], ["updated_at", "2020-04-22 05:35:46.404375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.408516"], ["updated_at", "2020-04-22 05:35:46.408516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_522546


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.413503"], ["updated_at", "2020-04-22 05:35:46.413503"]]
 (0.1ms)  begin transaction

CommentTest: test_167487


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.416681"], ["updated_at", "2020-04-22 05:35:46.416681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.416839"], ["updated_at", "2020-04-22 05:35:46.416839"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.420420"], ["updated_at", "2020-04-22 05:35:46.420420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.426561"], ["updated_at", "2020-04-22 05:35:46.426561"]]
Recording Create (9.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.419573"], ["updated_at", "2020-04-22 05:35:46.419573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_309140


 (0.1ms)  begin transaction

CommentTest: test_788698


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.441526"], ["updated_at", "2020-04-22 05:35:46.441526"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.442990"], ["updated_at", "2020-04-22 05:35:46.442990"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.444256"], ["updated_at", "2020-04-22 05:35:46.444256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.445419"], ["updated_at", "2020-04-22 05:35:46.445419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.445869"], ["updated_at", "2020-04-22 05:35:46.445869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.447667"], ["updated_at", "2020-04-22 05:35:46.447667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_696333


 (1.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.456302"], ["updated_at", "2020-04-22 05:35:46.456302"]]

CommentTest: test_225311


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.458346"], ["updated_at", "2020-04-22 05:35:46.458346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.458395"], ["updated_at", "2020-04-22 05:35:46.458395"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.459599"], ["updated_at", "2020-04-22 05:35:46.459599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.461449"], ["updated_at", "2020-04-22 05:35:46.461449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.463122"], ["updated_at", "2020-04-22 05:35:46.463122"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_561985


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_653655


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.468492"], ["updated_at", "2020-04-22 05:35:46.468492"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.471405"], ["updated_at", "2020-04-22 05:35:46.471405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.470530"], ["updated_at", "2020-04-22 05:35:46.470530"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.473899"], ["updated_at", "2020-04-22 05:35:46.473899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.475145"], ["updated_at", "2020-04-22 05:35:46.475145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.476856"], ["updated_at", "2020-04-22 05:35:46.476856"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_169946


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.481574"], ["updated_at", "2020-04-22 05:35:46.481574"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_783441


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.484470"], ["updated_at", "2020-04-22 05:35:46.484470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.485910"], ["updated_at", "2020-04-22 05:35:46.485910"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.486346"], ["updated_at", "2020-04-22 05:35:46.486346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.487718"], ["updated_at", "2020-04-22 05:35:46.487718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.489407"], ["updated_at", "2020-04-22 05:35:46.489407"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_426898


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.497181"], ["updated_at", "2020-04-22 05:35:46.497181"]]
 (0.1ms)  begin transaction

CommentTest: test_427282


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.499598"], ["updated_at", "2020-04-22 05:35:46.499598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.500040"], ["updated_at", "2020-04-22 05:35:46.500040"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.502197"], ["updated_at", "2020-04-22 05:35:46.502197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.508028"], ["updated_at", "2020-04-22 05:35:46.508028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.510771"], ["updated_at", "2020-04-22 05:35:46.510771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_850442


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.513575"], ["updated_at", "2020-04-22 05:35:46.513575"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.515742"], ["updated_at", "2020-04-22 05:35:46.515742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_580132


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.517879"], ["updated_at", "2020-04-22 05:35:46.517879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.519446"], ["updated_at", "2020-04-22 05:35:46.519446"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.521835"], ["updated_at", "2020-04-22 05:35:46.521835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.526078"], ["updated_at", "2020-04-22 05:35:46.526078"]]
 (0.1ms)  begin transaction

CommentTest: test_283084


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.528898"], ["updated_at", "2020-04-22 05:35:46.528898"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.531510"], ["updated_at", "2020-04-22 05:35:46.531510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_789736


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.533605"], ["updated_at", "2020-04-22 05:35:46.533605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.535138"], ["updated_at", "2020-04-22 05:35:46.535138"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.540119"], ["updated_at", "2020-04-22 05:35:46.540119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_75126


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.542177"], ["updated_at", "2020-04-22 05:35:46.542177"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.542767"], ["updated_at", "2020-04-22 05:35:46.542767"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.545070"], ["updated_at", "2020-04-22 05:35:46.545070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.547247"], ["updated_at", "2020-04-22 05:35:46.547247"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_355949


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.551463"], ["updated_at", "2020-04-22 05:35:46.551463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.554161"], ["updated_at", "2020-04-22 05:35:46.554161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_844468


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.557191"], ["updated_at", "2020-04-22 05:35:46.557191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.558181"], ["updated_at", "2020-04-22 05:35:46.558181"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.561257"], ["updated_at", "2020-04-22 05:35:46.561257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.564489"], ["updated_at", "2020-04-22 05:35:46.564489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_42417


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (4.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.571530"], ["updated_at", "2020-04-22 05:35:46.571530"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.582117"], ["updated_at", "2020-04-22 05:35:46.582117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_494570


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.584100"], ["updated_at", "2020-04-22 05:35:46.584100"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.584157"], ["updated_at", "2020-04-22 05:35:46.584157"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.587507"], ["updated_at", "2020-04-22 05:35:46.587507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.589914"], ["updated_at", "2020-04-22 05:35:46.589914"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_32294


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_205508


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.597119"], ["updated_at", "2020-04-22 05:35:46.597119"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.598917"], ["updated_at", "2020-04-22 05:35:46.598917"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.599604"], ["updated_at", "2020-04-22 05:35:46.599604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.608376"], ["updated_at", "2020-04-22 05:35:46.608376"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.610060"], ["updated_at", "2020-04-22 05:35:46.610060"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.618463"], ["updated_at", "2020-04-22 05:35:46.618463"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_102406


 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_220433


Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.648540"], ["updated_at", "2020-04-22 05:35:46.648540"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.663996"], ["updated_at", "2020-04-22 05:35:46.663996"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.666815"], ["updated_at", "2020-04-22 05:35:46.666815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.675313"], ["updated_at", "2020-04-22 05:35:46.675313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (8.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.676718"], ["updated_at", "2020-04-22 05:35:46.676718"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.698180"], ["updated_at", "2020-04-22 05:35:46.698180"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_653144


 (0.8ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_923209


 (2.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.766028"], ["updated_at", "2020-04-22 05:35:46.766028"]]
Course Create (44.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.743102"], ["updated_at", "2020-04-22 05:35:46.743102"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.793412"], ["updated_at", "2020-04-22 05:35:46.793412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.795828"], ["updated_at", "2020-04-22 05:35:46.795828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.804112"], ["updated_at", "2020-04-22 05:35:46.804112"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.800622"], ["updated_at", "2020-04-22 05:35:46.800622"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  begin transaction

CommentTest: test_966804


 (3.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.851117"], ["updated_at", "2020-04-22 05:35:46.851117"]]
 (0.2ms)  begin transaction

CommentTest: test_942860


Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.862264"], ["updated_at", "2020-04-22 05:35:46.862264"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.865844"], ["updated_at", "2020-04-22 05:35:46.865844"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.870919"], ["updated_at", "2020-04-22 05:35:46.870919"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.877431"], ["updated_at", "2020-04-22 05:35:46.877431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.885173"], ["updated_at", "2020-04-22 05:35:46.885173"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_440060


 (0.3ms)  SAVEPOINT active_record_1
 (2.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (23.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.928841"], ["updated_at", "2020-04-22 05:35:46.928841"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_447107


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (15.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.968487"], ["updated_at", "2020-04-22 05:35:46.968487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:46.976736"], ["updated_at", "2020-04-22 05:35:46.976736"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:46.994363"], ["updated_at", "2020-04-22 05:35:46.994363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:46.997658"], ["updated_at", "2020-04-22 05:35:46.997658"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (21.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.001792"], ["updated_at", "2020-04-22 05:35:47.001792"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (6.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_945457


 (0.2ms)  begin transaction

CommentTest: test_937561


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.066991"], ["updated_at", "2020-04-22 05:35:47.066991"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.068146"], ["updated_at", "2020-04-22 05:35:47.068146"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.082246"], ["updated_at", "2020-04-22 05:35:47.082246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.082031"], ["updated_at", "2020-04-22 05:35:47.082031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.093536"], ["updated_at", "2020-04-22 05:35:47.093536"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.105043"], ["updated_at", "2020-04-22 05:35:47.105043"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.5ms)  rollback transaction
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_418777


 (0.2ms)  begin transaction

CommentTest: test_41996


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.183654"], ["updated_at", "2020-04-22 05:35:47.183654"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.192156"], ["updated_at", "2020-04-22 05:35:47.192156"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.198322"], ["updated_at", "2020-04-22 05:35:47.198322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.212649"], ["updated_at", "2020-04-22 05:35:47.212649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.214369"], ["updated_at", "2020-04-22 05:35:47.214369"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.220920"], ["updated_at", "2020-04-22 05:35:47.220920"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_418806


 (0.3ms)  SAVEPOINT active_record_1
 (18.4ms)  rollback transaction
Course Create (15.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.273280"], ["updated_at", "2020-04-22 05:35:47.273280"]]
 (0.2ms)  begin transaction

CommentTest: test_154697


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.296966"], ["updated_at", "2020-04-22 05:35:47.296966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.297899"], ["updated_at", "2020-04-22 05:35:47.297899"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.305696"], ["updated_at", "2020-04-22 05:35:47.305696"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.330929"], ["updated_at", "2020-04-22 05:35:47.330929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_235785


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.355038"], ["updated_at", "2020-04-22 05:35:47.355038"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.371018"], ["updated_at", "2020-04-22 05:35:47.371018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.354179"], ["updated_at", "2020-04-22 05:35:47.354179"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.379657"], ["updated_at", "2020-04-22 05:35:47.379657"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (12.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.8ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_548053


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.428675"], ["updated_at", "2020-04-22 05:35:47.428675"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.451214"], ["updated_at", "2020-04-22 05:35:47.451214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_865048


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.466788"], ["updated_at", "2020-04-22 05:35:47.466788"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.490442"], ["updated_at", "2020-04-22 05:35:47.490442"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.512125"], ["updated_at", "2020-04-22 05:35:47.512125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.530995"], ["updated_at", "2020-04-22 05:35:47.530995"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.1ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_543661


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.552767"], ["updated_at", "2020-04-22 05:35:47.552767"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_390505


Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.564907"], ["updated_at", "2020-04-22 05:35:47.564907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.570665"], ["updated_at", "2020-04-22 05:35:47.570665"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.579427"], ["updated_at", "2020-04-22 05:35:47.579427"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.583585"], ["updated_at", "2020-04-22 05:35:47.583585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.599780"], ["updated_at", "2020-04-22 05:35:47.599780"]]
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_558365


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.625004"], ["updated_at", "2020-04-22 05:35:47.625004"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.632713"], ["updated_at", "2020-04-22 05:35:47.632713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_729252


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.642203"], ["updated_at", "2020-04-22 05:35:47.642203"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.645745"], ["updated_at", "2020-04-22 05:35:47.645745"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (12.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.667347"], ["updated_at", "2020-04-22 05:35:47.667347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (12.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_474450

Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.688951"], ["updated_at", "2020-04-22 05:35:47.688951"]]

 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.700891"], ["updated_at", "2020-04-22 05:35:47.700891"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.713637"], ["updated_at", "2020-04-22 05:35:47.713637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.721583"], ["updated_at", "2020-04-22 05:35:47.721583"]]
 (0.3ms)  begin transaction

CommentTest: test_751822


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (7.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.732332"], ["updated_at", "2020-04-22 05:35:47.732332"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_392210


Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.750270"], ["updated_at", "2020-04-22 05:35:47.750270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.758716"], ["updated_at", "2020-04-22 05:35:47.758716"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.760776"], ["updated_at", "2020-04-22 05:35:47.760776"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.769803"], ["updated_at", "2020-04-22 05:35:47.769803"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (7.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.796999"], ["updated_at", "2020-04-22 05:35:47.796999"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_897742


 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_562141


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.860119"], ["updated_at", "2020-04-22 05:35:47.860119"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.867326"], ["updated_at", "2020-04-22 05:35:47.867326"]]
Bucket Create (5.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.880949"], ["updated_at", "2020-04-22 05:35:47.880949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.881794"], ["updated_at", "2020-04-22 05:35:47.881794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.894425"], ["updated_at", "2020-04-22 05:35:47.894425"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (16.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.893776"], ["updated_at", "2020-04-22 05:35:47.893776"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_639463



CommentTest: test_688240


 (0.3ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.962807"], ["updated_at", "2020-04-22 05:35:47.962807"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:47.965699"], ["updated_at", "2020-04-22 05:35:47.965699"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.974187"], ["updated_at", "2020-04-22 05:35:47.974187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:47.977406"], ["updated_at", "2020-04-22 05:35:47.977406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.985489"], ["updated_at", "2020-04-22 05:35:47.985489"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:47.987282"], ["updated_at", "2020-04-22 05:35:47.987282"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (20.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_828413


 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.053753"], ["updated_at", "2020-04-22 05:35:48.053753"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.067503"], ["updated_at", "2020-04-22 05:35:48.067503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  begin transaction

CommentTest: test_833840


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.077796"], ["updated_at", "2020-04-22 05:35:48.077796"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.080808"], ["updated_at", "2020-04-22 05:35:48.080808"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.105748"], ["updated_at", "2020-04-22 05:35:48.105748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.116051"], ["updated_at", "2020-04-22 05:35:48.116051"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_315049


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.131227"], ["updated_at", "2020-04-22 05:35:48.131227"]]
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_681315


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.142087"], ["updated_at", "2020-04-22 05:35:48.142087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (8.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.149887"], ["updated_at", "2020-04-22 05:35:48.149887"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.162992"], ["updated_at", "2020-04-22 05:35:48.162992"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.175015"], ["updated_at", "2020-04-22 05:35:48.175015"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.185195"], ["updated_at", "2020-04-22 05:35:48.185195"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_451570


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.296154"], ["updated_at", "2020-04-22 05:35:48.296154"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.326337"], ["updated_at", "2020-04-22 05:35:48.326337"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_889797


 (2.1ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.335456"], ["updated_at", "2020-04-22 05:35:48.335456"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (12.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.334927"], ["updated_at", "2020-04-22 05:35:48.334927"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (5.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (6.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.362237"], ["updated_at", "2020-04-22 05:35:48.362237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (7.5ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.377105"], ["updated_at", "2020-04-22 05:35:48.377105"]]
 (0.5ms)  begin transaction

CommentTest: test_312722


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.384803"], ["updated_at", "2020-04-22 05:35:48.384803"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.396166"], ["updated_at", "2020-04-22 05:35:48.396166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.414353"], ["updated_at", "2020-04-22 05:35:48.414353"]]
 (1.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_168853


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.434723"], ["updated_at", "2020-04-22 05:35:48.434723"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.460338"], ["updated_at", "2020-04-22 05:35:48.460338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_12827


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.475339"], ["updated_at", "2020-04-22 05:35:48.475339"]]
Recording Create (27.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.467753"], ["updated_at", "2020-04-22 05:35:48.467753"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.486175"], ["updated_at", "2020-04-22 05:35:48.486175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.505905"], ["updated_at", "2020-04-22 05:35:48.505905"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_406018


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.555990"], ["updated_at", "2020-04-22 05:35:48.555990"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.646788"], ["updated_at", "2020-04-22 05:35:48.646788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (86.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.662506"], ["updated_at", "2020-04-22 05:35:48.662506"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_890752


 (0.9ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.687741"], ["updated_at", "2020-04-22 05:35:48.687741"]]
Comment Create (9.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.698031"], ["updated_at", "2020-04-22 05:35:48.698031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.707486"], ["updated_at", "2020-04-22 05:35:48.707486"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_935913


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.728249"], ["updated_at", "2020-04-22 05:35:48.728249"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.748734"], ["updated_at", "2020-04-22 05:35:48.748734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_962859


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.758941"], ["updated_at", "2020-04-22 05:35:48.758941"]]
 (0.3ms)  SAVEPOINT active_record_1
 (8.7ms)  RELEASE SAVEPOINT active_record_1
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.760442"], ["updated_at", "2020-04-22 05:35:48.760442"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.780772"], ["updated_at", "2020-04-22 05:35:48.780772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.793083"], ["updated_at", "2020-04-22 05:35:48.793083"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_652113


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.803207"], ["updated_at", "2020-04-22 05:35:48.803207"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (16.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.833441"], ["updated_at", "2020-04-22 05:35:48.833441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.1ms)  rollback transaction
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.843005"], ["updated_at", "2020-04-22 05:35:48.843005"]]
 (0.2ms)  begin transaction

CommentTest: test_579130


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.855139"], ["updated_at", "2020-04-22 05:35:48.855139"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.877932"], ["updated_at", "2020-04-22 05:35:48.877932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.885372"], ["updated_at", "2020-04-22 05:35:48.885372"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_642329


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.912405"], ["updated_at", "2020-04-22 05:35:48.912405"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.943978"], ["updated_at", "2020-04-22 05:35:48.943978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_598213


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.952354"], ["updated_at", "2020-04-22 05:35:48.952354"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.957768"], ["updated_at", "2020-04-22 05:35:48.957768"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:48.967397"], ["updated_at", "2020-04-22 05:35:48.967397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:48.979743"], ["updated_at", "2020-04-22 05:35:48.979743"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_340657


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:48.996127"], ["updated_at", "2020-04-22 05:35:48.996127"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.0ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.010265"], ["updated_at", "2020-04-22 05:35:49.010265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_455416


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.022754"], ["updated_at", "2020-04-22 05:35:49.022754"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.022724"], ["updated_at", "2020-04-22 05:35:49.022724"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.045253"], ["updated_at", "2020-04-22 05:35:49.045253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.052726"], ["updated_at", "2020-04-22 05:35:49.052726"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_525733


 (2.0ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.104854"], ["updated_at", "2020-04-22 05:35:49.104854"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.123727"], ["updated_at", "2020-04-22 05:35:49.123727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_616911


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.137283"], ["updated_at", "2020-04-22 05:35:49.137283"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.132604"], ["updated_at", "2020-04-22 05:35:49.132604"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.153553"], ["updated_at", "2020-04-22 05:35:49.153553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.170890"], ["updated_at", "2020-04-22 05:35:49.170890"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_234953


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.203784"], ["updated_at", "2020-04-22 05:35:49.203784"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (4.3ms)  begin transaction

CommentTest: test_515135


Bucket Create (12.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.217351"], ["updated_at", "2020-04-22 05:35:49.217351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (7.1ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.244562"], ["updated_at", "2020-04-22 05:35:49.244562"]]
Course Create (5.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.234574"], ["updated_at", "2020-04-22 05:35:49.234574"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.264569"], ["updated_at", "2020-04-22 05:35:49.264569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.279406"], ["updated_at", "2020-04-22 05:35:49.279406"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_596978


 (1.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.294959"], ["updated_at", "2020-04-22 05:35:49.294959"]]
 (4.9ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.313257"], ["updated_at", "2020-04-22 05:35:49.313257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_93390


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.332178"], ["updated_at", "2020-04-22 05:35:49.332178"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.331922"], ["updated_at", "2020-04-22 05:35:49.331922"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.345008"], ["updated_at", "2020-04-22 05:35:49.345008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.359789"], ["updated_at", "2020-04-22 05:35:49.359789"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_464333


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.381061"], ["updated_at", "2020-04-22 05:35:49.381061"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_561962


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.418401"], ["updated_at", "2020-04-22 05:35:49.418401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.433492"], ["updated_at", "2020-04-22 05:35:49.433492"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (16.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.429913"], ["updated_at", "2020-04-22 05:35:49.429913"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.462076"], ["updated_at", "2020-04-22 05:35:49.462076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.472510"], ["updated_at", "2020-04-22 05:35:49.472510"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_745139


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.491416"], ["updated_at", "2020-04-22 05:35:49.491416"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (5.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.502741"], ["updated_at", "2020-04-22 05:35:49.502741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_457328


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.522853"], ["updated_at", "2020-04-22 05:35:49.522853"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.522923"], ["updated_at", "2020-04-22 05:35:49.522923"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.536870"], ["updated_at", "2020-04-22 05:35:49.536870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (7.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.547347"], ["updated_at", "2020-04-22 05:35:49.547347"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.5ms)  rollback transaction
 (3.3ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_574075


 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_680565


Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.615666"], ["updated_at", "2020-04-22 05:35:49.615666"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.632017"], ["updated_at", "2020-04-22 05:35:49.632017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.628416"], ["updated_at", "2020-04-22 05:35:49.628416"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.668153"], ["updated_at", "2020-04-22 05:35:49.668153"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.673334"], ["updated_at", "2020-04-22 05:35:49.673334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.684476"], ["updated_at", "2020-04-22 05:35:49.684476"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (10.1ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_809090


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.715425"], ["updated_at", "2020-04-22 05:35:49.715425"]]
 (0.2ms)  begin transaction

CommentTest: test_320205


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.731885"], ["updated_at", "2020-04-22 05:35:49.731885"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.733740"], ["updated_at", "2020-04-22 05:35:49.733740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.741613"], ["updated_at", "2020-04-22 05:35:49.741613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.741668"], ["updated_at", "2020-04-22 05:35:49.741668"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.751654"], ["updated_at", "2020-04-22 05:35:49.751654"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.2ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_211861


 (40.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (1.2ms)  begin transaction

CommentTest: test_279779


Course Create (34.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.823012"], ["updated_at", "2020-04-22 05:35:49.823012"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:49.880152"], ["updated_at", "2020-04-22 05:35:49.880152"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.883342"], ["updated_at", "2020-04-22 05:35:49.883342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:49.890890"], ["updated_at", "2020-04-22 05:35:49.890890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.983587"], ["updated_at", "2020-04-22 05:35:49.983587"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:49.991398"], ["updated_at", "2020-04-22 05:35:49.991398"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (14.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_210811


 (0.2ms)  begin transaction

CommentTest: test_308368


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.051855"], ["updated_at", "2020-04-22 05:35:50.051855"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.057295"], ["updated_at", "2020-04-22 05:35:50.057295"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.071863"], ["updated_at", "2020-04-22 05:35:50.071863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (21.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.060739"], ["updated_at", "2020-04-22 05:35:50.060739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.089972"], ["updated_at", "2020-04-22 05:35:50.089972"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.083502"], ["updated_at", "2020-04-22 05:35:50.083502"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_687144


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_331448


Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.146418"], ["updated_at", "2020-04-22 05:35:50.146418"]]
 (1.6ms)  SAVEPOINT active_record_1
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.170634"], ["updated_at", "2020-04-22 05:35:50.170634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.166632"], ["updated_at", "2020-04-22 05:35:50.166632"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.186142"], ["updated_at", "2020-04-22 05:35:50.186142"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.190052"], ["updated_at", "2020-04-22 05:35:50.190052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.204525"], ["updated_at", "2020-04-22 05:35:50.204525"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (1.9ms)  begin transaction

CommentTest: test_547517


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.231081"], ["updated_at", "2020-04-22 05:35:50.231081"]]
 (25.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.256505"], ["updated_at", "2020-04-22 05:35:50.256505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_698714


Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.274720"], ["updated_at", "2020-04-22 05:35:50.274720"]]
 (2.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.282212"], ["updated_at", "2020-04-22 05:35:50.282212"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.296100"], ["updated_at", "2020-04-22 05:35:50.296100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.304456"], ["updated_at", "2020-04-22 05:35:50.304456"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.0ms)  rollback transaction
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_636124


 (0.2ms)  begin transaction
 (0.5ms)  SAVEPOINT active_record_1

CommentTest: test_324375


Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.333148"], ["updated_at", "2020-04-22 05:35:50.333148"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.347222"], ["updated_at", "2020-04-22 05:35:50.347222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.340266"], ["updated_at", "2020-04-22 05:35:50.340266"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.355848"], ["updated_at", "2020-04-22 05:35:50.355848"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.358533"], ["updated_at", "2020-04-22 05:35:50.358533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.373351"], ["updated_at", "2020-04-22 05:35:50.373351"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_417391


 (0.4ms)  SAVEPOINT active_record_1
 (6.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.395505"], ["updated_at", "2020-04-22 05:35:50.395505"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.438088"], ["updated_at", "2020-04-22 05:35:50.438088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_751743


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.445417"], ["updated_at", "2020-04-22 05:35:50.445417"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.459276"], ["updated_at", "2020-04-22 05:35:50.459276"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.467629"], ["updated_at", "2020-04-22 05:35:50.467629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.505516"], ["updated_at", "2020-04-22 05:35:50.505516"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (20.0ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_632612


 (0.2ms)  begin transaction

CommentTest: test_210548


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.543079"], ["updated_at", "2020-04-22 05:35:50.543079"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.548241"], ["updated_at", "2020-04-22 05:35:50.548241"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.557936"], ["updated_at", "2020-04-22 05:35:50.557936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.572409"], ["updated_at", "2020-04-22 05:35:50.572409"]]
Bucket Create (83.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.553715"], ["updated_at", "2020-04-22 05:35:50.553715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.674534"], ["updated_at", "2020-04-22 05:35:50.674534"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_973739


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.697143"], ["updated_at", "2020-04-22 05:35:50.697143"]]
 (0.1ms)  begin transaction

CommentTest: test_625148


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.699971"], ["updated_at", "2020-04-22 05:35:50.699971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.699923"], ["updated_at", "2020-04-22 05:35:50.699923"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.702138"], ["updated_at", "2020-04-22 05:35:50.702138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.703440"], ["updated_at", "2020-04-22 05:35:50.703440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.704766"], ["updated_at", "2020-04-22 05:35:50.704766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_918144


 (0.1ms)  begin transaction

CommentTest: test_649589


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.712719"], ["updated_at", "2020-04-22 05:35:50.712719"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.713829"], ["updated_at", "2020-04-22 05:35:50.713829"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.715580"], ["updated_at", "2020-04-22 05:35:50.715580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.715764"], ["updated_at", "2020-04-22 05:35:50.715764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.717537"], ["updated_at", "2020-04-22 05:35:50.717537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.718692"], ["updated_at", "2020-04-22 05:35:50.718692"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_864789



CommentTest: test_436808


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.735125"], ["updated_at", "2020-04-22 05:35:50.735125"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.735293"], ["updated_at", "2020-04-22 05:35:50.735293"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.738059"], ["updated_at", "2020-04-22 05:35:50.738059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.738588"], ["updated_at", "2020-04-22 05:35:50.738588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.740332"], ["updated_at", "2020-04-22 05:35:50.740332"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.740022"], ["updated_at", "2020-04-22 05:35:50.740022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_935199

 (0.1ms)  begin transaction


CommentTest: test_909859


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.750787"], ["updated_at", "2020-04-22 05:35:50.750787"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.751084"], ["updated_at", "2020-04-22 05:35:50.751084"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.753849"], ["updated_at", "2020-04-22 05:35:50.753849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.755494"], ["updated_at", "2020-04-22 05:35:50.755494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.758177"], ["updated_at", "2020-04-22 05:35:50.758177"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.758037"], ["updated_at", "2020-04-22 05:35:50.758037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_510732


CommentTest: test_312164


 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.768374"], ["updated_at", "2020-04-22 05:35:50.768374"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.768142"], ["updated_at", "2020-04-22 05:35:50.768142"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.772149"], ["updated_at", "2020-04-22 05:35:50.772149"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.772211"], ["updated_at", "2020-04-22 05:35:50.772211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.774238"], ["updated_at", "2020-04-22 05:35:50.774238"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.774299"], ["updated_at", "2020-04-22 05:35:50.774299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_876016


 (0.1ms)  begin transaction

CommentTest: test_299631


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.784511"], ["updated_at", "2020-04-22 05:35:50.784511"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.784806"], ["updated_at", "2020-04-22 05:35:50.784806"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.788833"], ["updated_at", "2020-04-22 05:35:50.788833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.788881"], ["updated_at", "2020-04-22 05:35:50.788881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.790839"], ["updated_at", "2020-04-22 05:35:50.790839"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.791096"], ["updated_at", "2020-04-22 05:35:50.791096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_250581


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_629105


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.799137"], ["updated_at", "2020-04-22 05:35:50.799137"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.801518"], ["updated_at", "2020-04-22 05:35:50.801518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.801150"], ["updated_at", "2020-04-22 05:35:50.801150"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.803981"], ["updated_at", "2020-04-22 05:35:50.803981"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.804254"], ["updated_at", "2020-04-22 05:35:50.804254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.806842"], ["updated_at", "2020-04-22 05:35:50.806842"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_17464


 (0.1ms)  begin transaction

CommentTest: test_747539


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.815928"], ["updated_at", "2020-04-22 05:35:50.815928"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.817195"], ["updated_at", "2020-04-22 05:35:50.817195"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.818999"], ["updated_at", "2020-04-22 05:35:50.818999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.820749"], ["updated_at", "2020-04-22 05:35:50.820749"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.821405"], ["updated_at", "2020-04-22 05:35:50.821405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.822543"], ["updated_at", "2020-04-22 05:35:50.822543"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_371610


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.830380"], ["updated_at", "2020-04-22 05:35:50.830380"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_446280

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.833073"], ["updated_at", "2020-04-22 05:35:50.833073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.835563"], ["updated_at", "2020-04-22 05:35:50.835563"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.835276"], ["updated_at", "2020-04-22 05:35:50.835276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.838937"], ["updated_at", "2020-04-22 05:35:50.838937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.841040"], ["updated_at", "2020-04-22 05:35:50.841040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_371844


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.845065"], ["updated_at", "2020-04-22 05:35:50.845065"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.847704"], ["updated_at", "2020-04-22 05:35:50.847704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_180866


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.850386"], ["updated_at", "2020-04-22 05:35:50.850386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.851268"], ["updated_at", "2020-04-22 05:35:50.851268"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.854230"], ["updated_at", "2020-04-22 05:35:50.854230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.857269"], ["updated_at", "2020-04-22 05:35:50.857269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_783831


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.859705"], ["updated_at", "2020-04-22 05:35:50.859705"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.864316"], ["updated_at", "2020-04-22 05:35:50.864316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.866486"], ["updated_at", "2020-04-22 05:35:50.866486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_682965


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.870986"], ["updated_at", "2020-04-22 05:35:50.870986"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_160554


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.873464"], ["updated_at", "2020-04-22 05:35:50.873464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.875708"], ["updated_at", "2020-04-22 05:35:50.875708"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.878316"], ["updated_at", "2020-04-22 05:35:50.878316"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.881163"], ["updated_at", "2020-04-22 05:35:50.881163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.883063"], ["updated_at", "2020-04-22 05:35:50.883063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_158557


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.888204"], ["updated_at", "2020-04-22 05:35:50.888204"]]
 (0.1ms)  begin transaction

CommentTest: test_946536


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.891148"], ["updated_at", "2020-04-22 05:35:50.891148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.893596"], ["updated_at", "2020-04-22 05:35:50.893596"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.892336"], ["updated_at", "2020-04-22 05:35:50.892336"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.897171"], ["updated_at", "2020-04-22 05:35:50.897171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.900646"], ["updated_at", "2020-04-22 05:35:50.900646"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_885857


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (11.4ms)  rollback transaction
Course Create (10.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.905022"], ["updated_at", "2020-04-22 05:35:50.905022"]]
 (0.1ms)  begin transaction

CommentTest: test_993073


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (9.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.928176"], ["updated_at", "2020-04-22 05:35:50.928176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.929987"], ["updated_at", "2020-04-22 05:35:50.929987"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.940013"], ["updated_at", "2020-04-22 05:35:50.940013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.942466"], ["updated_at", "2020-04-22 05:35:50.942466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.944908"], ["updated_at", "2020-04-22 05:35:50.944908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_173631


 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.959322"], ["updated_at", "2020-04-22 05:35:50.959322"]]

CommentTest: test_798035


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.963221"], ["updated_at", "2020-04-22 05:35:50.963221"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.963425"], ["updated_at", "2020-04-22 05:35:50.963425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.966094"], ["updated_at", "2020-04-22 05:35:50.966094"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.966419"], ["updated_at", "2020-04-22 05:35:50.966419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.968072"], ["updated_at", "2020-04-22 05:35:50.968072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_762860


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.979961"], ["updated_at", "2020-04-22 05:35:50.979961"]]
 (0.1ms)  begin transaction

CommentTest: test_976613


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.982562"], ["updated_at", "2020-04-22 05:35:50.982562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.983883"], ["updated_at", "2020-04-22 05:35:50.983883"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.985135"], ["updated_at", "2020-04-22 05:35:50.985135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:50.986904"], ["updated_at", "2020-04-22 05:35:50.986904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:50.988662"], ["updated_at", "2020-04-22 05:35:50.988662"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415928


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:50.998632"], ["updated_at", "2020-04-22 05:35:50.998632"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.005583"], ["updated_at", "2020-04-22 05:35:51.005583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_973678


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.020109"], ["updated_at", "2020-04-22 05:35:51.020109"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.018452"], ["updated_at", "2020-04-22 05:35:51.018452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (4.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.031371"], ["updated_at", "2020-04-22 05:35:51.031371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.037472"], ["updated_at", "2020-04-22 05:35:51.037472"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_77793


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.050993"], ["updated_at", "2020-04-22 05:35:51.050993"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.054987"], ["updated_at", "2020-04-22 05:35:51.054987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.056715"], ["updated_at", "2020-04-22 05:35:51.056715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (20.8ms)  begin transaction

CommentTest: test_888829


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_290646


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.078613"], ["updated_at", "2020-04-22 05:35:51.078613"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.082548"], ["updated_at", "2020-04-22 05:35:51.082548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.080370"], ["updated_at", "2020-04-22 05:35:51.080370"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.084454"], ["updated_at", "2020-04-22 05:35:51.084454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.085571"], ["updated_at", "2020-04-22 05:35:51.085571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_3706


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.094637"], ["updated_at", "2020-04-22 05:35:51.094637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.096220"], ["updated_at", "2020-04-22 05:35:51.096220"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.099287"], ["updated_at", "2020-04-22 05:35:51.099287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.101150"], ["updated_at", "2020-04-22 05:35:51.101150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_814605


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.107516"], ["updated_at", "2020-04-22 05:35:51.107516"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_319138


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.110282"], ["updated_at", "2020-04-22 05:35:51.110282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.114026"], ["updated_at", "2020-04-22 05:35:51.114026"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.115526"], ["updated_at", "2020-04-22 05:35:51.115526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.116760"], ["updated_at", "2020-04-22 05:35:51.116760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.121552"], ["updated_at", "2020-04-22 05:35:51.121552"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_740600


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.125563"], ["updated_at", "2020-04-22 05:35:51.125563"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_72723


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.129089"], ["updated_at", "2020-04-22 05:35:51.129089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.130488"], ["updated_at", "2020-04-22 05:35:51.130488"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.131157"], ["updated_at", "2020-04-22 05:35:51.131157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.132490"], ["updated_at", "2020-04-22 05:35:51.132490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.134500"], ["updated_at", "2020-04-22 05:35:51.134500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_131626


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.139733"], ["updated_at", "2020-04-22 05:35:51.139733"]]
 (0.1ms)  begin transaction

CommentTest: test_926112


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.142349"], ["updated_at", "2020-04-22 05:35:51.142349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.143152"], ["updated_at", "2020-04-22 05:35:51.143152"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.145340"], ["updated_at", "2020-04-22 05:35:51.145340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.146148"], ["updated_at", "2020-04-22 05:35:51.146148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.149708"], ["updated_at", "2020-04-22 05:35:51.149708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_768047


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.163093"], ["updated_at", "2020-04-22 05:35:51.163093"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.172036"], ["updated_at", "2020-04-22 05:35:51.172036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_898626


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.173909"], ["updated_at", "2020-04-22 05:35:51.173909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.174350"], ["updated_at", "2020-04-22 05:35:51.174350"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.178353"], ["updated_at", "2020-04-22 05:35:51.178353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.180477"], ["updated_at", "2020-04-22 05:35:51.180477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_420822


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.183030"], ["updated_at", "2020-04-22 05:35:51.183030"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.186442"], ["updated_at", "2020-04-22 05:35:51.186442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_31724


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.188370"], ["updated_at", "2020-04-22 05:35:51.188370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.189829"], ["updated_at", "2020-04-22 05:35:51.189829"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_421426


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.192501"], ["updated_at", "2020-04-22 05:35:51.192501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.199540"], ["updated_at", "2020-04-22 05:35:51.199540"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.199820"], ["updated_at", "2020-04-22 05:35:51.199820"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.202437"], ["updated_at", "2020-04-22 05:35:51.202437"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.204891"], ["updated_at", "2020-04-22 05:35:51.204891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_615284


 (0.1ms)  begin transaction

CommentTest: test_367474


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.215207"], ["updated_at", "2020-04-22 05:35:51.215207"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.214824"], ["updated_at", "2020-04-22 05:35:51.214824"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.217884"], ["updated_at", "2020-04-22 05:35:51.217884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.222445"], ["updated_at", "2020-04-22 05:35:51.222445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.223298"], ["updated_at", "2020-04-22 05:35:51.223298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (4.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.225740"], ["updated_at", "2020-04-22 05:35:51.225740"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_539242


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.231919"], ["updated_at", "2020-04-22 05:35:51.231919"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.234343"], ["updated_at", "2020-04-22 05:35:51.234343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_737588


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.236848"], ["updated_at", "2020-04-22 05:35:51.236848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.238305"], ["updated_at", "2020-04-22 05:35:51.238305"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.241923"], ["updated_at", "2020-04-22 05:35:51.241923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_614670


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.244262"], ["updated_at", "2020-04-22 05:35:51.244262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.246681"], ["updated_at", "2020-04-22 05:35:51.246681"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.250285"], ["updated_at", "2020-04-22 05:35:51.250285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.251525"], ["updated_at", "2020-04-22 05:35:51.251525"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_297079


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.260302"], ["updated_at", "2020-04-22 05:35:51.260302"]]
 (0.1ms)  begin transaction

CommentTest: test_526661


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.264385"], ["updated_at", "2020-04-22 05:35:51.264385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.264218"], ["updated_at", "2020-04-22 05:35:51.264218"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.267378"], ["updated_at", "2020-04-22 05:35:51.267378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.267470"], ["updated_at", "2020-04-22 05:35:51.267470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.271718"], ["updated_at", "2020-04-22 05:35:51.271718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_482841


 (0.1ms)  begin transaction

CommentTest: test_871901


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.281222"], ["updated_at", "2020-04-22 05:35:51.281222"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.281855"], ["updated_at", "2020-04-22 05:35:51.281855"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.283708"], ["updated_at", "2020-04-22 05:35:51.283708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.284456"], ["updated_at", "2020-04-22 05:35:51.284456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.285158"], ["updated_at", "2020-04-22 05:35:51.285158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.288014"], ["updated_at", "2020-04-22 05:35:51.288014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_330356


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.293320"], ["updated_at", "2020-04-22 05:35:51.293320"]]
 (0.1ms)  begin transaction

CommentTest: test_684270


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.296367"], ["updated_at", "2020-04-22 05:35:51.296367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.297523"], ["updated_at", "2020-04-22 05:35:51.297523"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.298164"], ["updated_at", "2020-04-22 05:35:51.298164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.299897"], ["updated_at", "2020-04-22 05:35:51.299897"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.302656"], ["updated_at", "2020-04-22 05:35:51.302656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_40803


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.308318"], ["updated_at", "2020-04-22 05:35:51.308318"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_680762


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.311563"], ["updated_at", "2020-04-22 05:35:51.311563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.313751"], ["updated_at", "2020-04-22 05:35:51.313751"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.315401"], ["updated_at", "2020-04-22 05:35:51.315401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.315520"], ["updated_at", "2020-04-22 05:35:51.315520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.316580"], ["updated_at", "2020-04-22 05:35:51.316580"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_901769


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_275519

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.324425"], ["updated_at", "2020-04-22 05:35:51.324425"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.326129"], ["updated_at", "2020-04-22 05:35:51.326129"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.327449"], ["updated_at", "2020-04-22 05:35:51.327449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.331185"], ["updated_at", "2020-04-22 05:35:51.331185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.332266"], ["updated_at", "2020-04-22 05:35:51.332266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.333496"], ["updated_at", "2020-04-22 05:35:51.333496"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_369143


 (0.2ms)  begin transaction

CommentTest: test_438000


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.343409"], ["updated_at", "2020-04-22 05:35:51.343409"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.344034"], ["updated_at", "2020-04-22 05:35:51.344034"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.346720"], ["updated_at", "2020-04-22 05:35:51.346720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.347885"], ["updated_at", "2020-04-22 05:35:51.347885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.348790"], ["updated_at", "2020-04-22 05:35:51.348790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.349624"], ["updated_at", "2020-04-22 05:35:51.349624"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_251876

 (0.5ms)  rollback transaction

 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_579125


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.357798"], ["updated_at", "2020-04-22 05:35:51.357798"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.360776"], ["updated_at", "2020-04-22 05:35:51.360776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.359265"], ["updated_at", "2020-04-22 05:35:51.359265"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.363598"], ["updated_at", "2020-04-22 05:35:51.363598"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.364273"], ["updated_at", "2020-04-22 05:35:51.364273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.365411"], ["updated_at", "2020-04-22 05:35:51.365411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_501154


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_713687


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.373207"], ["updated_at", "2020-04-22 05:35:51.373207"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.374866"], ["updated_at", "2020-04-22 05:35:51.374866"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.375703"], ["updated_at", "2020-04-22 05:35:51.375703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.377814"], ["updated_at", "2020-04-22 05:35:51.377814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.379636"], ["updated_at", "2020-04-22 05:35:51.379636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.380225"], ["updated_at", "2020-04-22 05:35:51.380225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_498971


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.390091"], ["updated_at", "2020-04-22 05:35:51.390091"]]
 (0.1ms)  begin transaction

CommentTest: test_213619


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.392649"], ["updated_at", "2020-04-22 05:35:51.392649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.395969"], ["updated_at", "2020-04-22 05:35:51.395969"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.392879"], ["updated_at", "2020-04-22 05:35:51.392879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.398321"], ["updated_at", "2020-04-22 05:35:51.398321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.400514"], ["updated_at", "2020-04-22 05:35:51.400514"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.0ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_399691


 (0.1ms)  begin transaction

CommentTest: test_172136


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.417095"], ["updated_at", "2020-04-22 05:35:51.417095"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.418268"], ["updated_at", "2020-04-22 05:35:51.418268"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.419822"], ["updated_at", "2020-04-22 05:35:51.419822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.422201"], ["updated_at", "2020-04-22 05:35:51.422201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.423337"], ["updated_at", "2020-04-22 05:35:51.423337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.424286"], ["updated_at", "2020-04-22 05:35:51.424286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_591194


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.434436"], ["updated_at", "2020-04-22 05:35:51.434436"]]

CommentTest: test_928651


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.438033"], ["updated_at", "2020-04-22 05:35:51.438033"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.437899"], ["updated_at", "2020-04-22 05:35:51.437899"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.441048"], ["updated_at", "2020-04-22 05:35:51.441048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.441052"], ["updated_at", "2020-04-22 05:35:51.441052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.443069"], ["updated_at", "2020-04-22 05:35:51.443069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_866633


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.452327"], ["updated_at", "2020-04-22 05:35:51.452327"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.457983"], ["updated_at", "2020-04-22 05:35:51.457983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_779205


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.460321"], ["updated_at", "2020-04-22 05:35:51.460321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.462190"], ["updated_at", "2020-04-22 05:35:51.462190"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.464963"], ["updated_at", "2020-04-22 05:35:51.464963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.466614"], ["updated_at", "2020-04-22 05:35:51.466614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_812720


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.469325"], ["updated_at", "2020-04-22 05:35:51.469325"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.473122"], ["updated_at", "2020-04-22 05:35:51.473122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.475529"], ["updated_at", "2020-04-22 05:35:51.475529"]]
 (0.1ms)  begin transaction

CommentTest: test_417


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.478635"], ["updated_at", "2020-04-22 05:35:51.478635"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.482332"], ["updated_at", "2020-04-22 05:35:51.482332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_42098


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.484106"], ["updated_at", "2020-04-22 05:35:51.484106"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.484309"], ["updated_at", "2020-04-22 05:35:51.484309"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.487086"], ["updated_at", "2020-04-22 05:35:51.487086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.489399"], ["updated_at", "2020-04-22 05:35:51.489399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_382087


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.491552"], ["updated_at", "2020-04-22 05:35:51.491552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_334845


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.494414"], ["updated_at", "2020-04-22 05:35:51.494414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.497248"], ["updated_at", "2020-04-22 05:35:51.497248"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.497844"], ["updated_at", "2020-04-22 05:35:51.497844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.498851"], ["updated_at", "2020-04-22 05:35:51.498851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.500222"], ["updated_at", "2020-04-22 05:35:51.500222"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_704756


 (0.1ms)  begin transaction

CommentTest: test_101991


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.509045"], ["updated_at", "2020-04-22 05:35:51.509045"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.508889"], ["updated_at", "2020-04-22 05:35:51.508889"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.511651"], ["updated_at", "2020-04-22 05:35:51.511651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.512442"], ["updated_at", "2020-04-22 05:35:51.512442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.513803"], ["updated_at", "2020-04-22 05:35:51.513803"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.514387"], ["updated_at", "2020-04-22 05:35:51.514387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415463


 (0.1ms)  begin transaction

CommentTest: test_459910


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.523356"], ["updated_at", "2020-04-22 05:35:51.523356"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.523201"], ["updated_at", "2020-04-22 05:35:51.523201"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.525852"], ["updated_at", "2020-04-22 05:35:51.525852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.525852"], ["updated_at", "2020-04-22 05:35:51.525852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.528163"], ["updated_at", "2020-04-22 05:35:51.528163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.528212"], ["updated_at", "2020-04-22 05:35:51.528212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_726367


 (0.1ms)  begin transaction

CommentTest: test_233271


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.538015"], ["updated_at", "2020-04-22 05:35:51.538015"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.538747"], ["updated_at", "2020-04-22 05:35:51.538747"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.540818"], ["updated_at", "2020-04-22 05:35:51.540818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.541237"], ["updated_at", "2020-04-22 05:35:51.541237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.543374"], ["updated_at", "2020-04-22 05:35:51.543374"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.543655"], ["updated_at", "2020-04-22 05:35:51.543655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_877800

 (0.1ms)  begin transaction


CommentTest: test_262486


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.553080"], ["updated_at", "2020-04-22 05:35:51.553080"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.553652"], ["updated_at", "2020-04-22 05:35:51.553652"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.556156"], ["updated_at", "2020-04-22 05:35:51.556156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.556300"], ["updated_at", "2020-04-22 05:35:51.556300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.558017"], ["updated_at", "2020-04-22 05:35:51.558017"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.558213"], ["updated_at", "2020-04-22 05:35:51.558213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_153538

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.568658"], ["updated_at", "2020-04-22 05:35:51.568658"]]

CommentTest: test_728875


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.571595"], ["updated_at", "2020-04-22 05:35:51.571595"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.574081"], ["updated_at", "2020-04-22 05:35:51.574081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.571847"], ["updated_at", "2020-04-22 05:35:51.571847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.576011"], ["updated_at", "2020-04-22 05:35:51.576011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.579113"], ["updated_at", "2020-04-22 05:35:51.579113"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_428149


 (0.1ms)  begin transaction

CommentTest: test_444310


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.587897"], ["updated_at", "2020-04-22 05:35:51.587897"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.588989"], ["updated_at", "2020-04-22 05:35:51.588989"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.590513"], ["updated_at", "2020-04-22 05:35:51.590513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.591162"], ["updated_at", "2020-04-22 05:35:51.591162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.592320"], ["updated_at", "2020-04-22 05:35:51.592320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.592894"], ["updated_at", "2020-04-22 05:35:51.592894"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_478417


 (0.7ms)  SAVEPOINT active_record_1
 (1.7ms)  begin transaction

CommentTest: test_683300


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.600897"], ["updated_at", "2020-04-22 05:35:51.600897"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.604517"], ["updated_at", "2020-04-22 05:35:51.604517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.604829"], ["updated_at", "2020-04-22 05:35:51.604829"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.606585"], ["updated_at", "2020-04-22 05:35:51.606585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.607279"], ["updated_at", "2020-04-22 05:35:51.607279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.610173"], ["updated_at", "2020-04-22 05:35:51.610173"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_165146


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.619788"], ["updated_at", "2020-04-22 05:35:51.619788"]]
 (2.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.623066"], ["updated_at", "2020-04-22 05:35:51.623066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.625460"], ["updated_at", "2020-04-22 05:35:51.625460"]]
 (0.1ms)  begin transaction

CommentTest: test_429622


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.630260"], ["updated_at", "2020-04-22 05:35:51.630260"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.632158"], ["updated_at", "2020-04-22 05:35:51.632158"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.634588"], ["updated_at", "2020-04-22 05:35:51.634588"]]

CommentTest: test_14504


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.636421"], ["updated_at", "2020-04-22 05:35:51.636421"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.641027"], ["updated_at", "2020-04-22 05:35:51.641027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.642940"], ["updated_at", "2020-04-22 05:35:51.642940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_452382

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.647504"], ["updated_at", "2020-04-22 05:35:51.647504"]]
 (0.9ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_440048


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.649975"], ["updated_at", "2020-04-22 05:35:51.649975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.651898"], ["updated_at", "2020-04-22 05:35:51.651898"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.651468"], ["updated_at", "2020-04-22 05:35:51.651468"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.657624"], ["updated_at", "2020-04-22 05:35:51.657624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.659710"], ["updated_at", "2020-04-22 05:35:51.659710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_997091


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.663798"], ["updated_at", "2020-04-22 05:35:51.663798"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.666528"], ["updated_at", "2020-04-22 05:35:51.666528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_286202


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.668654"], ["updated_at", "2020-04-22 05:35:51.668654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.670648"], ["updated_at", "2020-04-22 05:35:51.670648"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.672651"], ["updated_at", "2020-04-22 05:35:51.672651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.674423"], ["updated_at", "2020-04-22 05:35:51.674423"]]
 (0.0ms)  begin transaction

CommentTest: test_575959


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.676806"], ["updated_at", "2020-04-22 05:35:51.676806"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.679208"], ["updated_at", "2020-04-22 05:35:51.679208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.680900"], ["updated_at", "2020-04-22 05:35:51.680900"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_583690


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.683214"], ["updated_at", "2020-04-22 05:35:51.683214"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.687253"], ["updated_at", "2020-04-22 05:35:51.687253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_876506


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.689472"], ["updated_at", "2020-04-22 05:35:51.689472"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.690583"], ["updated_at", "2020-04-22 05:35:51.690583"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.693083"], ["updated_at", "2020-04-22 05:35:51.693083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_453644


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.699487"], ["updated_at", "2020-04-22 05:35:51.699487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.700382"], ["updated_at", "2020-04-22 05:35:51.700382"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.703728"], ["updated_at", "2020-04-22 05:35:51.703728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.704942"], ["updated_at", "2020-04-22 05:35:51.704942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_775648


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_446168


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.714731"], ["updated_at", "2020-04-22 05:35:51.714731"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.716208"], ["updated_at", "2020-04-22 05:35:51.716208"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.718901"], ["updated_at", "2020-04-22 05:35:51.718901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.722090"], ["updated_at", "2020-04-22 05:35:51.722090"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.717308"], ["updated_at", "2020-04-22 05:35:51.717308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_593254


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.729095"], ["updated_at", "2020-04-22 05:35:51.729095"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.725876"], ["updated_at", "2020-04-22 05:35:51.725876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.733018"], ["updated_at", "2020-04-22 05:35:51.733018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.734664"], ["updated_at", "2020-04-22 05:35:51.734664"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_933157


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_245149


Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.742441"], ["updated_at", "2020-04-22 05:35:51.742441"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.746000"], ["updated_at", "2020-04-22 05:35:51.746000"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.748672"], ["updated_at", "2020-04-22 05:35:51.748672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.747877"], ["updated_at", "2020-04-22 05:35:51.747877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.750581"], ["updated_at", "2020-04-22 05:35:51.750581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.750543"], ["updated_at", "2020-04-22 05:35:51.750543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_143994


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.761130"], ["updated_at", "2020-04-22 05:35:51.761130"]]
 (0.6ms)  begin transaction

CommentTest: test_237946


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.764557"], ["updated_at", "2020-04-22 05:35:51.764557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.764646"], ["updated_at", "2020-04-22 05:35:51.764646"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.766767"], ["updated_at", "2020-04-22 05:35:51.766767"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.767224"], ["updated_at", "2020-04-22 05:35:51.767224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.769798"], ["updated_at", "2020-04-22 05:35:51.769798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_864099


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.775758"], ["updated_at", "2020-04-22 05:35:51.775758"]]
 (3.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.779617"], ["updated_at", "2020-04-22 05:35:51.779617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.781825"], ["updated_at", "2020-04-22 05:35:51.781825"]]
 (0.1ms)  begin transaction

CommentTest: test_194671


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.784056"], ["updated_at", "2020-04-22 05:35:51.784056"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.790833"], ["updated_at", "2020-04-22 05:35:51.790833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_871211


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.794386"], ["updated_at", "2020-04-22 05:35:51.794386"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.795109"], ["updated_at", "2020-04-22 05:35:51.795109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.798162"], ["updated_at", "2020-04-22 05:35:51.798162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.800460"], ["updated_at", "2020-04-22 05:35:51.800460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.8ms)  rollback transaction

CommentTest: test_326694


 (0.1ms)  begin transaction

CommentTest: test_519702


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.809743"], ["updated_at", "2020-04-22 05:35:51.809743"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.812312"], ["updated_at", "2020-04-22 05:35:51.812312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.815094"], ["updated_at", "2020-04-22 05:35:51.815094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.816779"], ["updated_at", "2020-04-22 05:35:51.816779"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.814939"], ["updated_at", "2020-04-22 05:35:51.814939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.821921"], ["updated_at", "2020-04-22 05:35:51.821921"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_710476


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.826365"], ["updated_at", "2020-04-22 05:35:51.826365"]]
 (0.1ms)  begin transaction

CommentTest: test_510384


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.830968"], ["updated_at", "2020-04-22 05:35:51.830968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.832086"], ["updated_at", "2020-04-22 05:35:51.832086"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.833139"], ["updated_at", "2020-04-22 05:35:51.833139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.834305"], ["updated_at", "2020-04-22 05:35:51.834305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.837441"], ["updated_at", "2020-04-22 05:35:51.837441"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_207959


 (0.0ms)  begin transaction

CommentTest: test_495537


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.845228"], ["updated_at", "2020-04-22 05:35:51.845228"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.845686"], ["updated_at", "2020-04-22 05:35:51.845686"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.847792"], ["updated_at", "2020-04-22 05:35:51.847792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.847792"], ["updated_at", "2020-04-22 05:35:51.847792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.849717"], ["updated_at", "2020-04-22 05:35:51.849717"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.850528"], ["updated_at", "2020-04-22 05:35:51.850528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_617682


 (0.1ms)  begin transaction

CommentTest: test_370322


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.857728"], ["updated_at", "2020-04-22 05:35:51.857728"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.858607"], ["updated_at", "2020-04-22 05:35:51.858607"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.860875"], ["updated_at", "2020-04-22 05:35:51.860875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.864708"], ["updated_at", "2020-04-22 05:35:51.864708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.865647"], ["updated_at", "2020-04-22 05:35:51.865647"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.866045"], ["updated_at", "2020-04-22 05:35:51.866045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_646477


 (0.1ms)  begin transaction

CommentTest: test_749714


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.875085"], ["updated_at", "2020-04-22 05:35:51.875085"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.875738"], ["updated_at", "2020-04-22 05:35:51.875738"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.877710"], ["updated_at", "2020-04-22 05:35:51.877710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.880917"], ["updated_at", "2020-04-22 05:35:51.880917"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.880995"], ["updated_at", "2020-04-22 05:35:51.880995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.882941"], ["updated_at", "2020-04-22 05:35:51.882941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_804525


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.889816"], ["updated_at", "2020-04-22 05:35:51.889816"]]
 (0.1ms)  begin transaction

CommentTest: test_960622


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.892316"], ["updated_at", "2020-04-22 05:35:51.892316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.894864"], ["updated_at", "2020-04-22 05:35:51.894864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.894586"], ["updated_at", "2020-04-22 05:35:51.894586"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.898617"], ["updated_at", "2020-04-22 05:35:51.898617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.900904"], ["updated_at", "2020-04-22 05:35:51.900904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_960138


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.905896"], ["updated_at", "2020-04-22 05:35:51.905896"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.908535"], ["updated_at", "2020-04-22 05:35:51.908535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.910718"], ["updated_at", "2020-04-22 05:35:51.910718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_97678


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.919558"], ["updated_at", "2020-04-22 05:35:51.919558"]]
 (0.1ms)  begin transaction

CommentTest: test_383593


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.923501"], ["updated_at", "2020-04-22 05:35:51.923501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.926145"], ["updated_at", "2020-04-22 05:35:51.926145"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.924468"], ["updated_at", "2020-04-22 05:35:51.924468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.929007"], ["updated_at", "2020-04-22 05:35:51.929007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.930796"], ["updated_at", "2020-04-22 05:35:51.930796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_522627


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_629647


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.936883"], ["updated_at", "2020-04-22 05:35:51.936883"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.939310"], ["updated_at", "2020-04-22 05:35:51.939310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.938962"], ["updated_at", "2020-04-22 05:35:51.938962"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.941054"], ["updated_at", "2020-04-22 05:35:51.941054"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.941384"], ["updated_at", "2020-04-22 05:35:51.941384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.947542"], ["updated_at", "2020-04-22 05:35:51.947542"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_28738


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.953451"], ["updated_at", "2020-04-22 05:35:51.953451"]]
 (0.1ms)  begin transaction

CommentTest: test_211271


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.956034"], ["updated_at", "2020-04-22 05:35:51.956034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.956705"], ["updated_at", "2020-04-22 05:35:51.956705"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.958008"], ["updated_at", "2020-04-22 05:35:51.958008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.958898"], ["updated_at", "2020-04-22 05:35:51.958898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.960644"], ["updated_at", "2020-04-22 05:35:51.960644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_559663


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.968171"], ["updated_at", "2020-04-22 05:35:51.968171"]]
Comment Create (2.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.971568"], ["updated_at", "2020-04-22 05:35:51.971568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_477246


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.974029"], ["updated_at", "2020-04-22 05:35:51.974029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.975691"], ["updated_at", "2020-04-22 05:35:51.975691"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.983480"], ["updated_at", "2020-04-22 05:35:51.983480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_145835


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.989305"], ["updated_at", "2020-04-22 05:35:51.989305"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:51.990008"], ["updated_at", "2020-04-22 05:35:51.990008"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:51.992935"], ["updated_at", "2020-04-22 05:35:51.992935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:51.995943"], ["updated_at", "2020-04-22 05:35:51.995943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_489081


 (0.1ms)  begin transaction

CommentTest: test_374637


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.003146"], ["updated_at", "2020-04-22 05:35:52.003146"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.005727"], ["updated_at", "2020-04-22 05:35:52.005727"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.007998"], ["updated_at", "2020-04-22 05:35:52.007998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.008796"], ["updated_at", "2020-04-22 05:35:52.008796"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.010220"], ["updated_at", "2020-04-22 05:35:52.010220"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.010146"], ["updated_at", "2020-04-22 05:35:52.010146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_426288


 (0.1ms)  begin transaction

CommentTest: test_885982


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.017491"], ["updated_at", "2020-04-22 05:35:52.017491"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.018116"], ["updated_at", "2020-04-22 05:35:52.018116"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.019767"], ["updated_at", "2020-04-22 05:35:52.019767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.020855"], ["updated_at", "2020-04-22 05:35:52.020855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.021130"], ["updated_at", "2020-04-22 05:35:52.021130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.022488"], ["updated_at", "2020-04-22 05:35:52.022488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_242356


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_889112


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.030708"], ["updated_at", "2020-04-22 05:35:52.030708"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.032721"], ["updated_at", "2020-04-22 05:35:52.032721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.032235"], ["updated_at", "2020-04-22 05:35:52.032235"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.034253"], ["updated_at", "2020-04-22 05:35:52.034253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.034580"], ["updated_at", "2020-04-22 05:35:52.034580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.036487"], ["updated_at", "2020-04-22 05:35:52.036487"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_509138


 (0.1ms)  begin transaction

CommentTest: test_163522


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.042131"], ["updated_at", "2020-04-22 05:35:52.042131"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.045465"], ["updated_at", "2020-04-22 05:35:52.045465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.045896"], ["updated_at", "2020-04-22 05:35:52.045896"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.047534"], ["updated_at", "2020-04-22 05:35:52.047534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.050530"], ["updated_at", "2020-04-22 05:35:52.050530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.055171"], ["updated_at", "2020-04-22 05:35:52.055171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_265187


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.059030"], ["updated_at", "2020-04-22 05:35:52.059030"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.066463"], ["updated_at", "2020-04-22 05:35:52.066463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_922880


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.068091"], ["updated_at", "2020-04-22 05:35:52.068091"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.070982"], ["updated_at", "2020-04-22 05:35:52.070982"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.073634"], ["updated_at", "2020-04-22 05:35:52.073634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_964598


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.077595"], ["updated_at", "2020-04-22 05:35:52.077595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.080579"], ["updated_at", "2020-04-22 05:35:52.080579"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.083124"], ["updated_at", "2020-04-22 05:35:52.083124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.084920"], ["updated_at", "2020-04-22 05:35:52.084920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_155497


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.088692"], ["updated_at", "2020-04-22 05:35:52.088692"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.091245"], ["updated_at", "2020-04-22 05:35:52.091245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_620352


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.094706"], ["updated_at", "2020-04-22 05:35:52.094706"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.095548"], ["updated_at", "2020-04-22 05:35:52.095548"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.097967"], ["updated_at", "2020-04-22 05:35:52.097967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.099973"], ["updated_at", "2020-04-22 05:35:52.099973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_937946


 (0.1ms)  begin transaction

CommentTest: test_183647


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.111628"], ["updated_at", "2020-04-22 05:35:52.111628"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.115579"], ["updated_at", "2020-04-22 05:35:52.115579"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.117447"], ["updated_at", "2020-04-22 05:35:52.117447"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.118136"], ["updated_at", "2020-04-22 05:35:52.118136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.119837"], ["updated_at", "2020-04-22 05:35:52.119837"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.120133"], ["updated_at", "2020-04-22 05:35:52.120133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_657985


 (0.1ms)  begin transaction

CommentTest: test_747988


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.129661"], ["updated_at", "2020-04-22 05:35:52.129661"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.130133"], ["updated_at", "2020-04-22 05:35:52.130133"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.132311"], ["updated_at", "2020-04-22 05:35:52.132311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.132579"], ["updated_at", "2020-04-22 05:35:52.132579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.134267"], ["updated_at", "2020-04-22 05:35:52.134267"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.134306"], ["updated_at", "2020-04-22 05:35:52.134306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_687762

 (0.1ms)  begin transaction


CommentTest: test_466506

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.145417"], ["updated_at", "2020-04-22 05:35:52.145417"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.149843"], ["updated_at", "2020-04-22 05:35:52.149843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.149440"], ["updated_at", "2020-04-22 05:35:52.149440"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.151816"], ["updated_at", "2020-04-22 05:35:52.151816"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.153431"], ["updated_at", "2020-04-22 05:35:52.153431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.157804"], ["updated_at", "2020-04-22 05:35:52.157804"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_30427


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.166333"], ["updated_at", "2020-04-22 05:35:52.166333"]]
 (0.1ms)  begin transaction

CommentTest: test_315914


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.169456"], ["updated_at", "2020-04-22 05:35:52.169456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.171368"], ["updated_at", "2020-04-22 05:35:52.171368"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.172409"], ["updated_at", "2020-04-22 05:35:52.172409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.173768"], ["updated_at", "2020-04-22 05:35:52.173768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.175647"], ["updated_at", "2020-04-22 05:35:52.175647"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_138415


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.180819"], ["updated_at", "2020-04-22 05:35:52.180819"]]
 (0.1ms)  begin transaction

CommentTest: test_182098


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.183711"], ["updated_at", "2020-04-22 05:35:52.183711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.184389"], ["updated_at", "2020-04-22 05:35:52.184389"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.185631"], ["updated_at", "2020-04-22 05:35:52.185631"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.187879"], ["updated_at", "2020-04-22 05:35:52.187879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.190594"], ["updated_at", "2020-04-22 05:35:52.190594"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_507716


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.194248"], ["updated_at", "2020-04-22 05:35:52.194248"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.197035"], ["updated_at", "2020-04-22 05:35:52.197035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_11405


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.199090"], ["updated_at", "2020-04-22 05:35:52.199090"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.199760"], ["updated_at", "2020-04-22 05:35:52.199760"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.202242"], ["updated_at", "2020-04-22 05:35:52.202242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.204259"], ["updated_at", "2020-04-22 05:35:52.204259"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_141341


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.206264"], ["updated_at", "2020-04-22 05:35:52.206264"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.208972"], ["updated_at", "2020-04-22 05:35:52.208972"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_60248


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.211438"], ["updated_at", "2020-04-22 05:35:52.211438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.213439"], ["updated_at", "2020-04-22 05:35:52.213439"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.215472"], ["updated_at", "2020-04-22 05:35:52.215472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.217350"], ["updated_at", "2020-04-22 05:35:52.217350"]]

CommentTest: test_682249


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.219164"], ["updated_at", "2020-04-22 05:35:52.219164"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.223606"], ["updated_at", "2020-04-22 05:35:52.223606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_976045


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.225754"], ["updated_at", "2020-04-22 05:35:52.225754"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.227255"], ["updated_at", "2020-04-22 05:35:52.227255"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.232021"], ["updated_at", "2020-04-22 05:35:52.232021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_273194


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.234201"], ["updated_at", "2020-04-22 05:35:52.234201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.236773"], ["updated_at", "2020-04-22 05:35:52.236773"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.239166"], ["updated_at", "2020-04-22 05:35:52.239166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.241280"], ["updated_at", "2020-04-22 05:35:52.241280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_92009


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.248138"], ["updated_at", "2020-04-22 05:35:52.248138"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_130894


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.250773"], ["updated_at", "2020-04-22 05:35:52.250773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.252821"], ["updated_at", "2020-04-22 05:35:52.252821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.254345"], ["updated_at", "2020-04-22 05:35:52.254345"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.256707"], ["updated_at", "2020-04-22 05:35:52.256707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.260453"], ["updated_at", "2020-04-22 05:35:52.260453"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_421589


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.266894"], ["updated_at", "2020-04-22 05:35:52.266894"]]
 (0.1ms)  begin transaction

CommentTest: test_562865


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.269954"], ["updated_at", "2020-04-22 05:35:52.269954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.270871"], ["updated_at", "2020-04-22 05:35:52.270871"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.271853"], ["updated_at", "2020-04-22 05:35:52.271853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.273235"], ["updated_at", "2020-04-22 05:35:52.273235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.275250"], ["updated_at", "2020-04-22 05:35:52.275250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_752505


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.283739"], ["updated_at", "2020-04-22 05:35:52.283739"]]
 (0.1ms)  begin transaction

CommentTest: test_243248


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.286866"], ["updated_at", "2020-04-22 05:35:52.286866"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.287899"], ["updated_at", "2020-04-22 05:35:52.287899"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.288956"], ["updated_at", "2020-04-22 05:35:52.288956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.290613"], ["updated_at", "2020-04-22 05:35:52.290613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.292632"], ["updated_at", "2020-04-22 05:35:52.292632"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_440911


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.298407"], ["updated_at", "2020-04-22 05:35:52.298407"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.300998"], ["updated_at", "2020-04-22 05:35:52.300998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_529487


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.304377"], ["updated_at", "2020-04-22 05:35:52.304377"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.305651"], ["updated_at", "2020-04-22 05:35:52.305651"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.308367"], ["updated_at", "2020-04-22 05:35:52.308367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.310457"], ["updated_at", "2020-04-22 05:35:52.310457"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_970402


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.319803"], ["updated_at", "2020-04-22 05:35:52.319803"]]
 (0.1ms)  begin transaction

CommentTest: test_108039


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.322496"], ["updated_at", "2020-04-22 05:35:52.322496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.322702"], ["updated_at", "2020-04-22 05:35:52.322702"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.324620"], ["updated_at", "2020-04-22 05:35:52.324620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.325956"], ["updated_at", "2020-04-22 05:35:52.325956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.329814"], ["updated_at", "2020-04-22 05:35:52.329814"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_941508


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_779052


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.334458"], ["updated_at", "2020-04-22 05:35:52.334458"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.338499"], ["updated_at", "2020-04-22 05:35:52.338499"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.339187"], ["updated_at", "2020-04-22 05:35:52.339187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.340836"], ["updated_at", "2020-04-22 05:35:52.340836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.341067"], ["updated_at", "2020-04-22 05:35:52.341067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.342957"], ["updated_at", "2020-04-22 05:35:52.342957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_197422


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_623219


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.356437"], ["updated_at", "2020-04-22 05:35:52.356437"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.359130"], ["updated_at", "2020-04-22 05:35:52.359130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.358687"], ["updated_at", "2020-04-22 05:35:52.358687"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.361111"], ["updated_at", "2020-04-22 05:35:52.361111"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.361313"], ["updated_at", "2020-04-22 05:35:52.361313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.367844"], ["updated_at", "2020-04-22 05:35:52.367844"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_655242


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.374058"], ["updated_at", "2020-04-22 05:35:52.374058"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.375874"], ["updated_at", "2020-04-22 05:35:52.375874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_914983


Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.377222"], ["updated_at", "2020-04-22 05:35:52.377222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.380684"], ["updated_at", "2020-04-22 05:35:52.380684"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.383128"], ["updated_at", "2020-04-22 05:35:52.383128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.385489"], ["updated_at", "2020-04-22 05:35:52.385489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_15963


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_421470


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.394079"], ["updated_at", "2020-04-22 05:35:52.394079"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.397514"], ["updated_at", "2020-04-22 05:35:52.397514"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.398796"], ["updated_at", "2020-04-22 05:35:52.398796"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.399957"], ["updated_at", "2020-04-22 05:35:52.399957"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.399957"], ["updated_at", "2020-04-22 05:35:52.399957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.401720"], ["updated_at", "2020-04-22 05:35:52.401720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_443177


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.407951"], ["updated_at", "2020-04-22 05:35:52.407951"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.410607"], ["updated_at", "2020-04-22 05:35:52.410607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_878424


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.415121"], ["updated_at", "2020-04-22 05:35:52.415121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.415004"], ["updated_at", "2020-04-22 05:35:52.415004"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.418066"], ["updated_at", "2020-04-22 05:35:52.418066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.420788"], ["updated_at", "2020-04-22 05:35:52.420788"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_777481


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.424434"], ["updated_at", "2020-04-22 05:35:52.424434"]]
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.427237"], ["updated_at", "2020-04-22 05:35:52.427237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_101935


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.429489"], ["updated_at", "2020-04-22 05:35:52.429489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.431385"], ["updated_at", "2020-04-22 05:35:52.431385"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.435209"], ["updated_at", "2020-04-22 05:35:52.435209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.437587"], ["updated_at", "2020-04-22 05:35:52.437587"]]
 (0.1ms)  begin transaction

CommentTest: test_30099


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.439406"], ["updated_at", "2020-04-22 05:35:52.439406"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.443867"], ["updated_at", "2020-04-22 05:35:52.443867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.446062"], ["updated_at", "2020-04-22 05:35:52.446062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_932099

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.450126"], ["updated_at", "2020-04-22 05:35:52.450126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.453041"], ["updated_at", "2020-04-22 05:35:52.453041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_493811


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.456494"], ["updated_at", "2020-04-22 05:35:52.456494"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.456253"], ["updated_at", "2020-04-22 05:35:52.456253"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.458449"], ["updated_at", "2020-04-22 05:35:52.458449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.459931"], ["updated_at", "2020-04-22 05:35:52.459931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_436617


 (0.1ms)  begin transaction

CommentTest: test_143635

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.469913"], ["updated_at", "2020-04-22 05:35:52.469913"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.471721"], ["updated_at", "2020-04-22 05:35:52.471721"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.472865"], ["updated_at", "2020-04-22 05:35:52.472865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.475770"], ["updated_at", "2020-04-22 05:35:52.475770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.474355"], ["updated_at", "2020-04-22 05:35:52.474355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.484872"], ["updated_at", "2020-04-22 05:35:52.484872"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_376798


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.489494"], ["updated_at", "2020-04-22 05:35:52.489494"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.492008"], ["updated_at", "2020-04-22 05:35:52.492008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_895158


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.493958"], ["updated_at", "2020-04-22 05:35:52.493958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.494081"], ["updated_at", "2020-04-22 05:35:52.494081"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.497942"], ["updated_at", "2020-04-22 05:35:52.497942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.500287"], ["updated_at", "2020-04-22 05:35:52.500287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_306934


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.507679"], ["updated_at", "2020-04-22 05:35:52.507679"]]

CommentTest: test_390084


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.512401"], ["updated_at", "2020-04-22 05:35:52.512401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.511776"], ["updated_at", "2020-04-22 05:35:52.511776"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.514941"], ["updated_at", "2020-04-22 05:35:52.514941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.514534"], ["updated_at", "2020-04-22 05:35:52.514534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.516895"], ["updated_at", "2020-04-22 05:35:52.516895"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_767


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.525582"], ["updated_at", "2020-04-22 05:35:52.525582"]]
 (1.6ms)  rollback transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.528851"], ["updated_at", "2020-04-22 05:35:52.528851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_556857


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.533640"], ["updated_at", "2020-04-22 05:35:52.533640"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.533690"], ["updated_at", "2020-04-22 05:35:52.533690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.536866"], ["updated_at", "2020-04-22 05:35:52.536866"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.540609"], ["updated_at", "2020-04-22 05:35:52.540609"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_394703


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.551687"], ["updated_at", "2020-04-22 05:35:52.551687"]]
 (0.1ms)  begin transaction

CommentTest: test_632547


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.556894"], ["updated_at", "2020-04-22 05:35:52.556894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.557539"], ["updated_at", "2020-04-22 05:35:52.557539"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.559181"], ["updated_at", "2020-04-22 05:35:52.559181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.558899"], ["updated_at", "2020-04-22 05:35:52.558899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.561039"], ["updated_at", "2020-04-22 05:35:52.561039"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_870789


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.573055"], ["updated_at", "2020-04-22 05:35:52.573055"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.577177"], ["updated_at", "2020-04-22 05:35:52.577177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.583988"], ["updated_at", "2020-04-22 05:35:52.583988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_276565


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.588794"], ["updated_at", "2020-04-22 05:35:52.588794"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.591254"], ["updated_at", "2020-04-22 05:35:52.591254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.593281"], ["updated_at", "2020-04-22 05:35:52.593281"]]

CommentTest: test_622095


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.595163"], ["updated_at", "2020-04-22 05:35:52.595163"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.597268"], ["updated_at", "2020-04-22 05:35:52.597268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.599229"], ["updated_at", "2020-04-22 05:35:52.599229"]]
 (0.0ms)  begin transaction

CommentTest: test_57669


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.601340"], ["updated_at", "2020-04-22 05:35:52.601340"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.605425"], ["updated_at", "2020-04-22 05:35:52.605425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.607671"], ["updated_at", "2020-04-22 05:35:52.607671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_506524


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.610907"], ["updated_at", "2020-04-22 05:35:52.610907"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.615269"], ["updated_at", "2020-04-22 05:35:52.615269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.617084"], ["updated_at", "2020-04-22 05:35:52.617084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_954205


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.621187"], ["updated_at", "2020-04-22 05:35:52.621187"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.623574"], ["updated_at", "2020-04-22 05:35:52.623574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_462297


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.625824"], ["updated_at", "2020-04-22 05:35:52.625824"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.626330"], ["updated_at", "2020-04-22 05:35:52.626330"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.629167"], ["updated_at", "2020-04-22 05:35:52.629167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.631975"], ["updated_at", "2020-04-22 05:35:52.631975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_822405


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_429477


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.639220"], ["updated_at", "2020-04-22 05:35:52.639220"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.641393"], ["updated_at", "2020-04-22 05:35:52.641393"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.642258"], ["updated_at", "2020-04-22 05:35:52.642258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.643967"], ["updated_at", "2020-04-22 05:35:52.643967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.644206"], ["updated_at", "2020-04-22 05:35:52.644206"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.645868"], ["updated_at", "2020-04-22 05:35:52.645868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (2.7ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_530317


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_791252


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.656839"], ["updated_at", "2020-04-22 05:35:52.656839"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.659279"], ["updated_at", "2020-04-22 05:35:52.659279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.661036"], ["updated_at", "2020-04-22 05:35:52.661036"]]
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.658782"], ["updated_at", "2020-04-22 05:35:52.658782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.665095"], ["updated_at", "2020-04-22 05:35:52.665095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.667065"], ["updated_at", "2020-04-22 05:35:52.667065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_159790


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.672905"], ["updated_at", "2020-04-22 05:35:52.672905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.675766"], ["updated_at", "2020-04-22 05:35:52.675766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_198779


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.678445"], ["updated_at", "2020-04-22 05:35:52.678445"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.678987"], ["updated_at", "2020-04-22 05:35:52.678987"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.681375"], ["updated_at", "2020-04-22 05:35:52.681375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.683222"], ["updated_at", "2020-04-22 05:35:52.683222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_872126


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.686619"], ["updated_at", "2020-04-22 05:35:52.686619"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.689398"], ["updated_at", "2020-04-22 05:35:52.689398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.692358"], ["updated_at", "2020-04-22 05:35:52.692358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_103763


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.694868"], ["updated_at", "2020-04-22 05:35:52.694868"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.700557"], ["updated_at", "2020-04-22 05:35:52.700557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_776097


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.703250"], ["updated_at", "2020-04-22 05:35:52.703250"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.704979"], ["updated_at", "2020-04-22 05:35:52.704979"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.707360"], ["updated_at", "2020-04-22 05:35:52.707360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_58037


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.714872"], ["updated_at", "2020-04-22 05:35:52.714872"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.717399"], ["updated_at", "2020-04-22 05:35:52.717399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.713512"], ["updated_at", "2020-04-22 05:35:52.713512"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.719274"], ["updated_at", "2020-04-22 05:35:52.719274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_282265


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.733960"], ["updated_at", "2020-04-22 05:35:52.733960"]]
Comment Create (11.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.739509"], ["updated_at", "2020-04-22 05:35:52.739509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.742476"], ["updated_at", "2020-04-22 05:35:52.742476"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_825898


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.745792"], ["updated_at", "2020-04-22 05:35:52.745792"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.749204"], ["updated_at", "2020-04-22 05:35:52.749204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_761621


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.751135"], ["updated_at", "2020-04-22 05:35:52.751135"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.751810"], ["updated_at", "2020-04-22 05:35:52.751810"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.757028"], ["updated_at", "2020-04-22 05:35:52.757028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.758759"], ["updated_at", "2020-04-22 05:35:52.758759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_240925


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.761155"], ["updated_at", "2020-04-22 05:35:52.761155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_792894


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.763934"], ["updated_at", "2020-04-22 05:35:52.763934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.766962"], ["updated_at", "2020-04-22 05:35:52.766962"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.772183"], ["updated_at", "2020-04-22 05:35:52.772183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.774573"], ["updated_at", "2020-04-22 05:35:52.774573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (16.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.767576"], ["updated_at", "2020-04-22 05:35:52.767576"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_52829


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_413739


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.819754"], ["updated_at", "2020-04-22 05:35:52.819754"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.822777"], ["updated_at", "2020-04-22 05:35:52.822777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.824657"], ["updated_at", "2020-04-22 05:35:52.824657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.827402"], ["updated_at", "2020-04-22 05:35:52.827402"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.831090"], ["updated_at", "2020-04-22 05:35:52.831090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_123433


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.833425"], ["updated_at", "2020-04-22 05:35:52.833425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.834852"], ["updated_at", "2020-04-22 05:35:52.834852"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.839550"], ["updated_at", "2020-04-22 05:35:52.839550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_297915


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.841774"], ["updated_at", "2020-04-22 05:35:52.841774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.842742"], ["updated_at", "2020-04-22 05:35:52.842742"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.845922"], ["updated_at", "2020-04-22 05:35:52.845922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.847932"], ["updated_at", "2020-04-22 05:35:52.847932"]]
 (1.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_553134


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_349382


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.856907"], ["updated_at", "2020-04-22 05:35:52.856907"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.854430"], ["updated_at", "2020-04-22 05:35:52.854430"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.858574"], ["updated_at", "2020-04-22 05:35:52.858574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.861453"], ["updated_at", "2020-04-22 05:35:52.861453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.859865"], ["updated_at", "2020-04-22 05:35:52.859865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.868127"], ["updated_at", "2020-04-22 05:35:52.868127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_244017


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.871432"], ["updated_at", "2020-04-22 05:35:52.871432"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.874093"], ["updated_at", "2020-04-22 05:35:52.874093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_12720


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.876328"], ["updated_at", "2020-04-22 05:35:52.876328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.877273"], ["updated_at", "2020-04-22 05:35:52.877273"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.880486"], ["updated_at", "2020-04-22 05:35:52.880486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.883219"], ["updated_at", "2020-04-22 05:35:52.883219"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_153131


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.888654"], ["updated_at", "2020-04-22 05:35:52.888654"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.890790"], ["updated_at", "2020-04-22 05:35:52.890790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_748326


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.892867"], ["updated_at", "2020-04-22 05:35:52.892867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.894520"], ["updated_at", "2020-04-22 05:35:52.894520"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.897798"], ["updated_at", "2020-04-22 05:35:52.897798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.899925"], ["updated_at", "2020-04-22 05:35:52.899925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_680096


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.903832"], ["updated_at", "2020-04-22 05:35:52.903832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.907034"], ["updated_at", "2020-04-22 05:35:52.907034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.3ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.909157"], ["updated_at", "2020-04-22 05:35:52.909157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_900828


 (0.1ms)  begin transaction

CommentTest: test_333635


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.919944"], ["updated_at", "2020-04-22 05:35:52.919944"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.920939"], ["updated_at", "2020-04-22 05:35:52.920939"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.923526"], ["updated_at", "2020-04-22 05:35:52.923526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.923890"], ["updated_at", "2020-04-22 05:35:52.923890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.926068"], ["updated_at", "2020-04-22 05:35:52.926068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.927349"], ["updated_at", "2020-04-22 05:35:52.927349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_628198


 (0.1ms)  begin transaction

CommentTest: test_512375


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.941875"], ["updated_at", "2020-04-22 05:35:52.941875"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.942700"], ["updated_at", "2020-04-22 05:35:52.942700"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.945194"], ["updated_at", "2020-04-22 05:35:52.945194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.946954"], ["updated_at", "2020-04-22 05:35:52.946954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.949005"], ["updated_at", "2020-04-22 05:35:52.949005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.950842"], ["updated_at", "2020-04-22 05:35:52.950842"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_666188


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.956734"], ["updated_at", "2020-04-22 05:35:52.956734"]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_227234


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.959224"], ["updated_at", "2020-04-22 05:35:52.959224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.960164"], ["updated_at", "2020-04-22 05:35:52.960164"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.961083"], ["updated_at", "2020-04-22 05:35:52.961083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.964927"], ["updated_at", "2020-04-22 05:35:52.964927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.967401"], ["updated_at", "2020-04-22 05:35:52.967401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_72716


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.971321"], ["updated_at", "2020-04-22 05:35:52.971321"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.973716"], ["updated_at", "2020-04-22 05:35:52.973716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_757156


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.975720"], ["updated_at", "2020-04-22 05:35:52.975720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.976848"], ["updated_at", "2020-04-22 05:35:52.976848"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.979283"], ["updated_at", "2020-04-22 05:35:52.979283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.982864"], ["updated_at", "2020-04-22 05:35:52.982864"]]
 (0.1ms)  begin transaction

CommentTest: test_955945


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.984859"], ["updated_at", "2020-04-22 05:35:52.984859"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.987582"], ["updated_at", "2020-04-22 05:35:52.987582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:52.990225"], ["updated_at", "2020-04-22 05:35:52.990225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_841369


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:52.993082"], ["updated_at", "2020-04-22 05:35:52.993082"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:52.998335"], ["updated_at", "2020-04-22 05:35:52.998335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_115591


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.000395"], ["updated_at", "2020-04-22 05:35:53.000395"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.000276"], ["updated_at", "2020-04-22 05:35:53.000276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.002698"], ["updated_at", "2020-04-22 05:35:53.002698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.005668"], ["updated_at", "2020-04-22 05:35:53.005668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.8ms)  rollback transaction

CommentTest: test_919393


 (0.1ms)  begin transaction

CommentTest: test_999960


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.013601"], ["updated_at", "2020-04-22 05:35:53.013601"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.015001"], ["updated_at", "2020-04-22 05:35:53.015001"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.016382"], ["updated_at", "2020-04-22 05:35:53.016382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.017664"], ["updated_at", "2020-04-22 05:35:53.017664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.018435"], ["updated_at", "2020-04-22 05:35:53.018435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.019862"], ["updated_at", "2020-04-22 05:35:53.019862"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_846273


 (0.2ms)  begin transaction

CommentTest: test_881337


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.026998"], ["updated_at", "2020-04-22 05:35:53.026998"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.029824"], ["updated_at", "2020-04-22 05:35:53.029824"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.032253"], ["updated_at", "2020-04-22 05:35:53.032253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.032969"], ["updated_at", "2020-04-22 05:35:53.032969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.034850"], ["updated_at", "2020-04-22 05:35:53.034850"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.034378"], ["updated_at", "2020-04-22 05:35:53.034378"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_305121



CommentTest: test_306715


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.043406"], ["updated_at", "2020-04-22 05:35:53.043406"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.043194"], ["updated_at", "2020-04-22 05:35:53.043194"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.046620"], ["updated_at", "2020-04-22 05:35:53.046620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.047890"], ["updated_at", "2020-04-22 05:35:53.047890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.048856"], ["updated_at", "2020-04-22 05:35:53.048856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.055435"], ["updated_at", "2020-04-22 05:35:53.055435"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_37727


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.062043"], ["updated_at", "2020-04-22 05:35:53.062043"]]
 (0.1ms)  begin transaction

CommentTest: test_633380


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.066536"], ["updated_at", "2020-04-22 05:35:53.066536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.066435"], ["updated_at", "2020-04-22 05:35:53.066435"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.068475"], ["updated_at", "2020-04-22 05:35:53.068475"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.068876"], ["updated_at", "2020-04-22 05:35:53.068876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.071007"], ["updated_at", "2020-04-22 05:35:53.071007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_712454


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_793132


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.078158"], ["updated_at", "2020-04-22 05:35:53.078158"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.081210"], ["updated_at", "2020-04-22 05:35:53.081210"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.081837"], ["updated_at", "2020-04-22 05:35:53.081837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.083428"], ["updated_at", "2020-04-22 05:35:53.083428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.084900"], ["updated_at", "2020-04-22 05:35:53.084900"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.084877"], ["updated_at", "2020-04-22 05:35:53.084877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_501696



CommentTest: test_550801


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.096000"], ["updated_at", "2020-04-22 05:35:53.096000"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.096057"], ["updated_at", "2020-04-22 05:35:53.096057"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.098606"], ["updated_at", "2020-04-22 05:35:53.098606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.098677"], ["updated_at", "2020-04-22 05:35:53.098677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.100466"], ["updated_at", "2020-04-22 05:35:53.100466"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.100461"], ["updated_at", "2020-04-22 05:35:53.100461"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_568452



CommentTest: test_552321


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.110668"], ["updated_at", "2020-04-22 05:35:53.110668"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.110789"], ["updated_at", "2020-04-22 05:35:53.110789"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.114219"], ["updated_at", "2020-04-22 05:35:53.114219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.114118"], ["updated_at", "2020-04-22 05:35:53.114118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.117726"], ["updated_at", "2020-04-22 05:35:53.117726"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.117652"], ["updated_at", "2020-04-22 05:35:53.117652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_865128



CommentTest: test_856758


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.127485"], ["updated_at", "2020-04-22 05:35:53.127485"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.127486"], ["updated_at", "2020-04-22 05:35:53.127486"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.130330"], ["updated_at", "2020-04-22 05:35:53.130330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.131279"], ["updated_at", "2020-04-22 05:35:53.131279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.132698"], ["updated_at", "2020-04-22 05:35:53.132698"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.133201"], ["updated_at", "2020-04-22 05:35:53.133201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_820784


 (0.0ms)  begin transaction

CommentTest: test_775813


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.142215"], ["updated_at", "2020-04-22 05:35:53.142215"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.142908"], ["updated_at", "2020-04-22 05:35:53.142908"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.144967"], ["updated_at", "2020-04-22 05:35:53.144967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.145284"], ["updated_at", "2020-04-22 05:35:53.145284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.147449"], ["updated_at", "2020-04-22 05:35:53.147449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.148291"], ["updated_at", "2020-04-22 05:35:53.148291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_433814


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_30895


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.160363"], ["updated_at", "2020-04-22 05:35:53.160363"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.162297"], ["updated_at", "2020-04-22 05:35:53.162297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.162293"], ["updated_at", "2020-04-22 05:35:53.162293"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.165538"], ["updated_at", "2020-04-22 05:35:53.165538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.166375"], ["updated_at", "2020-04-22 05:35:53.166375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.168683"], ["updated_at", "2020-04-22 05:35:53.168683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_198182


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.176135"], ["updated_at", "2020-04-22 05:35:53.176135"]]
 (0.1ms)  begin transaction

CommentTest: test_119043


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.179527"], ["updated_at", "2020-04-22 05:35:53.179527"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.181213"], ["updated_at", "2020-04-22 05:35:53.181213"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.182047"], ["updated_at", "2020-04-22 05:35:53.182047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.184228"], ["updated_at", "2020-04-22 05:35:53.184228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.187709"], ["updated_at", "2020-04-22 05:35:53.187709"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_404117


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.193828"], ["updated_at", "2020-04-22 05:35:53.193828"]]
 (0.1ms)  begin transaction

CommentTest: test_702579


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.198054"], ["updated_at", "2020-04-22 05:35:53.198054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.199607"], ["updated_at", "2020-04-22 05:35:53.199607"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.199175"], ["updated_at", "2020-04-22 05:35:53.199175"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.201886"], ["updated_at", "2020-04-22 05:35:53.201886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.206090"], ["updated_at", "2020-04-22 05:35:53.206090"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_331225


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.210726"], ["updated_at", "2020-04-22 05:35:53.210726"]]
 (0.1ms)  begin transaction

CommentTest: test_455962


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.213902"], ["updated_at", "2020-04-22 05:35:53.213902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.214615"], ["updated_at", "2020-04-22 05:35:53.214615"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.216159"], ["updated_at", "2020-04-22 05:35:53.216159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.215994"], ["updated_at", "2020-04-22 05:35:53.215994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.217532"], ["updated_at", "2020-04-22 05:35:53.217532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_521079


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.225597"], ["updated_at", "2020-04-22 05:35:53.225597"]]
 (0.1ms)  begin transaction

CommentTest: test_798822


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.227937"], ["updated_at", "2020-04-22 05:35:53.227937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.228052"], ["updated_at", "2020-04-22 05:35:53.228052"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.230536"], ["updated_at", "2020-04-22 05:35:53.230536"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.232501"], ["updated_at", "2020-04-22 05:35:53.232501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.234434"], ["updated_at", "2020-04-22 05:35:53.234434"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_416655


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.237837"], ["updated_at", "2020-04-22 05:35:53.237837"]]
 (0.1ms)  begin transaction

CommentTest: test_26419


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.240375"], ["updated_at", "2020-04-22 05:35:53.240375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.241756"], ["updated_at", "2020-04-22 05:35:53.241756"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.242450"], ["updated_at", "2020-04-22 05:35:53.242450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.243839"], ["updated_at", "2020-04-22 05:35:53.243839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.248074"], ["updated_at", "2020-04-22 05:35:53.248074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_876295


Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.254685"], ["updated_at", "2020-04-22 05:35:53.254685"]]

CommentTest: test_602948


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.258195"], ["updated_at", "2020-04-22 05:35:53.258195"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.257854"], ["updated_at", "2020-04-22 05:35:53.257854"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.260822"], ["updated_at", "2020-04-22 05:35:53.260822"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.261240"], ["updated_at", "2020-04-22 05:35:53.261240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.263344"], ["updated_at", "2020-04-22 05:35:53.263344"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_708757


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.271201"], ["updated_at", "2020-04-22 05:35:53.271201"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.273960"], ["updated_at", "2020-04-22 05:35:53.273960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_673947


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.276031"], ["updated_at", "2020-04-22 05:35:53.276031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.277143"], ["updated_at", "2020-04-22 05:35:53.277143"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.283122"], ["updated_at", "2020-04-22 05:35:53.283122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_767137


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.284773"], ["updated_at", "2020-04-22 05:35:53.284773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.285515"], ["updated_at", "2020-04-22 05:35:53.285515"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.288988"], ["updated_at", "2020-04-22 05:35:53.288988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.290904"], ["updated_at", "2020-04-22 05:35:53.290904"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_441601


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.293185"], ["updated_at", "2020-04-22 05:35:53.293185"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.296373"], ["updated_at", "2020-04-22 05:35:53.296373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.299096"], ["updated_at", "2020-04-22 05:35:53.299096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  begin transaction

CommentTest: test_700915


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.304221"], ["updated_at", "2020-04-22 05:35:53.304221"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.307031"], ["updated_at", "2020-04-22 05:35:53.307031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_771956


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.310412"], ["updated_at", "2020-04-22 05:35:53.310412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.311029"], ["updated_at", "2020-04-22 05:35:53.311029"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.313203"], ["updated_at", "2020-04-22 05:35:53.313203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.315411"], ["updated_at", "2020-04-22 05:35:53.315411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_510279


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.321991"], ["updated_at", "2020-04-22 05:35:53.321991"]]
 (0.1ms)  begin transaction

CommentTest: test_348022


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.324506"], ["updated_at", "2020-04-22 05:35:53.324506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.324921"], ["updated_at", "2020-04-22 05:35:53.324921"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.326406"], ["updated_at", "2020-04-22 05:35:53.326406"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.327213"], ["updated_at", "2020-04-22 05:35:53.327213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.329429"], ["updated_at", "2020-04-22 05:35:53.329429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_769021


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.337685"], ["updated_at", "2020-04-22 05:35:53.337685"]]
 (0.1ms)  begin transaction

CommentTest: test_530165


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.340576"], ["updated_at", "2020-04-22 05:35:53.340576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.341375"], ["updated_at", "2020-04-22 05:35:53.341375"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.342637"], ["updated_at", "2020-04-22 05:35:53.342637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.343847"], ["updated_at", "2020-04-22 05:35:53.343847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.346175"], ["updated_at", "2020-04-22 05:35:53.346175"]]
 (1.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_113990


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.352903"], ["updated_at", "2020-04-22 05:35:53.352903"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.355510"], ["updated_at", "2020-04-22 05:35:53.355510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.357457"], ["updated_at", "2020-04-22 05:35:53.357457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_155183


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.362046"], ["updated_at", "2020-04-22 05:35:53.362046"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_284949


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.366926"], ["updated_at", "2020-04-22 05:35:53.366926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.368994"], ["updated_at", "2020-04-22 05:35:53.368994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.368493"], ["updated_at", "2020-04-22 05:35:53.368493"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.371551"], ["updated_at", "2020-04-22 05:35:53.371551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.373856"], ["updated_at", "2020-04-22 05:35:53.373856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_558489


 (3.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.382610"], ["updated_at", "2020-04-22 05:35:53.382610"]]
 (0.1ms)  begin transaction

CommentTest: test_486947


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.386327"], ["updated_at", "2020-04-22 05:35:53.386327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.389716"], ["updated_at", "2020-04-22 05:35:53.389716"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.389319"], ["updated_at", "2020-04-22 05:35:53.389319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.392150"], ["updated_at", "2020-04-22 05:35:53.392150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.394614"], ["updated_at", "2020-04-22 05:35:53.394614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (8.5ms)  begin transaction

CommentTest: test_661746


 (9.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_530908


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.411692"], ["updated_at", "2020-04-22 05:35:53.411692"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.415274"], ["updated_at", "2020-04-22 05:35:53.415274"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.416356"], ["updated_at", "2020-04-22 05:35:53.416356"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.417394"], ["updated_at", "2020-04-22 05:35:53.417394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.418385"], ["updated_at", "2020-04-22 05:35:53.418385"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.419391"], ["updated_at", "2020-04-22 05:35:53.419391"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_887321


 (0.1ms)  begin transaction

CommentTest: test_972926


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.429049"], ["updated_at", "2020-04-22 05:35:53.429049"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.429645"], ["updated_at", "2020-04-22 05:35:53.429645"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.431408"], ["updated_at", "2020-04-22 05:35:53.431408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.431971"], ["updated_at", "2020-04-22 05:35:53.431971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.433184"], ["updated_at", "2020-04-22 05:35:53.433184"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.433721"], ["updated_at", "2020-04-22 05:35:53.433721"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_489923


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.441939"], ["updated_at", "2020-04-22 05:35:53.441939"]]
 (0.1ms)  begin transaction

CommentTest: test_279009


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.443858"], ["updated_at", "2020-04-22 05:35:53.443858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.445209"], ["updated_at", "2020-04-22 05:35:53.445209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.444661"], ["updated_at", "2020-04-22 05:35:53.444661"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.448888"], ["updated_at", "2020-04-22 05:35:53.448888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.450782"], ["updated_at", "2020-04-22 05:35:53.450782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_81622


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.453303"], ["updated_at", "2020-04-22 05:35:53.453303"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.455795"], ["updated_at", "2020-04-22 05:35:53.455795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_20324


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.457737"], ["updated_at", "2020-04-22 05:35:53.457737"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.459208"], ["updated_at", "2020-04-22 05:35:53.459208"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.461723"], ["updated_at", "2020-04-22 05:35:53.461723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.465801"], ["updated_at", "2020-04-22 05:35:53.465801"]]

CommentTest: test_593277


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.467866"], ["updated_at", "2020-04-22 05:35:53.467866"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.471266"], ["updated_at", "2020-04-22 05:35:53.471266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.473351"], ["updated_at", "2020-04-22 05:35:53.473351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_2372


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.476912"], ["updated_at", "2020-04-22 05:35:53.476912"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_421131


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.484144"], ["updated_at", "2020-04-22 05:35:53.484144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.486028"], ["updated_at", "2020-04-22 05:35:53.486028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.485368"], ["updated_at", "2020-04-22 05:35:53.485368"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.488867"], ["updated_at", "2020-04-22 05:35:53.488867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.492281"], ["updated_at", "2020-04-22 05:35:53.492281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_59622


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_69341


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.498988"], ["updated_at", "2020-04-22 05:35:53.498988"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.501395"], ["updated_at", "2020-04-22 05:35:53.501395"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.502170"], ["updated_at", "2020-04-22 05:35:53.502170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.504970"], ["updated_at", "2020-04-22 05:35:53.504970"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.505127"], ["updated_at", "2020-04-22 05:35:53.505127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.506901"], ["updated_at", "2020-04-22 05:35:53.506901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_790672


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.517894"], ["updated_at", "2020-04-22 05:35:53.517894"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.520716"], ["updated_at", "2020-04-22 05:35:53.520716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.523086"], ["updated_at", "2020-04-22 05:35:53.523086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_191156

 (0.1ms)  begin transaction


CommentTest: test_54271


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.607172"], ["updated_at", "2020-04-22 05:35:53.607172"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.607437"], ["updated_at", "2020-04-22 05:35:53.607437"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.609973"], ["updated_at", "2020-04-22 05:35:53.609973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.610243"], ["updated_at", "2020-04-22 05:35:53.610243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.613561"], ["updated_at", "2020-04-22 05:35:53.613561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.614954"], ["updated_at", "2020-04-22 05:35:53.614954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788868


 (0.1ms)  begin transaction

CommentTest: test_564634


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.624982"], ["updated_at", "2020-04-22 05:35:53.624982"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.624892"], ["updated_at", "2020-04-22 05:35:53.624892"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.627028"], ["updated_at", "2020-04-22 05:35:53.627028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.627238"], ["updated_at", "2020-04-22 05:35:53.627238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.629308"], ["updated_at", "2020-04-22 05:35:53.629308"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.629578"], ["updated_at", "2020-04-22 05:35:53.629578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_270577


 (0.1ms)  begin transaction

CommentTest: test_258658


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.639843"], ["updated_at", "2020-04-22 05:35:53.639843"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.640306"], ["updated_at", "2020-04-22 05:35:53.640306"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.642180"], ["updated_at", "2020-04-22 05:35:53.642180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.642337"], ["updated_at", "2020-04-22 05:35:53.642337"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.643491"], ["updated_at", "2020-04-22 05:35:53.643491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.644099"], ["updated_at", "2020-04-22 05:35:53.644099"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788221


 (0.2ms)  begin transaction

CommentTest: test_752859


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.652958"], ["updated_at", "2020-04-22 05:35:53.652958"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.654075"], ["updated_at", "2020-04-22 05:35:53.654075"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.655013"], ["updated_at", "2020-04-22 05:35:53.655013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.656291"], ["updated_at", "2020-04-22 05:35:53.656291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.656454"], ["updated_at", "2020-04-22 05:35:53.656454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.659760"], ["updated_at", "2020-04-22 05:35:53.659760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_392447


 (0.5ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.665101"], ["updated_at", "2020-04-22 05:35:53.665101"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.668224"], ["updated_at", "2020-04-22 05:35:53.668224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_474386


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.673348"], ["updated_at", "2020-04-22 05:35:53.673348"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.673367"], ["updated_at", "2020-04-22 05:35:53.673367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.676338"], ["updated_at", "2020-04-22 05:35:53.676338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.678244"], ["updated_at", "2020-04-22 05:35:53.678244"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_589608


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.683301"], ["updated_at", "2020-04-22 05:35:53.683301"]]
 (0.1ms)  begin transaction

CommentTest: test_615747


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.686462"], ["updated_at", "2020-04-22 05:35:53.686462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.687276"], ["updated_at", "2020-04-22 05:35:53.687276"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.688540"], ["updated_at", "2020-04-22 05:35:53.688540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.689718"], ["updated_at", "2020-04-22 05:35:53.689718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.691641"], ["updated_at", "2020-04-22 05:35:53.691641"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_697471


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.699231"], ["updated_at", "2020-04-22 05:35:53.699231"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_285816


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.703390"], ["updated_at", "2020-04-22 05:35:53.703390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.704241"], ["updated_at", "2020-04-22 05:35:53.704241"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.705485"], ["updated_at", "2020-04-22 05:35:53.705485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.706611"], ["updated_at", "2020-04-22 05:35:53.706611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.708381"], ["updated_at", "2020-04-22 05:35:53.708381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_943587


 (0.1ms)  begin transaction

CommentTest: test_434008


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.719703"], ["updated_at", "2020-04-22 05:35:53.719703"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.721630"], ["updated_at", "2020-04-22 05:35:53.721630"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.722742"], ["updated_at", "2020-04-22 05:35:53.722742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.723935"], ["updated_at", "2020-04-22 05:35:53.723935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.724453"], ["updated_at", "2020-04-22 05:35:53.724453"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.726047"], ["updated_at", "2020-04-22 05:35:53.726047"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_167279


 (0.1ms)  begin transaction

CommentTest: test_671680


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.736585"], ["updated_at", "2020-04-22 05:35:53.736585"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.738102"], ["updated_at", "2020-04-22 05:35:53.738102"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.739250"], ["updated_at", "2020-04-22 05:35:53.739250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.741064"], ["updated_at", "2020-04-22 05:35:53.741064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.742321"], ["updated_at", "2020-04-22 05:35:53.742321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.744386"], ["updated_at", "2020-04-22 05:35:53.744386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380195


 (0.1ms)  begin transaction

CommentTest: test_523645


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.755826"], ["updated_at", "2020-04-22 05:35:53.755826"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.756518"], ["updated_at", "2020-04-22 05:35:53.756518"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.759299"], ["updated_at", "2020-04-22 05:35:53.759299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.759403"], ["updated_at", "2020-04-22 05:35:53.759403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.761365"], ["updated_at", "2020-04-22 05:35:53.761365"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.761352"], ["updated_at", "2020-04-22 05:35:53.761352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_152917


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.771430"], ["updated_at", "2020-04-22 05:35:53.771430"]]
 (0.1ms)  begin transaction

CommentTest: test_199736


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.773966"], ["updated_at", "2020-04-22 05:35:53.773966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.774149"], ["updated_at", "2020-04-22 05:35:53.774149"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.775804"], ["updated_at", "2020-04-22 05:35:53.775804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.776410"], ["updated_at", "2020-04-22 05:35:53.776410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_663257


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.794644"], ["updated_at", "2020-04-22 05:35:53.794644"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.792788"], ["updated_at", "2020-04-22 05:35:53.792788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.798785"], ["updated_at", "2020-04-22 05:35:53.798785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.801048"], ["updated_at", "2020-04-22 05:35:53.801048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_412515


 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_578483


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.812287"], ["updated_at", "2020-04-22 05:35:53.812287"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.815421"], ["updated_at", "2020-04-22 05:35:53.815421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.815200"], ["updated_at", "2020-04-22 05:35:53.815200"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.817315"], ["updated_at", "2020-04-22 05:35:53.817315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.817921"], ["updated_at", "2020-04-22 05:35:53.817921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.820821"], ["updated_at", "2020-04-22 05:35:53.820821"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_184435


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.827434"], ["updated_at", "2020-04-22 05:35:53.827434"]]
 (0.2ms)  begin transaction

CommentTest: test_395149


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.831172"], ["updated_at", "2020-04-22 05:35:53.831172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.832197"], ["updated_at", "2020-04-22 05:35:53.832197"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.833353"], ["updated_at", "2020-04-22 05:35:53.833353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.835203"], ["updated_at", "2020-04-22 05:35:53.835203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.839540"], ["updated_at", "2020-04-22 05:35:53.839540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_665575


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.844790"], ["updated_at", "2020-04-22 05:35:53.844790"]]
 (0.1ms)  begin transaction

CommentTest: test_692173


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.848913"], ["updated_at", "2020-04-22 05:35:53.848913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.851535"], ["updated_at", "2020-04-22 05:35:53.851535"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.850808"], ["updated_at", "2020-04-22 05:35:53.850808"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.855392"], ["updated_at", "2020-04-22 05:35:53.855392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.856848"], ["updated_at", "2020-04-22 05:35:53.856848"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_179035


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_662770


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.861936"], ["updated_at", "2020-04-22 05:35:53.861936"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.866593"], ["updated_at", "2020-04-22 05:35:53.866593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.866186"], ["updated_at", "2020-04-22 05:35:53.866186"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.867957"], ["updated_at", "2020-04-22 05:35:53.867957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.868868"], ["updated_at", "2020-04-22 05:35:53.868868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.871191"], ["updated_at", "2020-04-22 05:35:53.871191"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_255917


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.874565"], ["updated_at", "2020-04-22 05:35:53.874565"]]
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_224826


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.877696"], ["updated_at", "2020-04-22 05:35:53.877696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.878432"], ["updated_at", "2020-04-22 05:35:53.878432"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.879802"], ["updated_at", "2020-04-22 05:35:53.879802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.881265"], ["updated_at", "2020-04-22 05:35:53.881265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.883012"], ["updated_at", "2020-04-22 05:35:53.883012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_596486


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.888784"], ["updated_at", "2020-04-22 05:35:53.888784"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.891142"], ["updated_at", "2020-04-22 05:35:53.891142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_142061


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.892836"], ["updated_at", "2020-04-22 05:35:53.892836"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.893160"], ["updated_at", "2020-04-22 05:35:53.893160"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.895473"], ["updated_at", "2020-04-22 05:35:53.895473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.897464"], ["updated_at", "2020-04-22 05:35:53.897464"]]
 (0.1ms)  begin transaction

CommentTest: test_815998


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.900784"], ["updated_at", "2020-04-22 05:35:53.900784"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.903734"], ["updated_at", "2020-04-22 05:35:53.903734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.907653"], ["updated_at", "2020-04-22 05:35:53.907653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_470311


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.911382"], ["updated_at", "2020-04-22 05:35:53.911382"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.914874"], ["updated_at", "2020-04-22 05:35:53.914874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.917187"], ["updated_at", "2020-04-22 05:35:53.917187"]]
 (0.1ms)  begin transaction

CommentTest: test_208660


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.919260"], ["updated_at", "2020-04-22 05:35:53.919260"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.922516"], ["updated_at", "2020-04-22 05:35:53.922516"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.924442"], ["updated_at", "2020-04-22 05:35:53.924442"]]
 (0.1ms)  begin transaction

CommentTest: test_817379


 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.926468"], ["updated_at", "2020-04-22 05:35:53.926468"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.929301"], ["updated_at", "2020-04-22 05:35:53.929301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.931380"], ["updated_at", "2020-04-22 05:35:53.931380"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_922327


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.933648"], ["updated_at", "2020-04-22 05:35:53.933648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.936352"], ["updated_at", "2020-04-22 05:35:53.936352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_343240


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.938495"], ["updated_at", "2020-04-22 05:35:53.938495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.939719"], ["updated_at", "2020-04-22 05:35:53.939719"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.942451"], ["updated_at", "2020-04-22 05:35:53.942451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.944516"], ["updated_at", "2020-04-22 05:35:53.944516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_851004


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.950643"], ["updated_at", "2020-04-22 05:35:53.950643"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.953631"], ["updated_at", "2020-04-22 05:35:53.953631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_947371


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.955625"], ["updated_at", "2020-04-22 05:35:53.955625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.956111"], ["updated_at", "2020-04-22 05:35:53.956111"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.959065"], ["updated_at", "2020-04-22 05:35:53.959065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.961107"], ["updated_at", "2020-04-22 05:35:53.961107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_238286


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.966283"], ["updated_at", "2020-04-22 05:35:53.966283"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_437701


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.971788"], ["updated_at", "2020-04-22 05:35:53.971788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.973775"], ["updated_at", "2020-04-22 05:35:53.973775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.973380"], ["updated_at", "2020-04-22 05:35:53.973380"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.977788"], ["updated_at", "2020-04-22 05:35:53.977788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.980667"], ["updated_at", "2020-04-22 05:35:53.980667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_352989


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.983560"], ["updated_at", "2020-04-22 05:35:53.983560"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.986474"], ["updated_at", "2020-04-22 05:35:53.986474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:53.989363"], ["updated_at", "2020-04-22 05:35:53.989363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_901180


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.993291"], ["updated_at", "2020-04-22 05:35:53.993291"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_229338


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:53.997443"], ["updated_at", "2020-04-22 05:35:53.997443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:53.998441"], ["updated_at", "2020-04-22 05:35:53.998441"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.000435"], ["updated_at", "2020-04-22 05:35:54.000435"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.000936"], ["updated_at", "2020-04-22 05:35:54.000936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.002743"], ["updated_at", "2020-04-22 05:35:54.002743"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_483693


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.009356"], ["updated_at", "2020-04-22 05:35:54.009356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.011737"], ["updated_at", "2020-04-22 05:35:54.011737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.014405"], ["updated_at", "2020-04-22 05:35:54.014405"]]
 (0.1ms)  begin transaction

CommentTest: test_74704


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.016369"], ["updated_at", "2020-04-22 05:35:54.016369"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.019323"], ["updated_at", "2020-04-22 05:35:54.019323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_385663


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.023182"], ["updated_at", "2020-04-22 05:35:54.023182"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.022661"], ["updated_at", "2020-04-22 05:35:54.022661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.025145"], ["updated_at", "2020-04-22 05:35:54.025145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.027138"], ["updated_at", "2020-04-22 05:35:54.027138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_851962


 (0.1ms)  begin transaction

CommentTest: test_160120


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.038380"], ["updated_at", "2020-04-22 05:35:54.038380"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.040853"], ["updated_at", "2020-04-22 05:35:54.040853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.8ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.042599"], ["updated_at", "2020-04-22 05:35:54.042599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.038944"], ["updated_at", "2020-04-22 05:35:54.038944"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.045114"], ["updated_at", "2020-04-22 05:35:54.045114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.047812"], ["updated_at", "2020-04-22 05:35:54.047812"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_672796


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.051975"], ["updated_at", "2020-04-22 05:35:54.051975"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.055677"], ["updated_at", "2020-04-22 05:35:54.055677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_603212


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.057792"], ["updated_at", "2020-04-22 05:35:54.057792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.059540"], ["updated_at", "2020-04-22 05:35:54.059540"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.062740"], ["updated_at", "2020-04-22 05:35:54.062740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.065941"], ["updated_at", "2020-04-22 05:35:54.065941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (1.0ms)  rollback transaction

CommentTest: test_288002


 (0.1ms)  begin transaction

CommentTest: test_156777


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.078121"], ["updated_at", "2020-04-22 05:35:54.078121"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.078311"], ["updated_at", "2020-04-22 05:35:54.078311"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.081081"], ["updated_at", "2020-04-22 05:35:54.081081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.082724"], ["updated_at", "2020-04-22 05:35:54.082724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.084862"], ["updated_at", "2020-04-22 05:35:54.084862"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.084816"], ["updated_at", "2020-04-22 05:35:54.084816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_512189


 (0.0ms)  begin transaction

CommentTest: test_94339


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.094758"], ["updated_at", "2020-04-22 05:35:54.094758"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.094757"], ["updated_at", "2020-04-22 05:35:54.094757"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.096960"], ["updated_at", "2020-04-22 05:35:54.096960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.099000"], ["updated_at", "2020-04-22 05:35:54.099000"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.098446"], ["updated_at", "2020-04-22 05:35:54.098446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.100453"], ["updated_at", "2020-04-22 05:35:54.100453"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_849352


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.105400"], ["updated_at", "2020-04-22 05:35:54.105400"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.106996"], ["updated_at", "2020-04-22 05:35:54.106996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_947293


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.108803"], ["updated_at", "2020-04-22 05:35:54.108803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.109073"], ["updated_at", "2020-04-22 05:35:54.109073"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.111273"], ["updated_at", "2020-04-22 05:35:54.111273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.113193"], ["updated_at", "2020-04-22 05:35:54.113193"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_630619


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.116858"], ["updated_at", "2020-04-22 05:35:54.116858"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.119915"], ["updated_at", "2020-04-22 05:35:54.119915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_367684


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.122769"], ["updated_at", "2020-04-22 05:35:54.122769"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.123118"], ["updated_at", "2020-04-22 05:35:54.123118"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.125411"], ["updated_at", "2020-04-22 05:35:54.125411"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.127226"], ["updated_at", "2020-04-22 05:35:54.127226"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_753937


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.130488"], ["updated_at", "2020-04-22 05:35:54.130488"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.132989"], ["updated_at", "2020-04-22 05:35:54.132989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_843900


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.135289"], ["updated_at", "2020-04-22 05:35:54.135289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.136572"], ["updated_at", "2020-04-22 05:35:54.136572"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.140015"], ["updated_at", "2020-04-22 05:35:54.140015"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.142642"], ["updated_at", "2020-04-22 05:35:54.142642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_326684


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.147491"], ["updated_at", "2020-04-22 05:35:54.147491"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.150175"], ["updated_at", "2020-04-22 05:35:54.150175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_449976


 (0.8ms)  SAVEPOINT active_record_1
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.152131"], ["updated_at", "2020-04-22 05:35:54.152131"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.152236"], ["updated_at", "2020-04-22 05:35:54.152236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.157153"], ["updated_at", "2020-04-22 05:35:54.157153"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.158413"], ["updated_at", "2020-04-22 05:35:54.158413"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_289108


 (0.1ms)  SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.165740"], ["updated_at", "2020-04-22 05:35:54.165740"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.168839"], ["updated_at", "2020-04-22 05:35:54.168839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_383047


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.172032"], ["updated_at", "2020-04-22 05:35:54.172032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.172249"], ["updated_at", "2020-04-22 05:35:54.172249"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.174580"], ["updated_at", "2020-04-22 05:35:54.174580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.176690"], ["updated_at", "2020-04-22 05:35:54.176690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_368116


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.180146"], ["updated_at", "2020-04-22 05:35:54.180146"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.182850"], ["updated_at", "2020-04-22 05:35:54.182850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.185126"], ["updated_at", "2020-04-22 05:35:54.185126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_840260


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.190273"], ["updated_at", "2020-04-22 05:35:54.190273"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.192927"], ["updated_at", "2020-04-22 05:35:54.192927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_328176


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.194905"], ["updated_at", "2020-04-22 05:35:54.194905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.195372"], ["updated_at", "2020-04-22 05:35:54.195372"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.200177"], ["updated_at", "2020-04-22 05:35:54.200177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.202149"], ["updated_at", "2020-04-22 05:35:54.202149"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_858324


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.207475"], ["updated_at", "2020-04-22 05:35:54.207475"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.210938"], ["updated_at", "2020-04-22 05:35:54.210938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.213114"], ["updated_at", "2020-04-22 05:35:54.213114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_533886


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.216102"], ["updated_at", "2020-04-22 05:35:54.216102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.218533"], ["updated_at", "2020-04-22 05:35:54.218533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.221762"], ["updated_at", "2020-04-22 05:35:54.221762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_416465


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (6.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.224351"], ["updated_at", "2020-04-22 05:35:54.224351"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_539182


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.232526"], ["updated_at", "2020-04-22 05:35:54.232526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.234530"], ["updated_at", "2020-04-22 05:35:54.234530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.233678"], ["updated_at", "2020-04-22 05:35:54.233678"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.239706"], ["updated_at", "2020-04-22 05:35:54.239706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.241699"], ["updated_at", "2020-04-22 05:35:54.241699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_198057


 (0.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.248306"], ["updated_at", "2020-04-22 05:35:54.248306"]]
 (0.1ms)  begin transaction

CommentTest: test_507961


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.251193"], ["updated_at", "2020-04-22 05:35:54.251193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.251010"], ["updated_at", "2020-04-22 05:35:54.251010"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.254104"], ["updated_at", "2020-04-22 05:35:54.254104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.253270"], ["updated_at", "2020-04-22 05:35:54.253270"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.256719"], ["updated_at", "2020-04-22 05:35:54.256719"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_234907



CommentTest: test_429067


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.265115"], ["updated_at", "2020-04-22 05:35:54.265115"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.265220"], ["updated_at", "2020-04-22 05:35:54.265220"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.267458"], ["updated_at", "2020-04-22 05:35:54.267458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.271095"], ["updated_at", "2020-04-22 05:35:54.271095"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.271068"], ["updated_at", "2020-04-22 05:35:54.271068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.273209"], ["updated_at", "2020-04-22 05:35:54.273209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_786507


 (0.1ms)  begin transaction

CommentTest: test_21177


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.279758"], ["updated_at", "2020-04-22 05:35:54.279758"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.281099"], ["updated_at", "2020-04-22 05:35:54.281099"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.282279"], ["updated_at", "2020-04-22 05:35:54.282279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.283488"], ["updated_at", "2020-04-22 05:35:54.283488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.283994"], ["updated_at", "2020-04-22 05:35:54.283994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.285422"], ["updated_at", "2020-04-22 05:35:54.285422"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_830270


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_977936


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.295146"], ["updated_at", "2020-04-22 05:35:54.295146"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.296989"], ["updated_at", "2020-04-22 05:35:54.296989"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.298055"], ["updated_at", "2020-04-22 05:35:54.298055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.300161"], ["updated_at", "2020-04-22 05:35:54.300161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.300400"], ["updated_at", "2020-04-22 05:35:54.300400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.302286"], ["updated_at", "2020-04-22 05:35:54.302286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_600685


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_657261


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.310571"], ["updated_at", "2020-04-22 05:35:54.310571"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.312363"], ["updated_at", "2020-04-22 05:35:54.312363"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.313525"], ["updated_at", "2020-04-22 05:35:54.313525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.314156"], ["updated_at", "2020-04-22 05:35:54.314156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.315494"], ["updated_at", "2020-04-22 05:35:54.315494"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.316145"], ["updated_at", "2020-04-22 05:35:54.316145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_881378


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_701774


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.329065"], ["updated_at", "2020-04-22 05:35:54.329065"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.332008"], ["updated_at", "2020-04-22 05:35:54.332008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.332172"], ["updated_at", "2020-04-22 05:35:54.332172"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.334701"], ["updated_at", "2020-04-22 05:35:54.334701"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.334927"], ["updated_at", "2020-04-22 05:35:54.334927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.337968"], ["updated_at", "2020-04-22 05:35:54.337968"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_106637


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.342802"], ["updated_at", "2020-04-22 05:35:54.342802"]]
 (0.1ms)  begin transaction

CommentTest: test_181766


 (0.0ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.345316"], ["updated_at", "2020-04-22 05:35:54.345316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.345892"], ["updated_at", "2020-04-22 05:35:54.345892"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.347419"], ["updated_at", "2020-04-22 05:35:54.347419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.347205"], ["updated_at", "2020-04-22 05:35:54.347205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.348725"], ["updated_at", "2020-04-22 05:35:54.348725"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_79471


 (0.1ms)  begin transaction

CommentTest: test_885199


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.356128"], ["updated_at", "2020-04-22 05:35:54.356128"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.356917"], ["updated_at", "2020-04-22 05:35:54.356917"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.358425"], ["updated_at", "2020-04-22 05:35:54.358425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.359313"], ["updated_at", "2020-04-22 05:35:54.359313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.359628"], ["updated_at", "2020-04-22 05:35:54.359628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.360985"], ["updated_at", "2020-04-22 05:35:54.360985"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_16187


 (0.0ms)  begin transaction

CommentTest: test_25885


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.367625"], ["updated_at", "2020-04-22 05:35:54.367625"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.371103"], ["updated_at", "2020-04-22 05:35:54.371103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.367547"], ["updated_at", "2020-04-22 05:35:54.367547"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.373492"], ["updated_at", "2020-04-22 05:35:54.373492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.373323"], ["updated_at", "2020-04-22 05:35:54.373323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.376255"], ["updated_at", "2020-04-22 05:35:54.376255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_975757


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.382309"], ["updated_at", "2020-04-22 05:35:54.382309"]]
 (0.1ms)  begin transaction

CommentTest: test_861570


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.384869"], ["updated_at", "2020-04-22 05:35:54.384869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.387434"], ["updated_at", "2020-04-22 05:35:54.387434"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.386000"], ["updated_at", "2020-04-22 05:35:54.386000"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.391206"], ["updated_at", "2020-04-22 05:35:54.391206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_929310


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.395295"], ["updated_at", "2020-04-22 05:35:54.395295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.396829"], ["updated_at", "2020-04-22 05:35:54.396829"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.399322"], ["updated_at", "2020-04-22 05:35:54.399322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.401160"], ["updated_at", "2020-04-22 05:35:54.401160"]]
 (3.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_576218

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.407881"], ["updated_at", "2020-04-22 05:35:54.407881"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.410600"], ["updated_at", "2020-04-22 05:35:54.410600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_33458


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.412786"], ["updated_at", "2020-04-22 05:35:54.412786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.414457"], ["updated_at", "2020-04-22 05:35:54.414457"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.416783"], ["updated_at", "2020-04-22 05:35:54.416783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.418909"], ["updated_at", "2020-04-22 05:35:54.418909"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_964593


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.423612"], ["updated_at", "2020-04-22 05:35:54.423612"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.426076"], ["updated_at", "2020-04-22 05:35:54.426076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_960896


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.428455"], ["updated_at", "2020-04-22 05:35:54.428455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.429961"], ["updated_at", "2020-04-22 05:35:54.429961"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.433829"], ["updated_at", "2020-04-22 05:35:54.433829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_199317


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.436225"], ["updated_at", "2020-04-22 05:35:54.436225"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.438470"], ["updated_at", "2020-04-22 05:35:54.438470"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.441275"], ["updated_at", "2020-04-22 05:35:54.441275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.445199"], ["updated_at", "2020-04-22 05:35:54.445199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_939675


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.448405"], ["updated_at", "2020-04-22 05:35:54.448405"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.450786"], ["updated_at", "2020-04-22 05:35:54.450786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.452942"], ["updated_at", "2020-04-22 05:35:54.452942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_142588


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.457000"], ["updated_at", "2020-04-22 05:35:54.457000"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.459014"], ["updated_at", "2020-04-22 05:35:54.459014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.461400"], ["updated_at", "2020-04-22 05:35:54.461400"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_625417


 (0.2ms)  SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.469978"], ["updated_at", "2020-04-22 05:35:54.469978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.473945"], ["updated_at", "2020-04-22 05:35:54.473945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_758810


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.476009"], ["updated_at", "2020-04-22 05:35:54.476009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.478086"], ["updated_at", "2020-04-22 05:35:54.478086"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.480595"], ["updated_at", "2020-04-22 05:35:54.480595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.483816"], ["updated_at", "2020-04-22 05:35:54.483816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_884415


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_415128


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.492575"], ["updated_at", "2020-04-22 05:35:54.492575"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.495329"], ["updated_at", "2020-04-22 05:35:54.495329"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.496055"], ["updated_at", "2020-04-22 05:35:54.496055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.498037"], ["updated_at", "2020-04-22 05:35:54.498037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.498000"], ["updated_at", "2020-04-22 05:35:54.498000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.499943"], ["updated_at", "2020-04-22 05:35:54.499943"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_935485


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.507930"], ["updated_at", "2020-04-22 05:35:54.507930"]]
 (0.1ms)  begin transaction

CommentTest: test_22951


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.511632"], ["updated_at", "2020-04-22 05:35:54.511632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.513662"], ["updated_at", "2020-04-22 05:35:54.513662"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.514506"], ["updated_at", "2020-04-22 05:35:54.514506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.516316"], ["updated_at", "2020-04-22 05:35:54.516316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.518224"], ["updated_at", "2020-04-22 05:35:54.518224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_73963


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.523521"], ["updated_at", "2020-04-22 05:35:54.523521"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.526666"], ["updated_at", "2020-04-22 05:35:54.526666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_752792


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.529268"], ["updated_at", "2020-04-22 05:35:54.529268"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.530001"], ["updated_at", "2020-04-22 05:35:54.530001"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.532596"], ["updated_at", "2020-04-22 05:35:54.532596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.534581"], ["updated_at", "2020-04-22 05:35:54.534581"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_816669


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.540614"], ["updated_at", "2020-04-22 05:35:54.540614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.543243"], ["updated_at", "2020-04-22 05:35:54.543243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_454250


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.546025"], ["updated_at", "2020-04-22 05:35:54.546025"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.546770"], ["updated_at", "2020-04-22 05:35:54.546770"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.549868"], ["updated_at", "2020-04-22 05:35:54.549868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.552257"], ["updated_at", "2020-04-22 05:35:54.552257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_946445


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.559242"], ["updated_at", "2020-04-22 05:35:54.559242"]]
 (0.1ms)  begin transaction

CommentTest: test_648563


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.562764"], ["updated_at", "2020-04-22 05:35:54.562764"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.562426"], ["updated_at", "2020-04-22 05:35:54.562426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.565329"], ["updated_at", "2020-04-22 05:35:54.565329"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.565170"], ["updated_at", "2020-04-22 05:35:54.565170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.567621"], ["updated_at", "2020-04-22 05:35:54.567621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_249353


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.590237"], ["updated_at", "2020-04-22 05:35:54.590237"]]
 (0.1ms)  begin transaction

CommentTest: test_648016


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.592659"], ["updated_at", "2020-04-22 05:35:54.592659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.593091"], ["updated_at", "2020-04-22 05:35:54.593091"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.594843"], ["updated_at", "2020-04-22 05:35:54.594843"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.595920"], ["updated_at", "2020-04-22 05:35:54.595920"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.597624"], ["updated_at", "2020-04-22 05:35:54.597624"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_742052


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.602076"], ["updated_at", "2020-04-22 05:35:54.602076"]]
 (0.1ms)  begin transaction

CommentTest: test_639009


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.606716"], ["updated_at", "2020-04-22 05:35:54.606716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.607682"], ["updated_at", "2020-04-22 05:35:54.607682"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.608945"], ["updated_at", "2020-04-22 05:35:54.608945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.611123"], ["updated_at", "2020-04-22 05:35:54.611123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.612781"], ["updated_at", "2020-04-22 05:35:54.612781"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  begin transaction

CommentTest: test_195834


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.617602"], ["updated_at", "2020-04-22 05:35:54.617602"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.620181"], ["updated_at", "2020-04-22 05:35:54.620181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_962723


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.623160"], ["updated_at", "2020-04-22 05:35:54.623160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.624808"], ["updated_at", "2020-04-22 05:35:54.624808"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.628849"], ["updated_at", "2020-04-22 05:35:54.628849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.630802"], ["updated_at", "2020-04-22 05:35:54.630802"]]

CommentTest: test_673643


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.633201"], ["updated_at", "2020-04-22 05:35:54.633201"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.635948"], ["updated_at", "2020-04-22 05:35:54.635948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.640343"], ["updated_at", "2020-04-22 05:35:54.640343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_355095


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.642962"], ["updated_at", "2020-04-22 05:35:54.642962"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.645728"], ["updated_at", "2020-04-22 05:35:54.645728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.647841"], ["updated_at", "2020-04-22 05:35:54.647841"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_716757


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.650022"], ["updated_at", "2020-04-22 05:35:54.650022"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.653161"], ["updated_at", "2020-04-22 05:35:54.653161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.657412"], ["updated_at", "2020-04-22 05:35:54.657412"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (8.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_280988


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.663855"], ["updated_at", "2020-04-22 05:35:54.663855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.666295"], ["updated_at", "2020-04-22 05:35:54.666295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.668298"], ["updated_at", "2020-04-22 05:35:54.668298"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_738560


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.673774"], ["updated_at", "2020-04-22 05:35:54.673774"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_105610


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.676746"], ["updated_at", "2020-04-22 05:35:54.676746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.679138"], ["updated_at", "2020-04-22 05:35:54.679138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.678323"], ["updated_at", "2020-04-22 05:35:54.678323"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.681757"], ["updated_at", "2020-04-22 05:35:54.681757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.683641"], ["updated_at", "2020-04-22 05:35:54.683641"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_738789


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.689868"], ["updated_at", "2020-04-22 05:35:54.689868"]]
 (0.1ms)  begin transaction

CommentTest: test_950158


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.692364"], ["updated_at", "2020-04-22 05:35:54.692364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.694013"], ["updated_at", "2020-04-22 05:35:54.694013"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.693290"], ["updated_at", "2020-04-22 05:35:54.693290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.696221"], ["updated_at", "2020-04-22 05:35:54.696221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.698181"], ["updated_at", "2020-04-22 05:35:54.698181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_874532



CommentTest: test_494702


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.707842"], ["updated_at", "2020-04-22 05:35:54.707842"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.707713"], ["updated_at", "2020-04-22 05:35:54.707713"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.710085"], ["updated_at", "2020-04-22 05:35:54.710085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.712152"], ["updated_at", "2020-04-22 05:35:54.712152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.713521"], ["updated_at", "2020-04-22 05:35:54.713521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.716100"], ["updated_at", "2020-04-22 05:35:54.716100"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_778956


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.720555"], ["updated_at", "2020-04-22 05:35:54.720555"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.723963"], ["updated_at", "2020-04-22 05:35:54.723963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.725967"], ["updated_at", "2020-04-22 05:35:54.725967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_248889


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.731429"], ["updated_at", "2020-04-22 05:35:54.731429"]]
 (0.1ms)  begin transaction

CommentTest: test_349304


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.734259"], ["updated_at", "2020-04-22 05:35:54.734259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.734523"], ["updated_at", "2020-04-22 05:35:54.734523"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.736185"], ["updated_at", "2020-04-22 05:35:54.736185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.739999"], ["updated_at", "2020-04-22 05:35:54.739999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.744462"], ["updated_at", "2020-04-22 05:35:54.744462"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_646836


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.748454"], ["updated_at", "2020-04-22 05:35:54.748454"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.750843"], ["updated_at", "2020-04-22 05:35:54.750843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.752627"], ["updated_at", "2020-04-22 05:35:54.752627"]]

CommentTest: test_751627


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.754960"], ["updated_at", "2020-04-22 05:35:54.754960"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.758431"], ["updated_at", "2020-04-22 05:35:54.758431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.761471"], ["updated_at", "2020-04-22 05:35:54.761471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_879540


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.766294"], ["updated_at", "2020-04-22 05:35:54.766294"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.771471"], ["updated_at", "2020-04-22 05:35:54.771471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_99907


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.773599"], ["updated_at", "2020-04-22 05:35:54.773599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.773822"], ["updated_at", "2020-04-22 05:35:54.773822"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.776544"], ["updated_at", "2020-04-22 05:35:54.776544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.778576"], ["updated_at", "2020-04-22 05:35:54.778576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_507565


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.782142"], ["updated_at", "2020-04-22 05:35:54.782142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.784722"], ["updated_at", "2020-04-22 05:35:54.784722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_891931


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.793981"], ["updated_at", "2020-04-22 05:35:54.793981"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.791722"], ["updated_at", "2020-04-22 05:35:54.791722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.797117"], ["updated_at", "2020-04-22 05:35:54.797117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.799144"], ["updated_at", "2020-04-22 05:35:54.799144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_235973


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.808325"], ["updated_at", "2020-04-22 05:35:54.808325"]]
 (0.1ms)  begin transaction

CommentTest: test_119956


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.811459"], ["updated_at", "2020-04-22 05:35:54.811459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.813618"], ["updated_at", "2020-04-22 05:35:54.813618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.813003"], ["updated_at", "2020-04-22 05:35:54.813003"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.815451"], ["updated_at", "2020-04-22 05:35:54.815451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.817287"], ["updated_at", "2020-04-22 05:35:54.817287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_186083


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.821944"], ["updated_at", "2020-04-22 05:35:54.821944"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.826350"], ["updated_at", "2020-04-22 05:35:54.826350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_871276


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.828278"], ["updated_at", "2020-04-22 05:35:54.828278"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.828440"], ["updated_at", "2020-04-22 05:35:54.828440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.829988"], ["updated_at", "2020-04-22 05:35:54.829988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.832698"], ["updated_at", "2020-04-22 05:35:54.832698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_32979


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.837096"], ["updated_at", "2020-04-22 05:35:54.837096"]]
 (0.1ms)  begin transaction

CommentTest: test_267077


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.840466"], ["updated_at", "2020-04-22 05:35:54.840466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.840926"], ["updated_at", "2020-04-22 05:35:54.840926"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.842364"], ["updated_at", "2020-04-22 05:35:54.842364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.842466"], ["updated_at", "2020-04-22 05:35:54.842466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.846029"], ["updated_at", "2020-04-22 05:35:54.846029"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_32755

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.850225"], ["updated_at", "2020-04-22 05:35:54.850225"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.852848"], ["updated_at", "2020-04-22 05:35:54.852848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_705382


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.855672"], ["updated_at", "2020-04-22 05:35:54.855672"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.856373"], ["updated_at", "2020-04-22 05:35:54.856373"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.858991"], ["updated_at", "2020-04-22 05:35:54.858991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.861142"], ["updated_at", "2020-04-22 05:35:54.861142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_233558


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.864118"], ["updated_at", "2020-04-22 05:35:54.864118"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.867554"], ["updated_at", "2020-04-22 05:35:54.867554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.870270"], ["updated_at", "2020-04-22 05:35:54.870270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_314267


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.874723"], ["updated_at", "2020-04-22 05:35:54.874723"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.878837"], ["updated_at", "2020-04-22 05:35:54.878837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_467958


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.880658"], ["updated_at", "2020-04-22 05:35:54.880658"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.880798"], ["updated_at", "2020-04-22 05:35:54.880798"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.883489"], ["updated_at", "2020-04-22 05:35:54.883489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.885305"], ["updated_at", "2020-04-22 05:35:54.885305"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_708570


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.891902"], ["updated_at", "2020-04-22 05:35:54.891902"]]
 (0.1ms)  begin transaction

CommentTest: test_918232


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.895757"], ["updated_at", "2020-04-22 05:35:54.895757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.896217"], ["updated_at", "2020-04-22 05:35:54.896217"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.897574"], ["updated_at", "2020-04-22 05:35:54.897574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.898558"], ["updated_at", "2020-04-22 05:35:54.898558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.900309"], ["updated_at", "2020-04-22 05:35:54.900309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (7.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_295846


CommentTest: test_466166


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.915118"], ["updated_at", "2020-04-22 05:35:54.915118"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.915316"], ["updated_at", "2020-04-22 05:35:54.915316"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.917675"], ["updated_at", "2020-04-22 05:35:54.917675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.917644"], ["updated_at", "2020-04-22 05:35:54.917644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.920053"], ["updated_at", "2020-04-22 05:35:54.920053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.920159"], ["updated_at", "2020-04-22 05:35:54.920159"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_575783


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_925498


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.929151"], ["updated_at", "2020-04-22 05:35:54.929151"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.930977"], ["updated_at", "2020-04-22 05:35:54.930977"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.931948"], ["updated_at", "2020-04-22 05:35:54.931948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.933616"], ["updated_at", "2020-04-22 05:35:54.933616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.933280"], ["updated_at", "2020-04-22 05:35:54.933280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.936117"], ["updated_at", "2020-04-22 05:35:54.936117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_446880


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.942534"], ["updated_at", "2020-04-22 05:35:54.942534"]]
 (0.1ms)  begin transaction

CommentTest: test_47381


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.945212"], ["updated_at", "2020-04-22 05:35:54.945212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.945212"], ["updated_at", "2020-04-22 05:35:54.945212"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.948503"], ["updated_at", "2020-04-22 05:35:54.948503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.947239"], ["updated_at", "2020-04-22 05:35:54.947239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.950003"], ["updated_at", "2020-04-22 05:35:54.950003"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_405038



CommentTest: test_61859


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.960431"], ["updated_at", "2020-04-22 05:35:54.960431"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.960436"], ["updated_at", "2020-04-22 05:35:54.960436"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.962133"], ["updated_at", "2020-04-22 05:35:54.962133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.962658"], ["updated_at", "2020-04-22 05:35:54.962658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.964446"], ["updated_at", "2020-04-22 05:35:54.964446"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.964942"], ["updated_at", "2020-04-22 05:35:54.964942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_448867


 (0.1ms)  begin transaction

CommentTest: test_662520


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.974693"], ["updated_at", "2020-04-22 05:35:54.974693"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.975432"], ["updated_at", "2020-04-22 05:35:54.975432"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.976489"], ["updated_at", "2020-04-22 05:35:54.976489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.978187"], ["updated_at", "2020-04-22 05:35:54.978187"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.977936"], ["updated_at", "2020-04-22 05:35:54.977936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.979793"], ["updated_at", "2020-04-22 05:35:54.979793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_215080


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.987406"], ["updated_at", "2020-04-22 05:35:54.987406"]]

CommentTest: test_129659


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.990798"], ["updated_at", "2020-04-22 05:35:54.990798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:54.990643"], ["updated_at", "2020-04-22 05:35:54.990643"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.992520"], ["updated_at", "2020-04-22 05:35:54.992520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:54.992989"], ["updated_at", "2020-04-22 05:35:54.992989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:54.995706"], ["updated_at", "2020-04-22 05:35:54.995706"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_118431


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.001107"], ["updated_at", "2020-04-22 05:35:55.001107"]]
 (0.1ms)  begin transaction

CommentTest: test_965546


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.003827"], ["updated_at", "2020-04-22 05:35:55.003827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.005038"], ["updated_at", "2020-04-22 05:35:55.005038"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.006671"], ["updated_at", "2020-04-22 05:35:55.006671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.009360"], ["updated_at", "2020-04-22 05:35:55.009360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_872127


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.013542"], ["updated_at", "2020-04-22 05:35:55.013542"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.015396"], ["updated_at", "2020-04-22 05:35:55.015396"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.017940"], ["updated_at", "2020-04-22 05:35:55.017940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.020514"], ["updated_at", "2020-04-22 05:35:55.020514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_56148


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_516790


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.026560"], ["updated_at", "2020-04-22 05:35:55.026560"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.028555"], ["updated_at", "2020-04-22 05:35:55.028555"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.029851"], ["updated_at", "2020-04-22 05:35:55.029851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.031655"], ["updated_at", "2020-04-22 05:35:55.031655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.032162"], ["updated_at", "2020-04-22 05:35:55.032162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.033965"], ["updated_at", "2020-04-22 05:35:55.033965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_761041


 (0.1ms)  begin transaction

CommentTest: test_870008


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.045730"], ["updated_at", "2020-04-22 05:35:55.045730"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.046517"], ["updated_at", "2020-04-22 05:35:55.046517"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.048273"], ["updated_at", "2020-04-22 05:35:55.048273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.049078"], ["updated_at", "2020-04-22 05:35:55.049078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.050246"], ["updated_at", "2020-04-22 05:35:55.050246"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.050271"], ["updated_at", "2020-04-22 05:35:55.050271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_658595


 (0.1ms)  begin transaction

CommentTest: test_614293


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.063071"], ["updated_at", "2020-04-22 05:35:55.063071"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.063324"], ["updated_at", "2020-04-22 05:35:55.063324"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.065119"], ["updated_at", "2020-04-22 05:35:55.065119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.065491"], ["updated_at", "2020-04-22 05:35:55.065491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.066487"], ["updated_at", "2020-04-22 05:35:55.066487"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.067027"], ["updated_at", "2020-04-22 05:35:55.067027"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_548950


 (0.1ms)  begin transaction

CommentTest: test_991433


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.077396"], ["updated_at", "2020-04-22 05:35:55.077396"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.079221"], ["updated_at", "2020-04-22 05:35:55.079221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.078169"], ["updated_at", "2020-04-22 05:35:55.078169"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.080698"], ["updated_at", "2020-04-22 05:35:55.080698"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.081125"], ["updated_at", "2020-04-22 05:35:55.081125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.082885"], ["updated_at", "2020-04-22 05:35:55.082885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_801751


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.087126"], ["updated_at", "2020-04-22 05:35:55.087126"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.090229"], ["updated_at", "2020-04-22 05:35:55.090229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_109730


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.091765"], ["updated_at", "2020-04-22 05:35:55.091765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.093098"], ["updated_at", "2020-04-22 05:35:55.093098"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.095381"], ["updated_at", "2020-04-22 05:35:55.095381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_103827


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.097312"], ["updated_at", "2020-04-22 05:35:55.097312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.098604"], ["updated_at", "2020-04-22 05:35:55.098604"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.100598"], ["updated_at", "2020-04-22 05:35:55.100598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_16533


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.105440"], ["updated_at", "2020-04-22 05:35:55.105440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.107439"], ["updated_at", "2020-04-22 05:35:55.107439"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.110168"], ["updated_at", "2020-04-22 05:35:55.110168"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.112056"], ["updated_at", "2020-04-22 05:35:55.112056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_186190


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.115473"], ["updated_at", "2020-04-22 05:35:55.115473"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.118036"], ["updated_at", "2020-04-22 05:35:55.118036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_712542


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.123665"], ["updated_at", "2020-04-22 05:35:55.123665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.125447"], ["updated_at", "2020-04-22 05:35:55.125447"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.127936"], ["updated_at", "2020-04-22 05:35:55.127936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_914822


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.130432"], ["updated_at", "2020-04-22 05:35:55.130432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.131930"], ["updated_at", "2020-04-22 05:35:55.131930"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.134199"], ["updated_at", "2020-04-22 05:35:55.134199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.136446"], ["updated_at", "2020-04-22 05:35:55.136446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_848043


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.139171"], ["updated_at", "2020-04-22 05:35:55.139171"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.142263"], ["updated_at", "2020-04-22 05:35:55.142263"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.144724"], ["updated_at", "2020-04-22 05:35:55.144724"]]
 (0.1ms)  begin transaction

CommentTest: test_981787


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.146970"], ["updated_at", "2020-04-22 05:35:55.146970"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.149478"], ["updated_at", "2020-04-22 05:35:55.149478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.151489"], ["updated_at", "2020-04-22 05:35:55.151489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_769495


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.158146"], ["updated_at", "2020-04-22 05:35:55.158146"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.160705"], ["updated_at", "2020-04-22 05:35:55.160705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.162549"], ["updated_at", "2020-04-22 05:35:55.162549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_165266


 (0.1ms)  begin transaction

CommentTest: test_146635


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.173242"], ["updated_at", "2020-04-22 05:35:55.173242"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.173917"], ["updated_at", "2020-04-22 05:35:55.173917"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.175717"], ["updated_at", "2020-04-22 05:35:55.175717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.176279"], ["updated_at", "2020-04-22 05:35:55.176279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.177529"], ["updated_at", "2020-04-22 05:35:55.177529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.178141"], ["updated_at", "2020-04-22 05:35:55.178141"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_890248


 (0.1ms)  begin transaction

CommentTest: test_631136


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.185199"], ["updated_at", "2020-04-22 05:35:55.185199"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.187527"], ["updated_at", "2020-04-22 05:35:55.187527"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.189649"], ["updated_at", "2020-04-22 05:35:55.189649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.190022"], ["updated_at", "2020-04-22 05:35:55.190022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.191730"], ["updated_at", "2020-04-22 05:35:55.191730"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.191507"], ["updated_at", "2020-04-22 05:35:55.191507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_61744



CommentTest: test_204615


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.200704"], ["updated_at", "2020-04-22 05:35:55.200704"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.200796"], ["updated_at", "2020-04-22 05:35:55.200796"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.203793"], ["updated_at", "2020-04-22 05:35:55.203793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.203668"], ["updated_at", "2020-04-22 05:35:55.203668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.206319"], ["updated_at", "2020-04-22 05:35:55.206319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.207546"], ["updated_at", "2020-04-22 05:35:55.207546"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_412200


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_990623


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.216669"], ["updated_at", "2020-04-22 05:35:55.216669"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.219068"], ["updated_at", "2020-04-22 05:35:55.219068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.218729"], ["updated_at", "2020-04-22 05:35:55.218729"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.222515"], ["updated_at", "2020-04-22 05:35:55.222515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.224026"], ["updated_at", "2020-04-22 05:35:55.224026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.225170"], ["updated_at", "2020-04-22 05:35:55.225170"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_790436


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.234821"], ["updated_at", "2020-04-22 05:35:55.234821"]]

CommentTest: test_62654


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.238212"], ["updated_at", "2020-04-22 05:35:55.238212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.240623"], ["updated_at", "2020-04-22 05:35:55.240623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.241847"], ["updated_at", "2020-04-22 05:35:55.241847"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.244716"], ["updated_at", "2020-04-22 05:35:55.244716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.246668"], ["updated_at", "2020-04-22 05:35:55.246668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_209713


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.250744"], ["updated_at", "2020-04-22 05:35:55.250744"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.253355"], ["updated_at", "2020-04-22 05:35:55.253355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.256571"], ["updated_at", "2020-04-22 05:35:55.256571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_17706


 (0.1ms)  begin transaction

CommentTest: test_15381


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.265252"], ["updated_at", "2020-04-22 05:35:55.265252"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.263990"], ["updated_at", "2020-04-22 05:35:55.263990"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.267002"], ["updated_at", "2020-04-22 05:35:55.267002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.268676"], ["updated_at", "2020-04-22 05:35:55.268676"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.268758"], ["updated_at", "2020-04-22 05:35:55.268758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.274235"], ["updated_at", "2020-04-22 05:35:55.274235"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_52875


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.279690"], ["updated_at", "2020-04-22 05:35:55.279690"]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.283274"], ["updated_at", "2020-04-22 05:35:55.283274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_243697


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.285629"], ["updated_at", "2020-04-22 05:35:55.285629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.285527"], ["updated_at", "2020-04-22 05:35:55.285527"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.293513"], ["updated_at", "2020-04-22 05:35:55.293513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.295255"], ["updated_at", "2020-04-22 05:35:55.295255"]]
 (0.1ms)  begin transaction

CommentTest: test_765431


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.298472"], ["updated_at", "2020-04-22 05:35:55.298472"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.300052"], ["updated_at", "2020-04-22 05:35:55.300052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.302229"], ["updated_at", "2020-04-22 05:35:55.302229"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_323742


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.309035"], ["updated_at", "2020-04-22 05:35:55.309035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.311296"], ["updated_at", "2020-04-22 05:35:55.311296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_143656


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.313074"], ["updated_at", "2020-04-22 05:35:55.313074"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.314341"], ["updated_at", "2020-04-22 05:35:55.314341"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.316550"], ["updated_at", "2020-04-22 05:35:55.316550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.318447"], ["updated_at", "2020-04-22 05:35:55.318447"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_638238


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.324610"], ["updated_at", "2020-04-22 05:35:55.324610"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.327133"], ["updated_at", "2020-04-22 05:35:55.327133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_119784


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.328703"], ["updated_at", "2020-04-22 05:35:55.328703"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.329390"], ["updated_at", "2020-04-22 05:35:55.329390"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.331709"], ["updated_at", "2020-04-22 05:35:55.331709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.333568"], ["updated_at", "2020-04-22 05:35:55.333568"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_693235


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.336141"], ["updated_at", "2020-04-22 05:35:55.336141"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.339419"], ["updated_at", "2020-04-22 05:35:55.339419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_989305


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.341934"], ["updated_at", "2020-04-22 05:35:55.341934"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.342272"], ["updated_at", "2020-04-22 05:35:55.342272"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.344545"], ["updated_at", "2020-04-22 05:35:55.344545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_249412


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.346386"], ["updated_at", "2020-04-22 05:35:55.346386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.347591"], ["updated_at", "2020-04-22 05:35:55.347591"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.349773"], ["updated_at", "2020-04-22 05:35:55.349773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_489912


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (4.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.351529"], ["updated_at", "2020-04-22 05:35:55.351529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.355905"], ["updated_at", "2020-04-22 05:35:55.355905"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.358579"], ["updated_at", "2020-04-22 05:35:55.358579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.360753"], ["updated_at", "2020-04-22 05:35:55.360753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_238309


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_661520


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.369464"], ["updated_at", "2020-04-22 05:35:55.369464"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.374929"], ["updated_at", "2020-04-22 05:35:55.374929"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.375568"], ["updated_at", "2020-04-22 05:35:55.375568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.377220"], ["updated_at", "2020-04-22 05:35:55.377220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.377364"], ["updated_at", "2020-04-22 05:35:55.377364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.379677"], ["updated_at", "2020-04-22 05:35:55.379677"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_748471


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_516655


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.388034"], ["updated_at", "2020-04-22 05:35:55.388034"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.391279"], ["updated_at", "2020-04-22 05:35:55.391279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.390747"], ["updated_at", "2020-04-22 05:35:55.390747"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.393415"], ["updated_at", "2020-04-22 05:35:55.393415"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.393568"], ["updated_at", "2020-04-22 05:35:55.393568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.395258"], ["updated_at", "2020-04-22 05:35:55.395258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_807618


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.405690"], ["updated_at", "2020-04-22 05:35:55.405690"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.410278"], ["updated_at", "2020-04-22 05:35:55.410278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.412683"], ["updated_at", "2020-04-22 05:35:55.412683"]]

CommentTest: test_634940


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.414603"], ["updated_at", "2020-04-22 05:35:55.414603"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.417632"], ["updated_at", "2020-04-22 05:35:55.417632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_64306


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.420123"], ["updated_at", "2020-04-22 05:35:55.420123"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.423990"], ["updated_at", "2020-04-22 05:35:55.423990"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.427144"], ["updated_at", "2020-04-22 05:35:55.427144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.429240"], ["updated_at", "2020-04-22 05:35:55.429240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_757743


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.434128"], ["updated_at", "2020-04-22 05:35:55.434128"]]
 (0.1ms)  begin transaction

CommentTest: test_973876


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.439042"], ["updated_at", "2020-04-22 05:35:55.439042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.439022"], ["updated_at", "2020-04-22 05:35:55.439022"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.440735"], ["updated_at", "2020-04-22 05:35:55.440735"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.441316"], ["updated_at", "2020-04-22 05:35:55.441316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.443774"], ["updated_at", "2020-04-22 05:35:55.443774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_209447


 (0.1ms)  begin transaction

CommentTest: test_372017


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.452155"], ["updated_at", "2020-04-22 05:35:55.452155"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.452435"], ["updated_at", "2020-04-22 05:35:55.452435"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.457336"], ["updated_at", "2020-04-22 05:35:55.457336"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.458109"], ["updated_at", "2020-04-22 05:35:55.458109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.459570"], ["updated_at", "2020-04-22 05:35:55.459570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.460226"], ["updated_at", "2020-04-22 05:35:55.460226"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_683476


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.470665"], ["updated_at", "2020-04-22 05:35:55.470665"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.474409"], ["updated_at", "2020-04-22 05:35:55.474409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.1ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.476266"], ["updated_at", "2020-04-22 05:35:55.476266"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_956633


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_807395


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.493222"], ["updated_at", "2020-04-22 05:35:55.493222"]]
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.482219"], ["updated_at", "2020-04-22 05:35:55.482219"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.496899"], ["updated_at", "2020-04-22 05:35:55.496899"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.500208"], ["updated_at", "2020-04-22 05:35:55.500208"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.499891"], ["updated_at", "2020-04-22 05:35:55.499891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.507097"], ["updated_at", "2020-04-22 05:35:55.507097"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_910099


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.512034"], ["updated_at", "2020-04-22 05:35:55.512034"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.513812"], ["updated_at", "2020-04-22 05:35:55.513812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.515687"], ["updated_at", "2020-04-22 05:35:55.515687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_438819


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.518230"], ["updated_at", "2020-04-22 05:35:55.518230"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_129038


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.522955"], ["updated_at", "2020-04-22 05:35:55.522955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.525216"], ["updated_at", "2020-04-22 05:35:55.525216"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.524755"], ["updated_at", "2020-04-22 05:35:55.524755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.527623"], ["updated_at", "2020-04-22 05:35:55.527623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.529624"], ["updated_at", "2020-04-22 05:35:55.529624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_277556


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.537992"], ["updated_at", "2020-04-22 05:35:55.537992"]]
 (0.1ms)  begin transaction

CommentTest: test_917436


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.541748"], ["updated_at", "2020-04-22 05:35:55.541748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.542628"], ["updated_at", "2020-04-22 05:35:55.542628"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.543865"], ["updated_at", "2020-04-22 05:35:55.543865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.545275"], ["updated_at", "2020-04-22 05:35:55.545275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.548611"], ["updated_at", "2020-04-22 05:35:55.548611"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_947136


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.555793"], ["updated_at", "2020-04-22 05:35:55.555793"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.558839"], ["updated_at", "2020-04-22 05:35:55.558839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_294940


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.560860"], ["updated_at", "2020-04-22 05:35:55.560860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.562045"], ["updated_at", "2020-04-22 05:35:55.562045"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.564795"], ["updated_at", "2020-04-22 05:35:55.564795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.566567"], ["updated_at", "2020-04-22 05:35:55.566567"]]
 (0.1ms)  begin transaction

CommentTest: test_844282

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.568319"], ["updated_at", "2020-04-22 05:35:55.568319"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.575959"], ["updated_at", "2020-04-22 05:35:55.575959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_198500


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.577875"], ["updated_at", "2020-04-22 05:35:55.577875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.578961"], ["updated_at", "2020-04-22 05:35:55.578961"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.580537"], ["updated_at", "2020-04-22 05:35:55.580537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.581724"], ["updated_at", "2020-04-22 05:35:55.581724"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_156586


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.585986"], ["updated_at", "2020-04-22 05:35:55.585986"]]
 (0.1ms)  begin transaction

CommentTest: test_710572


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.588073"], ["updated_at", "2020-04-22 05:35:55.588073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.589822"], ["updated_at", "2020-04-22 05:35:55.589822"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.590636"], ["updated_at", "2020-04-22 05:35:55.590636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.592621"], ["updated_at", "2020-04-22 05:35:55.592621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.594162"], ["updated_at", "2020-04-22 05:35:55.594162"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_243706


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.597925"], ["updated_at", "2020-04-22 05:35:55.597925"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.600062"], ["updated_at", "2020-04-22 05:35:55.600062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_197101


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.601508"], ["updated_at", "2020-04-22 05:35:55.601508"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.605079"], ["updated_at", "2020-04-22 05:35:55.605079"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.607512"], ["updated_at", "2020-04-22 05:35:55.607512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.610765"], ["updated_at", "2020-04-22 05:35:55.610765"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_251757


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_748158


Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.619219"], ["updated_at", "2020-04-22 05:35:55.619219"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.625378"], ["updated_at", "2020-04-22 05:35:55.625378"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.627770"], ["updated_at", "2020-04-22 05:35:55.627770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.626527"], ["updated_at", "2020-04-22 05:35:55.626527"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.629631"], ["updated_at", "2020-04-22 05:35:55.629631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.629631"], ["updated_at", "2020-04-22 05:35:55.629631"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_784429


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_561386


 (0.1ms)  SAVEPOINT active_record_1
 (1.9ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.642485"], ["updated_at", "2020-04-22 05:35:55.642485"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.640746"], ["updated_at", "2020-04-22 05:35:55.640746"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.644529"], ["updated_at", "2020-04-22 05:35:55.644529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.645490"], ["updated_at", "2020-04-22 05:35:55.645490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.647256"], ["updated_at", "2020-04-22 05:35:55.647256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.649265"], ["updated_at", "2020-04-22 05:35:55.649265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_554119


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.659389"], ["updated_at", "2020-04-22 05:35:55.659389"]]
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.662025"], ["updated_at", "2020-04-22 05:35:55.662025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.664016"], ["updated_at", "2020-04-22 05:35:55.664016"]]
 (0.1ms)  begin transaction

CommentTest: test_298663


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.665992"], ["updated_at", "2020-04-22 05:35:55.665992"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.668659"], ["updated_at", "2020-04-22 05:35:55.668659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_906253


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.670760"], ["updated_at", "2020-04-22 05:35:55.670760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.673605"], ["updated_at", "2020-04-22 05:35:55.673605"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.675976"], ["updated_at", "2020-04-22 05:35:55.675976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.678162"], ["updated_at", "2020-04-22 05:35:55.678162"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_717010


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.681992"], ["updated_at", "2020-04-22 05:35:55.681992"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.684401"], ["updated_at", "2020-04-22 05:35:55.684401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.686500"], ["updated_at", "2020-04-22 05:35:55.686500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_723097


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.694660"], ["updated_at", "2020-04-22 05:35:55.694660"]]
 (0.1ms)  begin transaction

CommentTest: test_686128


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.697179"], ["updated_at", "2020-04-22 05:35:55.697179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.698293"], ["updated_at", "2020-04-22 05:35:55.698293"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.700775"], ["updated_at", "2020-04-22 05:35:55.700775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.700416"], ["updated_at", "2020-04-22 05:35:55.700416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.703234"], ["updated_at", "2020-04-22 05:35:55.703234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_584110


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.712373"], ["updated_at", "2020-04-22 05:35:55.712373"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.714537"], ["updated_at", "2020-04-22 05:35:55.714537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.716243"], ["updated_at", "2020-04-22 05:35:55.716243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_270610


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_65490


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.723485"], ["updated_at", "2020-04-22 05:35:55.723485"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.725490"], ["updated_at", "2020-04-22 05:35:55.725490"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.727945"], ["updated_at", "2020-04-22 05:35:55.727945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.730016"], ["updated_at", "2020-04-22 05:35:55.730016"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.726086"], ["updated_at", "2020-04-22 05:35:55.726086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_163259


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.734685"], ["updated_at", "2020-04-22 05:35:55.734685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.738038"], ["updated_at", "2020-04-22 05:35:55.738038"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.741662"], ["updated_at", "2020-04-22 05:35:55.741662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.743490"], ["updated_at", "2020-04-22 05:35:55.743490"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_960471


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.748336"], ["updated_at", "2020-04-22 05:35:55.748336"]]
 (0.1ms)  begin transaction

CommentTest: test_545572


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.751070"], ["updated_at", "2020-04-22 05:35:55.751070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.751342"], ["updated_at", "2020-04-22 05:35:55.751342"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.753997"], ["updated_at", "2020-04-22 05:35:55.753997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.753617"], ["updated_at", "2020-04-22 05:35:55.753617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.756920"], ["updated_at", "2020-04-22 05:35:55.756920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_833486


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.764579"], ["updated_at", "2020-04-22 05:35:55.764579"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.767117"], ["updated_at", "2020-04-22 05:35:55.767117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_102260


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.768982"], ["updated_at", "2020-04-22 05:35:55.768982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.770887"], ["updated_at", "2020-04-22 05:35:55.770887"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.773985"], ["updated_at", "2020-04-22 05:35:55.773985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_27161


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.775908"], ["updated_at", "2020-04-22 05:35:55.775908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.778985"], ["updated_at", "2020-04-22 05:35:55.778985"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.781461"], ["updated_at", "2020-04-22 05:35:55.781461"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.783868"], ["updated_at", "2020-04-22 05:35:55.783868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_735919


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_687629


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.793000"], ["updated_at", "2020-04-22 05:35:55.793000"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.795282"], ["updated_at", "2020-04-22 05:35:55.795282"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.799755"], ["updated_at", "2020-04-22 05:35:55.799755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.801722"], ["updated_at", "2020-04-22 05:35:55.801722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (8.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.796222"], ["updated_at", "2020-04-22 05:35:55.796222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.811511"], ["updated_at", "2020-04-22 05:35:55.811511"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_567307


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.815150"], ["updated_at", "2020-04-22 05:35:55.815150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.817576"], ["updated_at", "2020-04-22 05:35:55.817576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_363683


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.820083"], ["updated_at", "2020-04-22 05:35:55.820083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.822791"], ["updated_at", "2020-04-22 05:35:55.822791"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.826996"], ["updated_at", "2020-04-22 05:35:55.826996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.828752"], ["updated_at", "2020-04-22 05:35:55.828752"]]

CommentTest: test_962832


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.830493"], ["updated_at", "2020-04-22 05:35:55.830493"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.832812"], ["updated_at", "2020-04-22 05:35:55.832812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.834884"], ["updated_at", "2020-04-22 05:35:55.834884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_287704


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.840758"], ["updated_at", "2020-04-22 05:35:55.840758"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_240796


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.844207"], ["updated_at", "2020-04-22 05:35:55.844207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.846333"], ["updated_at", "2020-04-22 05:35:55.846333"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.845494"], ["updated_at", "2020-04-22 05:35:55.845494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.849212"], ["updated_at", "2020-04-22 05:35:55.849212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.851128"], ["updated_at", "2020-04-22 05:35:55.851128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_456572


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.857079"], ["updated_at", "2020-04-22 05:35:55.857079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.858721"], ["updated_at", "2020-04-22 05:35:55.858721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.860232"], ["updated_at", "2020-04-22 05:35:55.860232"]]

CommentTest: test_827773


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.861859"], ["updated_at", "2020-04-22 05:35:55.861859"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.864519"], ["updated_at", "2020-04-22 05:35:55.864519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.866230"], ["updated_at", "2020-04-22 05:35:55.866230"]]

CommentTest: test_737105


 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.867686"], ["updated_at", "2020-04-22 05:35:55.867686"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.871409"], ["updated_at", "2020-04-22 05:35:55.871409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_193679


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.874040"], ["updated_at", "2020-04-22 05:35:55.874040"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.874057"], ["updated_at", "2020-04-22 05:35:55.874057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.875811"], ["updated_at", "2020-04-22 05:35:55.875811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.877435"], ["updated_at", "2020-04-22 05:35:55.877435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_592125


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_198441


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.883090"], ["updated_at", "2020-04-22 05:35:55.883090"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.884522"], ["updated_at", "2020-04-22 05:35:55.884522"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.885469"], ["updated_at", "2020-04-22 05:35:55.885469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.886666"], ["updated_at", "2020-04-22 05:35:55.886666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.887565"], ["updated_at", "2020-04-22 05:35:55.887565"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.887943"], ["updated_at", "2020-04-22 05:35:55.887943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_302952


 (0.1ms)  begin transaction

CommentTest: test_8342


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.896566"], ["updated_at", "2020-04-22 05:35:55.896566"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.896881"], ["updated_at", "2020-04-22 05:35:55.896881"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.898139"], ["updated_at", "2020-04-22 05:35:55.898139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.899261"], ["updated_at", "2020-04-22 05:35:55.899261"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.899131"], ["updated_at", "2020-04-22 05:35:55.899131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.900942"], ["updated_at", "2020-04-22 05:35:55.900942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_945307


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.908434"], ["updated_at", "2020-04-22 05:35:55.908434"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.911396"], ["updated_at", "2020-04-22 05:35:55.911396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.913888"], ["updated_at", "2020-04-22 05:35:55.913888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_779201


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.917060"], ["updated_at", "2020-04-22 05:35:55.917060"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.920449"], ["updated_at", "2020-04-22 05:35:55.920449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.924484"], ["updated_at", "2020-04-22 05:35:55.924484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_118558


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.927052"], ["updated_at", "2020-04-22 05:35:55.927052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.929777"], ["updated_at", "2020-04-22 05:35:55.929777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_194232


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.931720"], ["updated_at", "2020-04-22 05:35:55.931720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.932053"], ["updated_at", "2020-04-22 05:35:55.932053"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.935096"], ["updated_at", "2020-04-22 05:35:55.935096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.937349"], ["updated_at", "2020-04-22 05:35:55.937349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_766677


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.942597"], ["updated_at", "2020-04-22 05:35:55.942597"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.945014"], ["updated_at", "2020-04-22 05:35:55.945014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_308892


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.946899"], ["updated_at", "2020-04-22 05:35:55.946899"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.947547"], ["updated_at", "2020-04-22 05:35:55.947547"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.950100"], ["updated_at", "2020-04-22 05:35:55.950100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.952080"], ["updated_at", "2020-04-22 05:35:55.952080"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_793598


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.955791"], ["updated_at", "2020-04-22 05:35:55.955791"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.958754"], ["updated_at", "2020-04-22 05:35:55.958754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_165212


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.961931"], ["updated_at", "2020-04-22 05:35:55.961931"]]
 (2.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.968451"], ["updated_at", "2020-04-22 05:35:55.968451"]]
 (0.1ms)  begin transaction

CommentTest: test_121764


Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.971348"], ["updated_at", "2020-04-22 05:35:55.971348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.974222"], ["updated_at", "2020-04-22 05:35:55.974222"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.975908"], ["updated_at", "2020-04-22 05:35:55.975908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.977532"], ["updated_at", "2020-04-22 05:35:55.977532"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.979372"], ["updated_at", "2020-04-22 05:35:55.979372"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_366746


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.984119"], ["updated_at", "2020-04-22 05:35:55.984119"]]
 (0.1ms)  begin transaction

CommentTest: test_769456


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.991287"], ["updated_at", "2020-04-22 05:35:55.991287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:55.991427"], ["updated_at", "2020-04-22 05:35:55.991427"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.993448"], ["updated_at", "2020-04-22 05:35:55.993448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:55.995181"], ["updated_at", "2020-04-22 05:35:55.995181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:55.997914"], ["updated_at", "2020-04-22 05:35:55.997914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_537990


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.004430"], ["updated_at", "2020-04-22 05:35:56.004430"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.007572"], ["updated_at", "2020-04-22 05:35:56.007572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.010114"], ["updated_at", "2020-04-22 05:35:56.010114"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_340596


 (0.1ms)  begin transaction

CommentTest: test_677638


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.016134"], ["updated_at", "2020-04-22 05:35:56.016134"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.019923"], ["updated_at", "2020-04-22 05:35:56.019923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.017265"], ["updated_at", "2020-04-22 05:35:56.017265"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.023337"], ["updated_at", "2020-04-22 05:35:56.023337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.023991"], ["updated_at", "2020-04-22 05:35:56.023991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.025757"], ["updated_at", "2020-04-22 05:35:56.025757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_961465


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.032267"], ["updated_at", "2020-04-22 05:35:56.032267"]]
 (0.1ms)  begin transaction

CommentTest: test_362228


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.034845"], ["updated_at", "2020-04-22 05:35:56.034845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.035373"], ["updated_at", "2020-04-22 05:35:56.035373"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.037374"], ["updated_at", "2020-04-22 05:35:56.037374"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.037973"], ["updated_at", "2020-04-22 05:35:56.037973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.041131"], ["updated_at", "2020-04-22 05:35:56.041131"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_330492


 (0.1ms)  begin transaction

CommentTest: test_462040


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.050627"], ["updated_at", "2020-04-22 05:35:56.050627"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.051120"], ["updated_at", "2020-04-22 05:35:56.051120"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.053682"], ["updated_at", "2020-04-22 05:35:56.053682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.053630"], ["updated_at", "2020-04-22 05:35:56.053630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.056136"], ["updated_at", "2020-04-22 05:35:56.056136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.057716"], ["updated_at", "2020-04-22 05:35:56.057716"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_431325


 (0.1ms)  begin transaction

CommentTest: test_404505


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.065869"], ["updated_at", "2020-04-22 05:35:56.065869"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.066829"], ["updated_at", "2020-04-22 05:35:56.066829"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.069549"], ["updated_at", "2020-04-22 05:35:56.069549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.072299"], ["updated_at", "2020-04-22 05:35:56.072299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.068558"], ["updated_at", "2020-04-22 05:35:56.068558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.077033"], ["updated_at", "2020-04-22 05:35:56.077033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_622259


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.082421"], ["updated_at", "2020-04-22 05:35:56.082421"]]
 (0.1ms)  begin transaction

CommentTest: test_627045


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.085034"], ["updated_at", "2020-04-22 05:35:56.085034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.085468"], ["updated_at", "2020-04-22 05:35:56.085468"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.087189"], ["updated_at", "2020-04-22 05:35:56.087189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.088372"], ["updated_at", "2020-04-22 05:35:56.088372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.092213"], ["updated_at", "2020-04-22 05:35:56.092213"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_592764


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.096762"], ["updated_at", "2020-04-22 05:35:56.096762"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.099138"], ["updated_at", "2020-04-22 05:35:56.099138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.2ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.100802"], ["updated_at", "2020-04-22 05:35:56.100802"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_245230


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.106193"], ["updated_at", "2020-04-22 05:35:56.106193"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.109431"], ["updated_at", "2020-04-22 05:35:56.109431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.112452"], ["updated_at", "2020-04-22 05:35:56.112452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_84360


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_309737


Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.117542"], ["updated_at", "2020-04-22 05:35:56.117542"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.125620"], ["updated_at", "2020-04-22 05:35:56.125620"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.127348"], ["updated_at", "2020-04-22 05:35:56.127348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.128417"], ["updated_at", "2020-04-22 05:35:56.128417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.129414"], ["updated_at", "2020-04-22 05:35:56.129414"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.130356"], ["updated_at", "2020-04-22 05:35:56.130356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_2297


Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.135104"], ["updated_at", "2020-04-22 05:35:56.135104"]]
 (0.1ms)  begin transaction

CommentTest: test_59611


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.140162"], ["updated_at", "2020-04-22 05:35:56.140162"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.140630"], ["updated_at", "2020-04-22 05:35:56.140630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.142495"], ["updated_at", "2020-04-22 05:35:56.142495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.142497"], ["updated_at", "2020-04-22 05:35:56.142497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.144115"], ["updated_at", "2020-04-22 05:35:56.144115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_906969


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.149683"], ["updated_at", "2020-04-22 05:35:56.149683"]]
 (0.1ms)  begin transaction

CommentTest: test_404748


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.151513"], ["updated_at", "2020-04-22 05:35:56.151513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.153010"], ["updated_at", "2020-04-22 05:35:56.153010"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.153267"], ["updated_at", "2020-04-22 05:35:56.153267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.157772"], ["updated_at", "2020-04-22 05:35:56.157772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.159358"], ["updated_at", "2020-04-22 05:35:56.159358"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_839740


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_877029


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.165070"], ["updated_at", "2020-04-22 05:35:56.165070"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.166491"], ["updated_at", "2020-04-22 05:35:56.166491"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.168021"], ["updated_at", "2020-04-22 05:35:56.168021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.169486"], ["updated_at", "2020-04-22 05:35:56.169486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.169813"], ["updated_at", "2020-04-22 05:35:56.169813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.171077"], ["updated_at", "2020-04-22 05:35:56.171077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_952742


 (0.0ms)  begin transaction

CommentTest: test_434379


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.178201"], ["updated_at", "2020-04-22 05:35:56.178201"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.178727"], ["updated_at", "2020-04-22 05:35:56.178727"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.180526"], ["updated_at", "2020-04-22 05:35:56.180526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.180494"], ["updated_at", "2020-04-22 05:35:56.180494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.182247"], ["updated_at", "2020-04-22 05:35:56.182247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.182768"], ["updated_at", "2020-04-22 05:35:56.182768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_199592

 (0.1ms)  begin transaction

CommentTest: test_966044



 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.195102"], ["updated_at", "2020-04-22 05:35:56.195102"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.194168"], ["updated_at", "2020-04-22 05:35:56.194168"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.197778"], ["updated_at", "2020-04-22 05:35:56.197778"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.199070"], ["updated_at", "2020-04-22 05:35:56.199070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.199561"], ["updated_at", "2020-04-22 05:35:56.199561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.200832"], ["updated_at", "2020-04-22 05:35:56.200832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_114728


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_373382


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.212635"], ["updated_at", "2020-04-22 05:35:56.212635"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.214448"], ["updated_at", "2020-04-22 05:35:56.214448"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.215222"], ["updated_at", "2020-04-22 05:35:56.215222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.217065"], ["updated_at", "2020-04-22 05:35:56.217065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.217034"], ["updated_at", "2020-04-22 05:35:56.217034"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.219103"], ["updated_at", "2020-04-22 05:35:56.219103"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_909009


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.231515"], ["updated_at", "2020-04-22 05:35:56.231515"]]
 (0.1ms)  begin transaction

CommentTest: test_849600


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.234284"], ["updated_at", "2020-04-22 05:35:56.234284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.235089"], ["updated_at", "2020-04-22 05:35:56.235089"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.237652"], ["updated_at", "2020-04-22 05:35:56.237652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.241364"], ["updated_at", "2020-04-22 05:35:56.241364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.244218"], ["updated_at", "2020-04-22 05:35:56.244218"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_361362


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.248495"], ["updated_at", "2020-04-22 05:35:56.248495"]]
 (0.1ms)  begin transaction

CommentTest: test_656849


Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.251221"], ["updated_at", "2020-04-22 05:35:56.251221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.254507"], ["updated_at", "2020-04-22 05:35:56.254507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.253337"], ["updated_at", "2020-04-22 05:35:56.253337"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.258350"], ["updated_at", "2020-04-22 05:35:56.258350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.260212"], ["updated_at", "2020-04-22 05:35:56.260212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_580172


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.264451"], ["updated_at", "2020-04-22 05:35:56.264451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.266799"], ["updated_at", "2020-04-22 05:35:56.266799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_499689


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.268602"], ["updated_at", "2020-04-22 05:35:56.268602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.271057"], ["updated_at", "2020-04-22 05:35:56.271057"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.275390"], ["updated_at", "2020-04-22 05:35:56.275390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_212844


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.277298"], ["updated_at", "2020-04-22 05:35:56.277298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.278095"], ["updated_at", "2020-04-22 05:35:56.278095"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.280469"], ["updated_at", "2020-04-22 05:35:56.280469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.282258"], ["updated_at", "2020-04-22 05:35:56.282258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_234780


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.285584"], ["updated_at", "2020-04-22 05:35:56.285584"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.288949"], ["updated_at", "2020-04-22 05:35:56.288949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.292432"], ["updated_at", "2020-04-22 05:35:56.292432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_245924


 (0.8ms)  begin transaction

CommentTest: test_744996


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.302254"], ["updated_at", "2020-04-22 05:35:56.302254"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.304878"], ["updated_at", "2020-04-22 05:35:56.304878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.303327"], ["updated_at", "2020-04-22 05:35:56.303327"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.310223"], ["updated_at", "2020-04-22 05:35:56.310223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.310430"], ["updated_at", "2020-04-22 05:35:56.310430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.312306"], ["updated_at", "2020-04-22 05:35:56.312306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_594704

 (0.1ms)  begin transaction

CommentTest: test_853282



 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.322062"], ["updated_at", "2020-04-22 05:35:56.322062"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.323133"], ["updated_at", "2020-04-22 05:35:56.323133"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.326301"], ["updated_at", "2020-04-22 05:35:56.326301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.327486"], ["updated_at", "2020-04-22 05:35:56.327486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.328262"], ["updated_at", "2020-04-22 05:35:56.328262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.329602"], ["updated_at", "2020-04-22 05:35:56.329602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_910830


 (0.1ms)  begin transaction

CommentTest: test_984266


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.337310"], ["updated_at", "2020-04-22 05:35:56.337310"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.338888"], ["updated_at", "2020-04-22 05:35:56.338888"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.341783"], ["updated_at", "2020-04-22 05:35:56.341783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.343010"], ["updated_at", "2020-04-22 05:35:56.343010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.343796"], ["updated_at", "2020-04-22 05:35:56.343796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.344938"], ["updated_at", "2020-04-22 05:35:56.344938"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_291331


 (0.1ms)  begin transaction

CommentTest: test_982077


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.354130"], ["updated_at", "2020-04-22 05:35:56.354130"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.354636"], ["updated_at", "2020-04-22 05:35:56.354636"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.356993"], ["updated_at", "2020-04-22 05:35:56.356993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.356969"], ["updated_at", "2020-04-22 05:35:56.356969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.359234"], ["updated_at", "2020-04-22 05:35:56.359234"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.359296"], ["updated_at", "2020-04-22 05:35:56.359296"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_777231


 (0.1ms)  begin transaction

CommentTest: test_821359


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.366816"], ["updated_at", "2020-04-22 05:35:56.366816"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.367222"], ["updated_at", "2020-04-22 05:35:56.367222"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.369817"], ["updated_at", "2020-04-22 05:35:56.369817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.369818"], ["updated_at", "2020-04-22 05:35:56.369818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.371910"], ["updated_at", "2020-04-22 05:35:56.371910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.371867"], ["updated_at", "2020-04-22 05:35:56.371867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_524761

 (0.1ms)  begin transaction


CommentTest: test_564391


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.382729"], ["updated_at", "2020-04-22 05:35:56.382729"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.382692"], ["updated_at", "2020-04-22 05:35:56.382692"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.385490"], ["updated_at", "2020-04-22 05:35:56.385490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.385864"], ["updated_at", "2020-04-22 05:35:56.385864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.387485"], ["updated_at", "2020-04-22 05:35:56.387485"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.387591"], ["updated_at", "2020-04-22 05:35:56.387591"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_299025


 (0.1ms)  begin transaction

CommentTest: test_442306


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.397391"], ["updated_at", "2020-04-22 05:35:56.397391"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.397654"], ["updated_at", "2020-04-22 05:35:56.397654"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.399413"], ["updated_at", "2020-04-22 05:35:56.399413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.399783"], ["updated_at", "2020-04-22 05:35:56.399783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.400565"], ["updated_at", "2020-04-22 05:35:56.400565"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.401536"], ["updated_at", "2020-04-22 05:35:56.401536"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_454155


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_756662


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.414403"], ["updated_at", "2020-04-22 05:35:56.414403"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.415977"], ["updated_at", "2020-04-22 05:35:56.415977"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.417183"], ["updated_at", "2020-04-22 05:35:56.417183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.418630"], ["updated_at", "2020-04-22 05:35:56.418630"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.418539"], ["updated_at", "2020-04-22 05:35:56.418539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.423914"], ["updated_at", "2020-04-22 05:35:56.423914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_537397


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.429306"], ["updated_at", "2020-04-22 05:35:56.429306"]]
 (0.1ms)  begin transaction

CommentTest: test_756151


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.431444"], ["updated_at", "2020-04-22 05:35:56.431444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.431590"], ["updated_at", "2020-04-22 05:35:56.431590"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.432695"], ["updated_at", "2020-04-22 05:35:56.432695"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.433899"], ["updated_at", "2020-04-22 05:35:56.433899"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.435418"], ["updated_at", "2020-04-22 05:35:56.435418"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_582159


 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_765041


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.441773"], ["updated_at", "2020-04-22 05:35:56.441773"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.442843"], ["updated_at", "2020-04-22 05:35:56.442843"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.444110"], ["updated_at", "2020-04-22 05:35:56.444110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.445134"], ["updated_at", "2020-04-22 05:35:56.445134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.446451"], ["updated_at", "2020-04-22 05:35:56.446451"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.446867"], ["updated_at", "2020-04-22 05:35:56.446867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_949672


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_931478


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.456951"], ["updated_at", "2020-04-22 05:35:56.456951"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.459654"], ["updated_at", "2020-04-22 05:35:56.459654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.458696"], ["updated_at", "2020-04-22 05:35:56.458696"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.461508"], ["updated_at", "2020-04-22 05:35:56.461508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.462238"], ["updated_at", "2020-04-22 05:35:56.462238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.467027"], ["updated_at", "2020-04-22 05:35:56.467027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_706337


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.471877"], ["updated_at", "2020-04-22 05:35:56.471877"]]
 (0.1ms)  begin transaction

CommentTest: test_862830


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.477597"], ["updated_at", "2020-04-22 05:35:56.477597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.479273"], ["updated_at", "2020-04-22 05:35:56.479273"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.480067"], ["updated_at", "2020-04-22 05:35:56.480067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.481692"], ["updated_at", "2020-04-22 05:35:56.481692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.483450"], ["updated_at", "2020-04-22 05:35:56.483450"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_504336


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.491388"], ["updated_at", "2020-04-22 05:35:56.491388"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.494394"], ["updated_at", "2020-04-22 05:35:56.494394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_759573


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.496314"], ["updated_at", "2020-04-22 05:35:56.496314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.496392"], ["updated_at", "2020-04-22 05:35:56.496392"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.499082"], ["updated_at", "2020-04-22 05:35:56.499082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.500914"], ["updated_at", "2020-04-22 05:35:56.500914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_994443


 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.509057"], ["updated_at", "2020-04-22 05:35:56.509057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.512755"], ["updated_at", "2020-04-22 05:35:56.512755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_962217


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.514813"], ["updated_at", "2020-04-22 05:35:56.514813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.515821"], ["updated_at", "2020-04-22 05:35:56.515821"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.518196"], ["updated_at", "2020-04-22 05:35:56.518196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.520553"], ["updated_at", "2020-04-22 05:35:56.520553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_277614


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.524998"], ["updated_at", "2020-04-22 05:35:56.524998"]]
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.527631"], ["updated_at", "2020-04-22 05:35:56.527631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_714525


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.530981"], ["updated_at", "2020-04-22 05:35:56.530981"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.531560"], ["updated_at", "2020-04-22 05:35:56.531560"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.534317"], ["updated_at", "2020-04-22 05:35:56.534317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_121574


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.537476"], ["updated_at", "2020-04-22 05:35:56.537476"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.540894"], ["updated_at", "2020-04-22 05:35:56.540894"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.544238"], ["updated_at", "2020-04-22 05:35:56.544238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.546188"], ["updated_at", "2020-04-22 05:35:56.546188"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_62065


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.548520"], ["updated_at", "2020-04-22 05:35:56.548520"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.551162"], ["updated_at", "2020-04-22 05:35:56.551162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_855052


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.555147"], ["updated_at", "2020-04-22 05:35:56.555147"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.556116"], ["updated_at", "2020-04-22 05:35:56.556116"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.559071"], ["updated_at", "2020-04-22 05:35:56.559071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.561006"], ["updated_at", "2020-04-22 05:35:56.561006"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_362622


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.565195"], ["updated_at", "2020-04-22 05:35:56.565195"]]
 (1.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.567601"], ["updated_at", "2020-04-22 05:35:56.567601"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.571544"], ["updated_at", "2020-04-22 05:35:56.571544"]]
 (0.1ms)  begin transaction

CommentTest: test_558675


 (1.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.582263"], ["updated_at", "2020-04-22 05:35:56.582263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.587180"], ["updated_at", "2020-04-22 05:35:56.587180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.589418"], ["updated_at", "2020-04-22 05:35:56.589418"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_93122


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.597596"], ["updated_at", "2020-04-22 05:35:56.597596"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_537994


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.599905"], ["updated_at", "2020-04-22 05:35:56.599905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.601756"], ["updated_at", "2020-04-22 05:35:56.601756"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.601555"], ["updated_at", "2020-04-22 05:35:56.601555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.606039"], ["updated_at", "2020-04-22 05:35:56.606039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.608333"], ["updated_at", "2020-04-22 05:35:56.608333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_998707


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.616380"], ["updated_at", "2020-04-22 05:35:56.616380"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.619141"], ["updated_at", "2020-04-22 05:35:56.619141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_390404


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.621433"], ["updated_at", "2020-04-22 05:35:56.621433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.624315"], ["updated_at", "2020-04-22 05:35:56.624315"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.626932"], ["updated_at", "2020-04-22 05:35:56.626932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.628932"], ["updated_at", "2020-04-22 05:35:56.628932"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_297679


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.631038"], ["updated_at", "2020-04-22 05:35:56.631038"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.633452"], ["updated_at", "2020-04-22 05:35:56.633452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.635328"], ["updated_at", "2020-04-22 05:35:56.635328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_258645


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.642311"], ["updated_at", "2020-04-22 05:35:56.642311"]]
 (0.1ms)  begin transaction

CommentTest: test_954620


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.644917"], ["updated_at", "2020-04-22 05:35:56.644917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.644757"], ["updated_at", "2020-04-22 05:35:56.644757"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.647216"], ["updated_at", "2020-04-22 05:35:56.647216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.646714"], ["updated_at", "2020-04-22 05:35:56.646714"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.649305"], ["updated_at", "2020-04-22 05:35:56.649305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_854111


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.662009"], ["updated_at", "2020-04-22 05:35:56.662009"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.664844"], ["updated_at", "2020-04-22 05:35:56.664844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.667840"], ["updated_at", "2020-04-22 05:35:56.667840"]]

CommentTest: test_922177


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.670348"], ["updated_at", "2020-04-22 05:35:56.670348"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.673507"], ["updated_at", "2020-04-22 05:35:56.673507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.676673"], ["updated_at", "2020-04-22 05:35:56.676673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_633212


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.680360"], ["updated_at", "2020-04-22 05:35:56.680360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.683166"], ["updated_at", "2020-04-22 05:35:56.683166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_161413


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.685057"], ["updated_at", "2020-04-22 05:35:56.685057"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.685432"], ["updated_at", "2020-04-22 05:35:56.685432"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.691771"], ["updated_at", "2020-04-22 05:35:56.691771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.693026"], ["updated_at", "2020-04-22 05:35:56.693026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_690028


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_257336


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.697319"], ["updated_at", "2020-04-22 05:35:56.697319"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.698659"], ["updated_at", "2020-04-22 05:35:56.698659"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.699751"], ["updated_at", "2020-04-22 05:35:56.699751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.700355"], ["updated_at", "2020-04-22 05:35:56.700355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.701998"], ["updated_at", "2020-04-22 05:35:56.701998"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.702012"], ["updated_at", "2020-04-22 05:35:56.702012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_443190


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.713606"], ["updated_at", "2020-04-22 05:35:56.713606"]]
 (0.1ms)  begin transaction

CommentTest: test_507002


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.715759"], ["updated_at", "2020-04-22 05:35:56.715759"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.715987"], ["updated_at", "2020-04-22 05:35:56.715987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.717408"], ["updated_at", "2020-04-22 05:35:56.717408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.717696"], ["updated_at", "2020-04-22 05:35:56.717696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.718724"], ["updated_at", "2020-04-22 05:35:56.718724"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_455714


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.725970"], ["updated_at", "2020-04-22 05:35:56.725970"]]
 (0.1ms)  begin transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.727943"], ["updated_at", "2020-04-22 05:35:56.727943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_416912


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.729137"], ["updated_at", "2020-04-22 05:35:56.729137"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.729255"], ["updated_at", "2020-04-22 05:35:56.729255"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.731547"], ["updated_at", "2020-04-22 05:35:56.731547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.733225"], ["updated_at", "2020-04-22 05:35:56.733225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_333056


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.738933"], ["updated_at", "2020-04-22 05:35:56.738933"]]
 (0.1ms)  begin transaction

CommentTest: test_694381


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.742039"], ["updated_at", "2020-04-22 05:35:56.742039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.744350"], ["updated_at", "2020-04-22 05:35:56.744350"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.743833"], ["updated_at", "2020-04-22 05:35:56.743833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.746704"], ["updated_at", "2020-04-22 05:35:56.746704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.748584"], ["updated_at", "2020-04-22 05:35:56.748584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_522578


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.754350"], ["updated_at", "2020-04-22 05:35:56.754350"]]
 (0.1ms)  begin transaction

CommentTest: test_948033


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.758129"], ["updated_at", "2020-04-22 05:35:56.758129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.759853"], ["updated_at", "2020-04-22 05:35:56.759853"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.759283"], ["updated_at", "2020-04-22 05:35:56.759283"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.762877"], ["updated_at", "2020-04-22 05:35:56.762877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_628045


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.766479"], ["updated_at", "2020-04-22 05:35:56.766479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.767522"], ["updated_at", "2020-04-22 05:35:56.767522"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.772111"], ["updated_at", "2020-04-22 05:35:56.772111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.774429"], ["updated_at", "2020-04-22 05:35:56.774429"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_546741


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_149196


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.784870"], ["updated_at", "2020-04-22 05:35:56.784870"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.788954"], ["updated_at", "2020-04-22 05:35:56.788954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.787934"], ["updated_at", "2020-04-22 05:35:56.787934"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.791050"], ["updated_at", "2020-04-22 05:35:56.791050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.791786"], ["updated_at", "2020-04-22 05:35:56.791786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.793742"], ["updated_at", "2020-04-22 05:35:56.793742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_636512


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.799397"], ["updated_at", "2020-04-22 05:35:56.799397"]]
 (0.1ms)  begin transaction

CommentTest: test_366846


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.801760"], ["updated_at", "2020-04-22 05:35:56.801760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.802797"], ["updated_at", "2020-04-22 05:35:56.802797"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.803903"], ["updated_at", "2020-04-22 05:35:56.803903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.805887"], ["updated_at", "2020-04-22 05:35:56.805887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.812087"], ["updated_at", "2020-04-22 05:35:56.812087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_998547


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.815155"], ["updated_at", "2020-04-22 05:35:56.815155"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.817938"], ["updated_at", "2020-04-22 05:35:56.817938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.820103"], ["updated_at", "2020-04-22 05:35:56.820103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_2840


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.824071"], ["updated_at", "2020-04-22 05:35:56.824071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.826840"], ["updated_at", "2020-04-22 05:35:56.826840"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_20148


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.829391"], ["updated_at", "2020-04-22 05:35:56.829391"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.829999"], ["updated_at", "2020-04-22 05:35:56.829999"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.832296"], ["updated_at", "2020-04-22 05:35:56.832296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.834311"], ["updated_at", "2020-04-22 05:35:56.834311"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_752167


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.837675"], ["updated_at", "2020-04-22 05:35:56.837675"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.841630"], ["updated_at", "2020-04-22 05:35:56.841630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_88917


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.843361"], ["updated_at", "2020-04-22 05:35:56.843361"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.843899"], ["updated_at", "2020-04-22 05:35:56.843899"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.847360"], ["updated_at", "2020-04-22 05:35:56.847360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.857738"], ["updated_at", "2020-04-22 05:35:56.857738"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_795951


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.871533"], ["updated_at", "2020-04-22 05:35:56.871533"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.881271"], ["updated_at", "2020-04-22 05:35:56.881271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.888363"], ["updated_at", "2020-04-22 05:35:56.888363"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_6410


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.897873"], ["updated_at", "2020-04-22 05:35:56.897873"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.915695"], ["updated_at", "2020-04-22 05:35:56.915695"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.925092"], ["updated_at", "2020-04-22 05:35:56.925092"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_837483


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.942838"], ["updated_at", "2020-04-22 05:35:56.942838"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.951981"], ["updated_at", "2020-04-22 05:35:56.951981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_250411


 (0.3ms)  SAVEPOINT active_record_1
Course Create (12.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:56.967649"], ["updated_at", "2020-04-22 05:35:56.967649"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:56.998942"], ["updated_at", "2020-04-22 05:35:56.998942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:56.962316"], ["updated_at", "2020-04-22 05:35:56.962316"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.012968"], ["updated_at", "2020-04-22 05:35:57.012968"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_13907


 (0.3ms)  SAVEPOINT active_record_1
 (14.3ms)  rollback transaction
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.048720"], ["updated_at", "2020-04-22 05:35:57.048720"]]
 (0.2ms)  begin transaction

CommentTest: test_111528


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.059284"], ["updated_at", "2020-04-22 05:35:57.059284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.8ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.071924"], ["updated_at", "2020-04-22 05:35:57.071924"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.070216"], ["updated_at", "2020-04-22 05:35:57.070216"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.093116"], ["updated_at", "2020-04-22 05:35:57.093116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.113780"], ["updated_at", "2020-04-22 05:35:57.113780"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (16.6ms)  rollback transaction
 (13.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_749305


 (0.2ms)  begin transaction

CommentTest: test_149656


 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.174880"], ["updated_at", "2020-04-22 05:35:57.174880"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.178649"], ["updated_at", "2020-04-22 05:35:57.178649"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.192345"], ["updated_at", "2020-04-22 05:35:57.192345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.184902"], ["updated_at", "2020-04-22 05:35:57.184902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.198926"], ["updated_at", "2020-04-22 05:35:57.198926"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (7.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.202123"], ["updated_at", "2020-04-22 05:35:57.202123"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.3ms)  SAVEPOINT active_record_1
Comment Create (7.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (8.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_27750


 (5.7ms)  begin transaction

CommentTest: test_833078


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.293319"], ["updated_at", "2020-04-22 05:35:57.293319"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.297385"], ["updated_at", "2020-04-22 05:35:57.297385"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.305165"], ["updated_at", "2020-04-22 05:35:57.305165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.308346"], ["updated_at", "2020-04-22 05:35:57.308346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.318163"], ["updated_at", "2020-04-22 05:35:57.318163"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.317624"], ["updated_at", "2020-04-22 05:35:57.317624"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_133767


 (2.9ms)  begin transaction

CommentTest: test_441330


 (0.3ms)  SAVEPOINT active_record_1
 (8.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.390749"], ["updated_at", "2020-04-22 05:35:57.390749"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.384543"], ["updated_at", "2020-04-22 05:35:57.384543"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.401077"], ["updated_at", "2020-04-22 05:35:57.401077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.419443"], ["updated_at", "2020-04-22 05:35:57.419443"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (6.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.418785"], ["updated_at", "2020-04-22 05:35:57.418785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (6.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.434179"], ["updated_at", "2020-04-22 05:35:57.434179"]]
 (1.2ms)  SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_446271


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.472241"], ["updated_at", "2020-04-22 05:35:57.472241"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.496831"], ["updated_at", "2020-04-22 05:35:57.496831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (8.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.505238"], ["updated_at", "2020-04-22 05:35:57.505238"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_516588


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.527703"], ["updated_at", "2020-04-22 05:35:57.527703"]]
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.537334"], ["updated_at", "2020-04-22 05:35:57.537334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (9.1ms)  rollback transaction
Recording Create (9.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.546973"], ["updated_at", "2020-04-22 05:35:57.546973"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_760258


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.571827"], ["updated_at", "2020-04-22 05:35:57.571827"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_582669


Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.587926"], ["updated_at", "2020-04-22 05:35:57.587926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.598942"], ["updated_at", "2020-04-22 05:35:57.598942"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.601062"], ["updated_at", "2020-04-22 05:35:57.601062"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.608814"], ["updated_at", "2020-04-22 05:35:57.608814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_172932


Recording Create (10.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.615655"], ["updated_at", "2020-04-22 05:35:57.615655"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.650759"], ["updated_at", "2020-04-22 05:35:57.650759"]]
 (4.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_959190


Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.677129"], ["updated_at", "2020-04-22 05:35:57.677129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.694940"], ["updated_at", "2020-04-22 05:35:57.694940"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.686244"], ["updated_at", "2020-04-22 05:35:57.686244"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.701119"], ["updated_at", "2020-04-22 05:35:57.701119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.709480"], ["updated_at", "2020-04-22 05:35:57.709480"]]
 (0.2ms)  begin transaction

CommentTest: test_688355


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.720026"], ["updated_at", "2020-04-22 05:35:57.720026"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.744004"], ["updated_at", "2020-04-22 05:35:57.744004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.756562"], ["updated_at", "2020-04-22 05:35:57.756562"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.1ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_627713


 (3.0ms)  begin transaction

CommentTest: test_200564


 (1.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.806317"], ["updated_at", "2020-04-22 05:35:57.806317"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.800468"], ["updated_at", "2020-04-22 05:35:57.800468"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.817492"], ["updated_at", "2020-04-22 05:35:57.817492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.829550"], ["updated_at", "2020-04-22 05:35:57.829550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (9.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.825680"], ["updated_at", "2020-04-22 05:35:57.825680"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.840356"], ["updated_at", "2020-04-22 05:35:57.840356"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (10.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_235946


 (0.2ms)  begin transaction

CommentTest: test_498365


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.882127"], ["updated_at", "2020-04-22 05:35:57.882127"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.882533"], ["updated_at", "2020-04-22 05:35:57.882533"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.898800"], ["updated_at", "2020-04-22 05:35:57.898800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.914031"], ["updated_at", "2020-04-22 05:35:57.914031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.907233"], ["updated_at", "2020-04-22 05:35:57.907233"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:57.921070"], ["updated_at", "2020-04-22 05:35:57.921070"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_554369


 (0.2ms)  begin transaction

CommentTest: test_422243


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.963107"], ["updated_at", "2020-04-22 05:35:57.963107"]]
Course Create (14.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:57.962465"], ["updated_at", "2020-04-22 05:35:57.962465"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.994106"], ["updated_at", "2020-04-22 05:35:57.994106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (16.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:57.993788"], ["updated_at", "2020-04-22 05:35:57.993788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.018598"], ["updated_at", "2020-04-22 05:35:58.018598"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.017639"], ["updated_at", "2020-04-22 05:35:58.017639"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  SAVEPOINT active_record_1
 (9.1ms)  rollback transaction
Comment Create (5.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_862125


 (15.9ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.082652"], ["updated_at", "2020-04-22 05:35:58.082652"]]
 (0.3ms)  begin transaction

CommentTest: test_273252


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.098212"], ["updated_at", "2020-04-22 05:35:58.098212"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.101292"], ["updated_at", "2020-04-22 05:35:58.101292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.111414"], ["updated_at", "2020-04-22 05:35:58.111414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.116413"], ["updated_at", "2020-04-22 05:35:58.116413"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.118206"], ["updated_at", "2020-04-22 05:35:58.118206"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (28.5ms)  rollback transaction
 (23.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_440603


 (0.2ms)  begin transaction

CommentTest: test_695936


 (0.3ms)  SAVEPOINT active_record_1
 (2.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.199292"], ["updated_at", "2020-04-22 05:35:58.199292"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.197303"], ["updated_at", "2020-04-22 05:35:58.197303"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.209556"], ["updated_at", "2020-04-22 05:35:58.209556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.218397"], ["updated_at", "2020-04-22 05:35:58.218397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.225721"], ["updated_at", "2020-04-22 05:35:58.225721"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.221732"], ["updated_at", "2020-04-22 05:35:58.221732"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (6.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_322373


 (0.2ms)  begin transaction

CommentTest: test_920981


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.273654"], ["updated_at", "2020-04-22 05:35:58.273654"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.278803"], ["updated_at", "2020-04-22 05:35:58.278803"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.283010"], ["updated_at", "2020-04-22 05:35:58.283010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.287708"], ["updated_at", "2020-04-22 05:35:58.287708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.295506"], ["updated_at", "2020-04-22 05:35:58.295506"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (9.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.292516"], ["updated_at", "2020-04-22 05:35:58.292516"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_143484


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.356532"], ["updated_at", "2020-04-22 05:35:58.356532"]]
 (0.2ms)  begin transaction

CommentTest: test_19099


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.370150"], ["updated_at", "2020-04-22 05:35:58.370150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.376590"], ["updated_at", "2020-04-22 05:35:58.376590"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.394000"], ["updated_at", "2020-04-22 05:35:58.394000"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.421406"], ["updated_at", "2020-04-22 05:35:58.421406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.431934"], ["updated_at", "2020-04-22 05:35:58.431934"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_566659


 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.466661"], ["updated_at", "2020-04-22 05:35:58.466661"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.479725"], ["updated_at", "2020-04-22 05:35:58.479725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_862752


 (0.3ms)  SAVEPOINT active_record_1
Course Create (15.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.499056"], ["updated_at", "2020-04-22 05:35:58.499056"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.508305"], ["updated_at", "2020-04-22 05:35:58.508305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.526173"], ["updated_at", "2020-04-22 05:35:58.526173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.533434"], ["updated_at", "2020-04-22 05:35:58.533434"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.3ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_486907


 (0.2ms)  begin transaction

CommentTest: test_391061


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.669504"], ["updated_at", "2020-04-22 05:35:58.669504"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.682918"], ["updated_at", "2020-04-22 05:35:58.682918"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.690598"], ["updated_at", "2020-04-22 05:35:58.690598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.694563"], ["updated_at", "2020-04-22 05:35:58.694563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.702341"], ["updated_at", "2020-04-22 05:35:58.702341"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (8.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.768038"], ["updated_at", "2020-04-22 05:35:58.768038"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_853264


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.841013"], ["updated_at", "2020-04-22 05:35:58.841013"]]
 (0.3ms)  begin transaction

CommentTest: test_409349


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.859487"], ["updated_at", "2020-04-22 05:35:58.859487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.860930"], ["updated_at", "2020-04-22 05:35:58.860930"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.867258"], ["updated_at", "2020-04-22 05:35:58.867258"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.870191"], ["updated_at", "2020-04-22 05:35:58.870191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.883509"], ["updated_at", "2020-04-22 05:35:58.883509"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_959211


 (5.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_520078


Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.900304"], ["updated_at", "2020-04-22 05:35:58.900304"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:58.925933"], ["updated_at", "2020-04-22 05:35:58.925933"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.927260"], ["updated_at", "2020-04-22 05:35:58.927260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:58.950824"], ["updated_at", "2020-04-22 05:35:58.950824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.950798"], ["updated_at", "2020-04-22 05:35:58.950798"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:58.958741"], ["updated_at", "2020-04-22 05:35:58.958741"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (16.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_876374


 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.032839"], ["updated_at", "2020-04-22 05:35:59.032839"]]
 (0.2ms)  begin transaction

CommentTest: test_328358


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.043494"], ["updated_at", "2020-04-22 05:35:59.043494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.047794"], ["updated_at", "2020-04-22 05:35:59.047794"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.062972"], ["updated_at", "2020-04-22 05:35:59.062972"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.066284"], ["updated_at", "2020-04-22 05:35:59.066284"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.071878"], ["updated_at", "2020-04-22 05:35:59.071878"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_861496


 (0.2ms)  begin transaction

CommentTest: test_924108


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.106079"], ["updated_at", "2020-04-22 05:35:59.106079"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.109341"], ["updated_at", "2020-04-22 05:35:59.109341"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.119313"], ["updated_at", "2020-04-22 05:35:59.119313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.121269"], ["updated_at", "2020-04-22 05:35:59.121269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.128648"], ["updated_at", "2020-04-22 05:35:59.128648"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.134118"], ["updated_at", "2020-04-22 05:35:59.134118"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_683117


 (0.2ms)  begin transaction

CommentTest: test_970141


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.190687"], ["updated_at", "2020-04-22 05:35:59.190687"]]
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.184012"], ["updated_at", "2020-04-22 05:35:59.184012"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.201081"], ["updated_at", "2020-04-22 05:35:59.201081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.211590"], ["updated_at", "2020-04-22 05:35:59.211590"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.206460"], ["updated_at", "2020-04-22 05:35:59.206460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.228505"], ["updated_at", "2020-04-22 05:35:59.228505"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_58086

 (0.2ms)  RELEASE SAVEPOINT active_record_1

 (2.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_58054


Course Create (10.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.254448"], ["updated_at", "2020-04-22 05:35:59.254448"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.275730"], ["updated_at", "2020-04-22 05:35:59.275730"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.273432"], ["updated_at", "2020-04-22 05:35:59.273432"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.282828"], ["updated_at", "2020-04-22 05:35:59.282828"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.287469"], ["updated_at", "2020-04-22 05:35:59.287469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.294679"], ["updated_at", "2020-04-22 05:35:59.294679"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_612264


 (2.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_966801


Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.327479"], ["updated_at", "2020-04-22 05:35:59.327479"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.337979"], ["updated_at", "2020-04-22 05:35:59.337979"]]
Bucket Create (5.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.339597"], ["updated_at", "2020-04-22 05:35:59.339597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.351819"], ["updated_at", "2020-04-22 05:35:59.351819"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.350077"], ["updated_at", "2020-04-22 05:35:59.350077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.366057"], ["updated_at", "2020-04-22 05:35:59.366057"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_983167


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.393916"], ["updated_at", "2020-04-22 05:35:59.393916"]]
 (16.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_635367


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.444571"], ["updated_at", "2020-04-22 05:35:59.444571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.444430"], ["updated_at", "2020-04-22 05:35:59.444430"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.451254"], ["updated_at", "2020-04-22 05:35:59.451254"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.455493"], ["updated_at", "2020-04-22 05:35:59.455493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.461995"], ["updated_at", "2020-04-22 05:35:59.461995"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (8.8ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (1.8ms)  rollback transaction

CommentTest: test_103649


 (0.7ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.503637"], ["updated_at", "2020-04-22 05:35:59.503637"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.515039"], ["updated_at", "2020-04-22 05:35:59.515039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  begin transaction

CommentTest: test_392614


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.525735"], ["updated_at", "2020-04-22 05:35:59.525735"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.524382"], ["updated_at", "2020-04-22 05:35:59.524382"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.532983"], ["updated_at", "2020-04-22 05:35:59.532983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.541830"], ["updated_at", "2020-04-22 05:35:59.541830"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_132898


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_418431


Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.584645"], ["updated_at", "2020-04-22 05:35:59.584645"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.592939"], ["updated_at", "2020-04-22 05:35:59.592939"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.596821"], ["updated_at", "2020-04-22 05:35:59.596821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.609882"], ["updated_at", "2020-04-22 05:35:59.609882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.612383"], ["updated_at", "2020-04-22 05:35:59.612383"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.616486"], ["updated_at", "2020-04-22 05:35:59.616486"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_40568


 (4.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.677025"], ["updated_at", "2020-04-22 05:35:59.677025"]]
 (0.2ms)  begin transaction

CommentTest: test_204128


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.688554"], ["updated_at", "2020-04-22 05:35:59.688554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.690554"], ["updated_at", "2020-04-22 05:35:59.690554"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.697223"], ["updated_at", "2020-04-22 05:35:59.697223"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.700678"], ["updated_at", "2020-04-22 05:35:59.700678"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.707924"], ["updated_at", "2020-04-22 05:35:59.707924"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (5.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_926126


 (3.2ms)  begin transaction

CommentTest: test_335698


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.746377"], ["updated_at", "2020-04-22 05:35:59.746377"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.754329"], ["updated_at", "2020-04-22 05:35:59.754329"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.759333"], ["updated_at", "2020-04-22 05:35:59.759333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.766787"], ["updated_at", "2020-04-22 05:35:59.766787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.767722"], ["updated_at", "2020-04-22 05:35:59.767722"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.775266"], ["updated_at", "2020-04-22 05:35:59.775266"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.8ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_174817


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.801103"], ["updated_at", "2020-04-22 05:35:59.801103"]]
Bucket Create (4.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.831439"], ["updated_at", "2020-04-22 05:35:59.831439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.853161"], ["updated_at", "2020-04-22 05:35:59.853161"]]
 (2.6ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_701631


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.865996"], ["updated_at", "2020-04-22 05:35:59.865996"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.878018"], ["updated_at", "2020-04-22 05:35:59.878018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.887724"], ["updated_at", "2020-04-22 05:35:59.887724"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_420318


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.911730"], ["updated_at", "2020-04-22 05:35:59.911730"]]
 (0.7ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.926747"], ["updated_at", "2020-04-22 05:35:59.926747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_75293


Recording Create (8.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.938907"], ["updated_at", "2020-04-22 05:35:59.938907"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:35:59.951693"], ["updated_at", "2020-04-22 05:35:59.951693"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:35:59.969236"], ["updated_at", "2020-04-22 05:35:59.969236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:35:59.983377"], ["updated_at", "2020-04-22 05:35:59.983377"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (16.8ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_878747


Comment Create (10.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.032023"], ["updated_at", "2020-04-22 05:36:00.032023"]]
 (0.3ms)  begin transaction

CommentTest: test_531239


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.047405"], ["updated_at", "2020-04-22 05:36:00.047405"]]
Bucket Create (6.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.042287"], ["updated_at", "2020-04-22 05:36:00.042287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.063754"], ["updated_at", "2020-04-22 05:36:00.063754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.069510"], ["updated_at", "2020-04-22 05:36:00.069510"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.090356"], ["updated_at", "2020-04-22 05:36:00.090356"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_177976


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.110552"], ["updated_at", "2020-04-22 05:36:00.110552"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.121765"], ["updated_at", "2020-04-22 05:36:00.121765"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_136314


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.140064"], ["updated_at", "2020-04-22 05:36:00.140064"]]
Recording Create (8.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.140483"], ["updated_at", "2020-04-22 05:36:00.140483"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.151488"], ["updated_at", "2020-04-22 05:36:00.151488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.167285"], ["updated_at", "2020-04-22 05:36:00.167285"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_112947


 (1.7ms)  begin transaction

CommentTest: test_902221


 (1.9ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.205844"], ["updated_at", "2020-04-22 05:36:00.205844"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.217878"], ["updated_at", "2020-04-22 05:36:00.217878"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.230326"], ["updated_at", "2020-04-22 05:36:00.230326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.235261"], ["updated_at", "2020-04-22 05:36:00.235261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.237521"], ["updated_at", "2020-04-22 05:36:00.237521"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (7.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_398672


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.288643"], ["updated_at", "2020-04-22 05:36:00.288643"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.256176"], ["updated_at", "2020-04-22 05:36:00.256176"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.318338"], ["updated_at", "2020-04-22 05:36:00.318338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (7.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.326826"], ["updated_at", "2020-04-22 05:36:00.326826"]]
 (1.9ms)  rollback transaction
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_11211


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.359354"], ["updated_at", "2020-04-22 05:36:00.359354"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.368138"], ["updated_at", "2020-04-22 05:36:00.368138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.383981"], ["updated_at", "2020-04-22 05:36:00.383981"]]
 (0.2ms)  begin transaction

CommentTest: test_697955


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.392762"], ["updated_at", "2020-04-22 05:36:00.392762"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.408770"], ["updated_at", "2020-04-22 05:36:00.408770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.417990"], ["updated_at", "2020-04-22 05:36:00.417990"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (1.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_506480


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.450623"], ["updated_at", "2020-04-22 05:36:00.450623"]]
 (10.0ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.469735"], ["updated_at", "2020-04-22 05:36:00.469735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_421533


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.480419"], ["updated_at", "2020-04-22 05:36:00.480419"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.490186"], ["updated_at", "2020-04-22 05:36:00.490186"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.504628"], ["updated_at", "2020-04-22 05:36:00.504628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.517577"], ["updated_at", "2020-04-22 05:36:00.517577"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (20.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_131983


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.547495"], ["updated_at", "2020-04-22 05:36:00.547495"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (66.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.558760"], ["updated_at", "2020-04-22 05:36:00.558760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_60886


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.642118"], ["updated_at", "2020-04-22 05:36:00.642118"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.642185"], ["updated_at", "2020-04-22 05:36:00.642185"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.654017"], ["updated_at", "2020-04-22 05:36:00.654017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.671086"], ["updated_at", "2020-04-22 05:36:00.671086"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.6ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_392072


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.698702"], ["updated_at", "2020-04-22 05:36:00.698702"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (12.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.708210"], ["updated_at", "2020-04-22 05:36:00.708210"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.723090"], ["updated_at", "2020-04-22 05:36:00.723090"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_248251


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.735870"], ["updated_at", "2020-04-22 05:36:00.735870"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (11.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.747340"], ["updated_at", "2020-04-22 05:36:00.747340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.793336"], ["updated_at", "2020-04-22 05:36:00.793336"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (184.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_369545


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.946608"], ["updated_at", "2020-04-22 05:36:00.946608"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_127169


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:00.966987"], ["updated_at", "2020-04-22 05:36:00.966987"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:00.959892"], ["updated_at", "2020-04-22 05:36:00.959892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:00.979101"], ["updated_at", "2020-04-22 05:36:00.979101"]]
 (9.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (9.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.020773"], ["updated_at", "2020-04-22 05:36:01.020773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.042661"], ["updated_at", "2020-04-22 05:36:01.042661"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_719936


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.059957"], ["updated_at", "2020-04-22 05:36:01.059957"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.072188"], ["updated_at", "2020-04-22 05:36:01.072188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_527012


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.081439"], ["updated_at", "2020-04-22 05:36:01.081439"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.093022"], ["updated_at", "2020-04-22 05:36:01.093022"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.120293"], ["updated_at", "2020-04-22 05:36:01.120293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.135194"], ["updated_at", "2020-04-22 05:36:01.135194"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_981680


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.169636"], ["updated_at", "2020-04-22 05:36:01.169636"]]
 (2.4ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.183547"], ["updated_at", "2020-04-22 05:36:01.183547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_357814


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.191534"], ["updated_at", "2020-04-22 05:36:01.191534"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.198633"], ["updated_at", "2020-04-22 05:36:01.198633"]]
Bucket Load (3.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.207303"], ["updated_at", "2020-04-22 05:36:01.207303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.213888"], ["updated_at", "2020-04-22 05:36:01.213888"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_810299


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.253152"], ["updated_at", "2020-04-22 05:36:01.253152"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.268535"], ["updated_at", "2020-04-22 05:36:01.268535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_219708


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.294981"], ["updated_at", "2020-04-22 05:36:01.294981"]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.305529"], ["updated_at", "2020-04-22 05:36:01.305529"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.307962"], ["updated_at", "2020-04-22 05:36:01.307962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.331631"], ["updated_at", "2020-04-22 05:36:01.331631"]]
 (2.4ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  begin transaction

CommentTest: test_515796


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.356266"], ["updated_at", "2020-04-22 05:36:01.356266"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.367071"], ["updated_at", "2020-04-22 05:36:01.367071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_985381


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.387647"], ["updated_at", "2020-04-22 05:36:01.387647"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.387129"], ["updated_at", "2020-04-22 05:36:01.387129"]]
 (8.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.402296"], ["updated_at", "2020-04-22 05:36:01.402296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.429216"], ["updated_at", "2020-04-22 05:36:01.429216"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_109299


 (0.3ms)  SAVEPOINT active_record_1
 (37.6ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.469510"], ["updated_at", "2020-04-22 05:36:01.469510"]]
 (0.4ms)  begin transaction

CommentTest: test_955001


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.507075"], ["updated_at", "2020-04-22 05:36:01.507075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.6ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.510099"], ["updated_at", "2020-04-22 05:36:01.510099"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.518015"], ["updated_at", "2020-04-22 05:36:01.518015"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.532340"], ["updated_at", "2020-04-22 05:36:01.532340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.538645"], ["updated_at", "2020-04-22 05:36:01.538645"]]
 (2.5ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  SAVEPOINT active_record_1
 (11.5ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (6.6ms)  begin transaction

CommentTest: test_689365


 (0.2ms)  SAVEPOINT active_record_1
 (7.6ms)  begin transaction

CommentTest: test_195968


Course Create (21.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.588631"], ["updated_at", "2020-04-22 05:36:01.588631"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.618406"], ["updated_at", "2020-04-22 05:36:01.618406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (24.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.614972"], ["updated_at", "2020-04-22 05:36:01.614972"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.642746"], ["updated_at", "2020-04-22 05:36:01.642746"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.645878"], ["updated_at", "2020-04-22 05:36:01.645878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.672788"], ["updated_at", "2020-04-22 05:36:01.672788"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  SAVEPOINT active_record_1
 (12.5ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_371946


Comment Create (107.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (18.3ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.5ms)  SAVEPOINT active_record_1

CommentTest: test_499227


Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.815491"], ["updated_at", "2020-04-22 05:36:01.815491"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.855001"], ["updated_at", "2020-04-22 05:36:01.855001"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.862277"], ["updated_at", "2020-04-22 05:36:01.862277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.866532"], ["updated_at", "2020-04-22 05:36:01.866532"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.873289"], ["updated_at", "2020-04-22 05:36:01.873289"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (7.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.873281"], ["updated_at", "2020-04-22 05:36:01.873281"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_642123


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.907561"], ["updated_at", "2020-04-22 05:36:01.907561"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.920915"], ["updated_at", "2020-04-22 05:36:01.920915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.931673"], ["updated_at", "2020-04-22 05:36:01.931673"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_635913


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.969697"], ["updated_at", "2020-04-22 05:36:01.969697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.972666"], ["updated_at", "2020-04-22 05:36:01.972666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.974730"], ["updated_at", "2020-04-22 05:36:01.974730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_276261


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.985246"], ["updated_at", "2020-04-22 05:36:01.985246"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:01.988707"], ["updated_at", "2020-04-22 05:36:01.988707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:01.990734"], ["updated_at", "2020-04-22 05:36:01.990734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_79131


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_112706


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:01.998453"], ["updated_at", "2020-04-22 05:36:01.998453"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.000876"], ["updated_at", "2020-04-22 05:36:02.000876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.000626"], ["updated_at", "2020-04-22 05:36:02.000626"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.002879"], ["updated_at", "2020-04-22 05:36:02.002879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.005577"], ["updated_at", "2020-04-22 05:36:02.005577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.007456"], ["updated_at", "2020-04-22 05:36:02.007456"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_779359


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.010185"], ["updated_at", "2020-04-22 05:36:02.010185"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.013599"], ["updated_at", "2020-04-22 05:36:02.013599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.015596"], ["updated_at", "2020-04-22 05:36:02.015596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_906255


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_218334


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.024580"], ["updated_at", "2020-04-22 05:36:02.024580"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.027110"], ["updated_at", "2020-04-22 05:36:02.027110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.028412"], ["updated_at", "2020-04-22 05:36:02.028412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.026468"], ["updated_at", "2020-04-22 05:36:02.026468"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.031184"], ["updated_at", "2020-04-22 05:36:02.031184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.033276"], ["updated_at", "2020-04-22 05:36:02.033276"]]
 (0.1ms)  begin transaction

CommentTest: test_408898


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.037406"], ["updated_at", "2020-04-22 05:36:02.037406"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.039750"], ["updated_at", "2020-04-22 05:36:02.039750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.041447"], ["updated_at", "2020-04-22 05:36:02.041447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_712892


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.045285"], ["updated_at", "2020-04-22 05:36:02.045285"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.047904"], ["updated_at", "2020-04-22 05:36:02.047904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.064513"], ["updated_at", "2020-04-22 05:36:02.064513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_767017


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.067730"], ["updated_at", "2020-04-22 05:36:02.067730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.071966"], ["updated_at", "2020-04-22 05:36:02.071966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.073528"], ["updated_at", "2020-04-22 05:36:02.073528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_646607


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.081264"], ["updated_at", "2020-04-22 05:36:02.081264"]]
 (0.1ms)  begin transaction

CommentTest: test_948461


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.084815"], ["updated_at", "2020-04-22 05:36:02.084815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.085452"], ["updated_at", "2020-04-22 05:36:02.085452"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.087012"], ["updated_at", "2020-04-22 05:36:02.087012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.088040"], ["updated_at", "2020-04-22 05:36:02.088040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.090646"], ["updated_at", "2020-04-22 05:36:02.090646"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_505918


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.095810"], ["updated_at", "2020-04-22 05:36:02.095810"]]
 (0.1ms)  begin transaction

CommentTest: test_769755


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.100902"], ["updated_at", "2020-04-22 05:36:02.100902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.104488"], ["updated_at", "2020-04-22 05:36:02.104488"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.102242"], ["updated_at", "2020-04-22 05:36:02.102242"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.108002"], ["updated_at", "2020-04-22 05:36:02.108002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_282145


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.112053"], ["updated_at", "2020-04-22 05:36:02.112053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.114785"], ["updated_at", "2020-04-22 05:36:02.114785"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.117611"], ["updated_at", "2020-04-22 05:36:02.117611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_698618


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.120592"], ["updated_at", "2020-04-22 05:36:02.120592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.122351"], ["updated_at", "2020-04-22 05:36:02.122351"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.125042"], ["updated_at", "2020-04-22 05:36:02.125042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.127183"], ["updated_at", "2020-04-22 05:36:02.127183"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_414768


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.131549"], ["updated_at", "2020-04-22 05:36:02.131549"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.134310"], ["updated_at", "2020-04-22 05:36:02.134310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_967567


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.136674"], ["updated_at", "2020-04-22 05:36:02.136674"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.141189"], ["updated_at", "2020-04-22 05:36:02.141189"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.143023"], ["updated_at", "2020-04-22 05:36:02.143023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.145096"], ["updated_at", "2020-04-22 05:36:02.145096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_659321


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.149296"], ["updated_at", "2020-04-22 05:36:02.149296"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.151688"], ["updated_at", "2020-04-22 05:36:02.151688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_787303

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.157319"], ["updated_at", "2020-04-22 05:36:02.157319"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.159176"], ["updated_at", "2020-04-22 05:36:02.159176"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.164450"], ["updated_at", "2020-04-22 05:36:02.164450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_120663


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.166538"], ["updated_at", "2020-04-22 05:36:02.166538"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.168071"], ["updated_at", "2020-04-22 05:36:02.168071"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.171149"], ["updated_at", "2020-04-22 05:36:02.171149"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.173071"], ["updated_at", "2020-04-22 05:36:02.173071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_805655


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.176222"], ["updated_at", "2020-04-22 05:36:02.176222"]]
 (0.1ms)  begin transaction

CommentTest: test_182887


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.181045"], ["updated_at", "2020-04-22 05:36:02.181045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.182189"], ["updated_at", "2020-04-22 05:36:02.182189"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.183820"], ["updated_at", "2020-04-22 05:36:02.183820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.185424"], ["updated_at", "2020-04-22 05:36:02.185424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.188392"], ["updated_at", "2020-04-22 05:36:02.188392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_74919


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.193032"], ["updated_at", "2020-04-22 05:36:02.193032"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.196144"], ["updated_at", "2020-04-22 05:36:02.196144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_173088


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.198211"], ["updated_at", "2020-04-22 05:36:02.198211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.199594"], ["updated_at", "2020-04-22 05:36:02.199594"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.203192"], ["updated_at", "2020-04-22 05:36:02.203192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.205886"], ["updated_at", "2020-04-22 05:36:02.205886"]]
 (0.1ms)  begin transaction

CommentTest: test_59437


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.209035"], ["updated_at", "2020-04-22 05:36:02.209035"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.213686"], ["updated_at", "2020-04-22 05:36:02.213686"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.215020"], ["updated_at", "2020-04-22 05:36:02.215020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_703124


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.219694"], ["updated_at", "2020-04-22 05:36:02.219694"]]
 (0.1ms)  begin transaction

CommentTest: test_634211


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.222749"], ["updated_at", "2020-04-22 05:36:02.222749"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.224086"], ["updated_at", "2020-04-22 05:36:02.224086"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.224836"], ["updated_at", "2020-04-22 05:36:02.224836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.231230"], ["updated_at", "2020-04-22 05:36:02.231230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.233335"], ["updated_at", "2020-04-22 05:36:02.233335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_835051


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.238980"], ["updated_at", "2020-04-22 05:36:02.238980"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.241660"], ["updated_at", "2020-04-22 05:36:02.241660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_564782


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.244136"], ["updated_at", "2020-04-22 05:36:02.244136"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.244637"], ["updated_at", "2020-04-22 05:36:02.244637"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.251773"], ["updated_at", "2020-04-22 05:36:02.251773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.253818"], ["updated_at", "2020-04-22 05:36:02.253818"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_916681


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.257005"], ["updated_at", "2020-04-22 05:36:02.257005"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.260777"], ["updated_at", "2020-04-22 05:36:02.260777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_77232


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.264812"], ["updated_at", "2020-04-22 05:36:02.264812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.266195"], ["updated_at", "2020-04-22 05:36:02.266195"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.269277"], ["updated_at", "2020-04-22 05:36:02.269277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.272057"], ["updated_at", "2020-04-22 05:36:02.272057"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_515914


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_602606


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.278793"], ["updated_at", "2020-04-22 05:36:02.278793"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.281643"], ["updated_at", "2020-04-22 05:36:02.281643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.281327"], ["updated_at", "2020-04-22 05:36:02.281327"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.283792"], ["updated_at", "2020-04-22 05:36:02.283792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.283736"], ["updated_at", "2020-04-22 05:36:02.283736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.285870"], ["updated_at", "2020-04-22 05:36:02.285870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_65972


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.292980"], ["updated_at", "2020-04-22 05:36:02.292980"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.297687"], ["updated_at", "2020-04-22 05:36:02.297687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.301182"], ["updated_at", "2020-04-22 05:36:02.301182"]]
 (0.1ms)  begin transaction

CommentTest: test_202264


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.304086"], ["updated_at", "2020-04-22 05:36:02.304086"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.306542"], ["updated_at", "2020-04-22 05:36:02.306542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.308542"], ["updated_at", "2020-04-22 05:36:02.308542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_256658


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.314032"], ["updated_at", "2020-04-22 05:36:02.314032"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.317208"], ["updated_at", "2020-04-22 05:36:02.317208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_634191


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.320929"], ["updated_at", "2020-04-22 05:36:02.320929"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.321864"], ["updated_at", "2020-04-22 05:36:02.321864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.323715"], ["updated_at", "2020-04-22 05:36:02.323715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.325843"], ["updated_at", "2020-04-22 05:36:02.325843"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811707


 (0.1ms)  begin transaction

CommentTest: test_781049


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.335359"], ["updated_at", "2020-04-22 05:36:02.335359"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.336332"], ["updated_at", "2020-04-22 05:36:02.336332"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.338627"], ["updated_at", "2020-04-22 05:36:02.338627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.338369"], ["updated_at", "2020-04-22 05:36:02.338369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.340338"], ["updated_at", "2020-04-22 05:36:02.340338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.342197"], ["updated_at", "2020-04-22 05:36:02.342197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_510636


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.350159"], ["updated_at", "2020-04-22 05:36:02.350159"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.352748"], ["updated_at", "2020-04-22 05:36:02.352748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_996643


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.355915"], ["updated_at", "2020-04-22 05:36:02.355915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.355986"], ["updated_at", "2020-04-22 05:36:02.355986"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.358737"], ["updated_at", "2020-04-22 05:36:02.358737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.362183"], ["updated_at", "2020-04-22 05:36:02.362183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_298104


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.366221"], ["updated_at", "2020-04-22 05:36:02.366221"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.369643"], ["updated_at", "2020-04-22 05:36:02.369643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_693058


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.371918"], ["updated_at", "2020-04-22 05:36:02.371918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.373436"], ["updated_at", "2020-04-22 05:36:02.373436"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.380198"], ["updated_at", "2020-04-22 05:36:02.380198"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_373996


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.382445"], ["updated_at", "2020-04-22 05:36:02.382445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.383697"], ["updated_at", "2020-04-22 05:36:02.383697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.386280"], ["updated_at", "2020-04-22 05:36:02.386280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.388369"], ["updated_at", "2020-04-22 05:36:02.388369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_418558


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.391759"], ["updated_at", "2020-04-22 05:36:02.391759"]]
 (0.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.394764"], ["updated_at", "2020-04-22 05:36:02.394764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_275773


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.398153"], ["updated_at", "2020-04-22 05:36:02.398153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.398273"], ["updated_at", "2020-04-22 05:36:02.398273"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.400902"], ["updated_at", "2020-04-22 05:36:02.400902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.403355"], ["updated_at", "2020-04-22 05:36:02.403355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_824430


 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.410089"], ["updated_at", "2020-04-22 05:36:02.410089"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.413533"], ["updated_at", "2020-04-22 05:36:02.413533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_21495


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.415644"], ["updated_at", "2020-04-22 05:36:02.415644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.416079"], ["updated_at", "2020-04-22 05:36:02.416079"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.418928"], ["updated_at", "2020-04-22 05:36:02.418928"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.421042"], ["updated_at", "2020-04-22 05:36:02.421042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_972323


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.426545"], ["updated_at", "2020-04-22 05:36:02.426545"]]
 (0.1ms)  begin transaction

CommentTest: test_871769


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.431275"], ["updated_at", "2020-04-22 05:36:02.431275"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.430737"], ["updated_at", "2020-04-22 05:36:02.430737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.433754"], ["updated_at", "2020-04-22 05:36:02.433754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.433879"], ["updated_at", "2020-04-22 05:36:02.433879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.435771"], ["updated_at", "2020-04-22 05:36:02.435771"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_289244


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_401985


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.444330"], ["updated_at", "2020-04-22 05:36:02.444330"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.446413"], ["updated_at", "2020-04-22 05:36:02.446413"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.447287"], ["updated_at", "2020-04-22 05:36:02.447287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.449100"], ["updated_at", "2020-04-22 05:36:02.449100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.450914"], ["updated_at", "2020-04-22 05:36:02.450914"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.450918"], ["updated_at", "2020-04-22 05:36:02.450918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_770465


 (0.1ms)  begin transaction

CommentTest: test_869162


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.462461"], ["updated_at", "2020-04-22 05:36:02.462461"]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.463354"], ["updated_at", "2020-04-22 05:36:02.463354"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.465861"], ["updated_at", "2020-04-22 05:36:02.465861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.466701"], ["updated_at", "2020-04-22 05:36:02.466701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.468232"], ["updated_at", "2020-04-22 05:36:02.468232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.469234"], ["updated_at", "2020-04-22 05:36:02.469234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (4.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_127916


 (0.1ms)  begin transaction

CommentTest: test_484644


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.481291"], ["updated_at", "2020-04-22 05:36:02.481291"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.482235"], ["updated_at", "2020-04-22 05:36:02.482235"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.484124"], ["updated_at", "2020-04-22 05:36:02.484124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.484936"], ["updated_at", "2020-04-22 05:36:02.484936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.486463"], ["updated_at", "2020-04-22 05:36:02.486463"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.487555"], ["updated_at", "2020-04-22 05:36:02.487555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_425550


 (0.1ms)  begin transaction

CommentTest: test_940132


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.498774"], ["updated_at", "2020-04-22 05:36:02.498774"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.499485"], ["updated_at", "2020-04-22 05:36:02.499485"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.501421"], ["updated_at", "2020-04-22 05:36:02.501421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.502320"], ["updated_at", "2020-04-22 05:36:02.502320"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.506404"], ["updated_at", "2020-04-22 05:36:02.506404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.508125"], ["updated_at", "2020-04-22 05:36:02.508125"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_164572


Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.517123"], ["updated_at", "2020-04-22 05:36:02.517123"]]
 (0.4ms)  begin transaction

CommentTest: test_58944


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.520028"], ["updated_at", "2020-04-22 05:36:02.520028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.523591"], ["updated_at", "2020-04-22 05:36:02.523591"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.523230"], ["updated_at", "2020-04-22 05:36:02.523230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.526048"], ["updated_at", "2020-04-22 05:36:02.526048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.527996"], ["updated_at", "2020-04-22 05:36:02.527996"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_391291


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.532740"], ["updated_at", "2020-04-22 05:36:02.532740"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_50155


Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.534848"], ["updated_at", "2020-04-22 05:36:02.534848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.537702"], ["updated_at", "2020-04-22 05:36:02.537702"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.538227"], ["updated_at", "2020-04-22 05:36:02.538227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.540849"], ["updated_at", "2020-04-22 05:36:02.540849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.543235"], ["updated_at", "2020-04-22 05:36:02.543235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_240814


 (0.1ms)  begin transaction

CommentTest: test_16854


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.556248"], ["updated_at", "2020-04-22 05:36:02.556248"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.557234"], ["updated_at", "2020-04-22 05:36:02.557234"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.559339"], ["updated_at", "2020-04-22 05:36:02.559339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.560086"], ["updated_at", "2020-04-22 05:36:02.560086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.562430"], ["updated_at", "2020-04-22 05:36:02.562430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.564118"], ["updated_at", "2020-04-22 05:36:02.564118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (2.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_997035


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.590663"], ["updated_at", "2020-04-22 05:36:02.590663"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.593221"], ["updated_at", "2020-04-22 05:36:02.593221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.595173"], ["updated_at", "2020-04-22 05:36:02.595173"]]

CommentTest: test_543162


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.598219"], ["updated_at", "2020-04-22 05:36:02.598219"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.601271"], ["updated_at", "2020-04-22 05:36:02.601271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_550634


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.605705"], ["updated_at", "2020-04-22 05:36:02.605705"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.606197"], ["updated_at", "2020-04-22 05:36:02.606197"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.609301"], ["updated_at", "2020-04-22 05:36:02.609301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.612559"], ["updated_at", "2020-04-22 05:36:02.612559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_59850


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.620904"], ["updated_at", "2020-04-22 05:36:02.620904"]]
 (0.1ms)  begin transaction

CommentTest: test_904593


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.623737"], ["updated_at", "2020-04-22 05:36:02.623737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.624162"], ["updated_at", "2020-04-22 05:36:02.624162"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.626023"], ["updated_at", "2020-04-22 05:36:02.626023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.628048"], ["updated_at", "2020-04-22 05:36:02.628048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_940503


Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.633931"], ["updated_at", "2020-04-22 05:36:02.633931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.637139"], ["updated_at", "2020-04-22 05:36:02.637139"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.639838"], ["updated_at", "2020-04-22 05:36:02.639838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.641965"], ["updated_at", "2020-04-22 05:36:02.641965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_870265


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.648439"], ["updated_at", "2020-04-22 05:36:02.648439"]]
 (0.1ms)  begin transaction

CommentTest: test_671605


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.654920"], ["updated_at", "2020-04-22 05:36:02.654920"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.656962"], ["updated_at", "2020-04-22 05:36:02.656962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.651686"], ["updated_at", "2020-04-22 05:36:02.651686"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.659185"], ["updated_at", "2020-04-22 05:36:02.659185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.659259"], ["updated_at", "2020-04-22 05:36:02.659259"]]
 (0.7ms)  rollback transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_665573


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.670940"], ["updated_at", "2020-04-22 05:36:02.670940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.673654"], ["updated_at", "2020-04-22 05:36:02.673654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_604598


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.676838"], ["updated_at", "2020-04-22 05:36:02.676838"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.678936"], ["updated_at", "2020-04-22 05:36:02.678936"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.682509"], ["updated_at", "2020-04-22 05:36:02.682509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_689316


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.684617"], ["updated_at", "2020-04-22 05:36:02.684617"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.686443"], ["updated_at", "2020-04-22 05:36:02.686443"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.690096"], ["updated_at", "2020-04-22 05:36:02.690096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.692206"], ["updated_at", "2020-04-22 05:36:02.692206"]]
 (0.1ms)  begin transaction

CommentTest: test_946291


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.696246"], ["updated_at", "2020-04-22 05:36:02.696246"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.699214"], ["updated_at", "2020-04-22 05:36:02.699214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_146533


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.701647"], ["updated_at", "2020-04-22 05:36:02.701647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.704239"], ["updated_at", "2020-04-22 05:36:02.704239"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.706931"], ["updated_at", "2020-04-22 05:36:02.706931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_65723


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.709008"], ["updated_at", "2020-04-22 05:36:02.709008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.710629"], ["updated_at", "2020-04-22 05:36:02.710629"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.715556"], ["updated_at", "2020-04-22 05:36:02.715556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_766029


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.718948"], ["updated_at", "2020-04-22 05:36:02.718948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.721259"], ["updated_at", "2020-04-22 05:36:02.721259"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.724035"], ["updated_at", "2020-04-22 05:36:02.724035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.726005"], ["updated_at", "2020-04-22 05:36:02.726005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_967811


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.729580"], ["updated_at", "2020-04-22 05:36:02.729580"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.732465"], ["updated_at", "2020-04-22 05:36:02.732465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_58804


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.734577"], ["updated_at", "2020-04-22 05:36:02.734577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.738034"], ["updated_at", "2020-04-22 05:36:02.738034"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.741079"], ["updated_at", "2020-04-22 05:36:02.741079"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.743691"], ["updated_at", "2020-04-22 05:36:02.743691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_704029


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.746912"], ["updated_at", "2020-04-22 05:36:02.746912"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.749814"], ["updated_at", "2020-04-22 05:36:02.749814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_35726


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.752014"], ["updated_at", "2020-04-22 05:36:02.752014"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.753038"], ["updated_at", "2020-04-22 05:36:02.753038"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.755836"], ["updated_at", "2020-04-22 05:36:02.755836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.757917"], ["updated_at", "2020-04-22 05:36:02.757917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_952608


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.762832"], ["updated_at", "2020-04-22 05:36:02.762832"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.766093"], ["updated_at", "2020-04-22 05:36:02.766093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_249444


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.768780"], ["updated_at", "2020-04-22 05:36:02.768780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.769941"], ["updated_at", "2020-04-22 05:36:02.769941"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.773322"], ["updated_at", "2020-04-22 05:36:02.773322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.776204"], ["updated_at", "2020-04-22 05:36:02.776204"]]
 (0.1ms)  begin transaction

CommentTest: test_344451


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.779992"], ["updated_at", "2020-04-22 05:36:02.779992"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.783101"], ["updated_at", "2020-04-22 05:36:02.783101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.785237"], ["updated_at", "2020-04-22 05:36:02.785237"]]
 (0.2ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_319786


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.788949"], ["updated_at", "2020-04-22 05:36:02.788949"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.791849"], ["updated_at", "2020-04-22 05:36:02.791849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_200182


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.794039"], ["updated_at", "2020-04-22 05:36:02.794039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.794332"], ["updated_at", "2020-04-22 05:36:02.794332"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.799698"], ["updated_at", "2020-04-22 05:36:02.799698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.802232"], ["updated_at", "2020-04-22 05:36:02.802232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_492740


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.822887"], ["updated_at", "2020-04-22 05:36:02.822887"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_695683


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.826180"], ["updated_at", "2020-04-22 05:36:02.826180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.831525"], ["updated_at", "2020-04-22 05:36:02.831525"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.832820"], ["updated_at", "2020-04-22 05:36:02.832820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.834305"], ["updated_at", "2020-04-22 05:36:02.834305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.836936"], ["updated_at", "2020-04-22 05:36:02.836936"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_572205


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.842554"], ["updated_at", "2020-04-22 05:36:02.842554"]]
 (0.1ms)  begin transaction

CommentTest: test_163408


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.845908"], ["updated_at", "2020-04-22 05:36:02.845908"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.849218"], ["updated_at", "2020-04-22 05:36:02.849218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.846983"], ["updated_at", "2020-04-22 05:36:02.846983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.851689"], ["updated_at", "2020-04-22 05:36:02.851689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.851845"], ["updated_at", "2020-04-22 05:36:02.851845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_678569


 (0.1ms)  begin transaction

CommentTest: test_240130


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.861579"], ["updated_at", "2020-04-22 05:36:02.861579"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.863077"], ["updated_at", "2020-04-22 05:36:02.863077"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.864081"], ["updated_at", "2020-04-22 05:36:02.864081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.866143"], ["updated_at", "2020-04-22 05:36:02.866143"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.865659"], ["updated_at", "2020-04-22 05:36:02.865659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.868328"], ["updated_at", "2020-04-22 05:36:02.868328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_353852


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.874876"], ["updated_at", "2020-04-22 05:36:02.874876"]]
 (0.1ms)  begin transaction

CommentTest: test_258031


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.877658"], ["updated_at", "2020-04-22 05:36:02.877658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.881545"], ["updated_at", "2020-04-22 05:36:02.881545"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.881030"], ["updated_at", "2020-04-22 05:36:02.881030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.883666"], ["updated_at", "2020-04-22 05:36:02.883666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.885943"], ["updated_at", "2020-04-22 05:36:02.885943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_39831


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.892154"], ["updated_at", "2020-04-22 05:36:02.892154"]]
 (0.1ms)  begin transaction

CommentTest: test_500700


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.895385"], ["updated_at", "2020-04-22 05:36:02.895385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.897562"], ["updated_at", "2020-04-22 05:36:02.897562"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.898657"], ["updated_at", "2020-04-22 05:36:02.898657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.900890"], ["updated_at", "2020-04-22 05:36:02.900890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.904415"], ["updated_at", "2020-04-22 05:36:02.904415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_678061


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.913635"], ["updated_at", "2020-04-22 05:36:02.913635"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.916293"], ["updated_at", "2020-04-22 05:36:02.916293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_717767


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.918487"], ["updated_at", "2020-04-22 05:36:02.918487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.919806"], ["updated_at", "2020-04-22 05:36:02.919806"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.922585"], ["updated_at", "2020-04-22 05:36:02.922585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.924887"], ["updated_at", "2020-04-22 05:36:02.924887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_279864


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.927653"], ["updated_at", "2020-04-22 05:36:02.927653"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.932808"], ["updated_at", "2020-04-22 05:36:02.932808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.934796"], ["updated_at", "2020-04-22 05:36:02.934796"]]
 (0.1ms)  begin transaction

CommentTest: test_103739


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.937828"], ["updated_at", "2020-04-22 05:36:02.937828"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.941289"], ["updated_at", "2020-04-22 05:36:02.941289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_230498


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.943787"], ["updated_at", "2020-04-22 05:36:02.943787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.944914"], ["updated_at", "2020-04-22 05:36:02.944914"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.947543"], ["updated_at", "2020-04-22 05:36:02.947543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.949240"], ["updated_at", "2020-04-22 05:36:02.949240"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_332569


 (0.1ms)  begin transaction

CommentTest: test_243809


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.957743"], ["updated_at", "2020-04-22 05:36:02.957743"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.958318"], ["updated_at", "2020-04-22 05:36:02.958318"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.960542"], ["updated_at", "2020-04-22 05:36:02.960542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.961210"], ["updated_at", "2020-04-22 05:36:02.961210"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.963348"], ["updated_at", "2020-04-22 05:36:02.963348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.965030"], ["updated_at", "2020-04-22 05:36:02.965030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_152895

 (0.1ms)  begin transaction


CommentTest: test_139707


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.976454"], ["updated_at", "2020-04-22 05:36:02.976454"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.976611"], ["updated_at", "2020-04-22 05:36:02.976611"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.980812"], ["updated_at", "2020-04-22 05:36:02.980812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:02.983238"], ["updated_at", "2020-04-22 05:36:02.983238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.984509"], ["updated_at", "2020-04-22 05:36:02.984509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:02.985212"], ["updated_at", "2020-04-22 05:36:02.985212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_438869


 (0.1ms)  begin transaction

CommentTest: test_749748


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.997512"], ["updated_at", "2020-04-22 05:36:02.997512"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:02.995981"], ["updated_at", "2020-04-22 05:36:02.995981"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03"], ["updated_at", "2020-04-22 05:36:03"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.000790"], ["updated_at", "2020-04-22 05:36:03.000790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.001471"], ["updated_at", "2020-04-22 05:36:03.001471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.003588"], ["updated_at", "2020-04-22 05:36:03.003588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_753720


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.014458"], ["updated_at", "2020-04-22 05:36:03.014458"]]
 (0.1ms)  begin transaction

CommentTest: test_935338


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.017711"], ["updated_at", "2020-04-22 05:36:03.017711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.019593"], ["updated_at", "2020-04-22 05:36:03.019593"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.021401"], ["updated_at", "2020-04-22 05:36:03.021401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.023060"], ["updated_at", "2020-04-22 05:36:03.023060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.024747"], ["updated_at", "2020-04-22 05:36:03.024747"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_635527


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_46753


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.032708"], ["updated_at", "2020-04-22 05:36:03.032708"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.035598"], ["updated_at", "2020-04-22 05:36:03.035598"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.036980"], ["updated_at", "2020-04-22 05:36:03.036980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.039276"], ["updated_at", "2020-04-22 05:36:03.039276"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.039207"], ["updated_at", "2020-04-22 05:36:03.039207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.041157"], ["updated_at", "2020-04-22 05:36:03.041157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (4.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_332231


 (0.1ms)  begin transaction

CommentTest: test_46863


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.051184"], ["updated_at", "2020-04-22 05:36:03.051184"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.052456"], ["updated_at", "2020-04-22 05:36:03.052456"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.054399"], ["updated_at", "2020-04-22 05:36:03.054399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.055192"], ["updated_at", "2020-04-22 05:36:03.055192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.056474"], ["updated_at", "2020-04-22 05:36:03.056474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.057078"], ["updated_at", "2020-04-22 05:36:03.057078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_796915


 (0.1ms)  begin transaction

CommentTest: test_941561


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.068305"], ["updated_at", "2020-04-22 05:36:03.068305"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.068474"], ["updated_at", "2020-04-22 05:36:03.068474"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.071855"], ["updated_at", "2020-04-22 05:36:03.071855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.072869"], ["updated_at", "2020-04-22 05:36:03.072869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.073784"], ["updated_at", "2020-04-22 05:36:03.073784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.075019"], ["updated_at", "2020-04-22 05:36:03.075019"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_422344


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.084478"], ["updated_at", "2020-04-22 05:36:03.084478"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.088418"], ["updated_at", "2020-04-22 05:36:03.088418"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_656680


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.089940"], ["updated_at", "2020-04-22 05:36:03.089940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.091743"], ["updated_at", "2020-04-22 05:36:03.091743"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_769992


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.097068"], ["updated_at", "2020-04-22 05:36:03.097068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.098999"], ["updated_at", "2020-04-22 05:36:03.098999"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.099797"], ["updated_at", "2020-04-22 05:36:03.099797"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.101974"], ["updated_at", "2020-04-22 05:36:03.101974"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.104866"], ["updated_at", "2020-04-22 05:36:03.104866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_322200


 (0.1ms)  begin transaction

CommentTest: test_362655


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.115306"], ["updated_at", "2020-04-22 05:36:03.115306"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.118232"], ["updated_at", "2020-04-22 05:36:03.118232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.114778"], ["updated_at", "2020-04-22 05:36:03.114778"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.120613"], ["updated_at", "2020-04-22 05:36:03.120613"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.121220"], ["updated_at", "2020-04-22 05:36:03.121220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.124440"], ["updated_at", "2020-04-22 05:36:03.124440"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_152481


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.129153"], ["updated_at", "2020-04-22 05:36:03.129153"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.132412"], ["updated_at", "2020-04-22 05:36:03.132412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_121849


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.134306"], ["updated_at", "2020-04-22 05:36:03.134306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.136543"], ["updated_at", "2020-04-22 05:36:03.136543"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.139294"], ["updated_at", "2020-04-22 05:36:03.139294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_708401


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.142754"], ["updated_at", "2020-04-22 05:36:03.142754"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.142864"], ["updated_at", "2020-04-22 05:36:03.142864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.145732"], ["updated_at", "2020-04-22 05:36:03.145732"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.148071"], ["updated_at", "2020-04-22 05:36:03.148071"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_154530


 (0.1ms)  begin transaction

CommentTest: test_501525


 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.155982"], ["updated_at", "2020-04-22 05:36:03.155982"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.157041"], ["updated_at", "2020-04-22 05:36:03.157041"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.159599"], ["updated_at", "2020-04-22 05:36:03.159599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.159135"], ["updated_at", "2020-04-22 05:36:03.159135"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.161429"], ["updated_at", "2020-04-22 05:36:03.161429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.162367"], ["updated_at", "2020-04-22 05:36:03.162367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_591029


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.171917"], ["updated_at", "2020-04-22 05:36:03.171917"]]
 (0.1ms)  begin transaction

CommentTest: test_350234


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.174753"], ["updated_at", "2020-04-22 05:36:03.174753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.175538"], ["updated_at", "2020-04-22 05:36:03.175538"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.176679"], ["updated_at", "2020-04-22 05:36:03.176679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.178198"], ["updated_at", "2020-04-22 05:36:03.178198"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.181117"], ["updated_at", "2020-04-22 05:36:03.181117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_362466


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.186045"], ["updated_at", "2020-04-22 05:36:03.186045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.190591"], ["updated_at", "2020-04-22 05:36:03.190591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_491947


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.192747"], ["updated_at", "2020-04-22 05:36:03.192747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.193973"], ["updated_at", "2020-04-22 05:36:03.193973"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.196900"], ["updated_at", "2020-04-22 05:36:03.196900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.199074"], ["updated_at", "2020-04-22 05:36:03.199074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_895523


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.202377"], ["updated_at", "2020-04-22 05:36:03.202377"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.205250"], ["updated_at", "2020-04-22 05:36:03.205250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_450543


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.207854"], ["updated_at", "2020-04-22 05:36:03.207854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.209169"], ["updated_at", "2020-04-22 05:36:03.209169"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.211612"], ["updated_at", "2020-04-22 05:36:03.211612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.216732"], ["updated_at", "2020-04-22 05:36:03.216732"]]
 (0.1ms)  begin transaction

CommentTest: test_383926


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.218933"], ["updated_at", "2020-04-22 05:36:03.218933"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.222035"], ["updated_at", "2020-04-22 05:36:03.222035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.224211"], ["updated_at", "2020-04-22 05:36:03.224211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_859813


Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.232486"], ["updated_at", "2020-04-22 05:36:03.232486"]]

CommentTest: test_573782


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.235756"], ["updated_at", "2020-04-22 05:36:03.235756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.235511"], ["updated_at", "2020-04-22 05:36:03.235511"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.239313"], ["updated_at", "2020-04-22 05:36:03.239313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.239174"], ["updated_at", "2020-04-22 05:36:03.239174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.241532"], ["updated_at", "2020-04-22 05:36:03.241532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_757965


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.249159"], ["updated_at", "2020-04-22 05:36:03.249159"]]

CommentTest: test_205735


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.252465"], ["updated_at", "2020-04-22 05:36:03.252465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.252165"], ["updated_at", "2020-04-22 05:36:03.252165"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.254848"], ["updated_at", "2020-04-22 05:36:03.254848"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.255450"], ["updated_at", "2020-04-22 05:36:03.255450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.257457"], ["updated_at", "2020-04-22 05:36:03.257457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_882040


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_406193


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.265449"], ["updated_at", "2020-04-22 05:36:03.265449"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.267988"], ["updated_at", "2020-04-22 05:36:03.267988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.267600"], ["updated_at", "2020-04-22 05:36:03.267600"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.270712"], ["updated_at", "2020-04-22 05:36:03.270712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.270769"], ["updated_at", "2020-04-22 05:36:03.270769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.273320"], ["updated_at", "2020-04-22 05:36:03.273320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_918860


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_954759


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.280098"], ["updated_at", "2020-04-22 05:36:03.280098"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.283004"], ["updated_at", "2020-04-22 05:36:03.283004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.282430"], ["updated_at", "2020-04-22 05:36:03.282430"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.285071"], ["updated_at", "2020-04-22 05:36:03.285071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.284891"], ["updated_at", "2020-04-22 05:36:03.284891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.287031"], ["updated_at", "2020-04-22 05:36:03.287031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_90336


 (0.1ms)  begin transaction

CommentTest: test_7156


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.295086"], ["updated_at", "2020-04-22 05:36:03.295086"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.296197"], ["updated_at", "2020-04-22 05:36:03.296197"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.297988"], ["updated_at", "2020-04-22 05:36:03.297988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.298811"], ["updated_at", "2020-04-22 05:36:03.298811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.299953"], ["updated_at", "2020-04-22 05:36:03.299953"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.300785"], ["updated_at", "2020-04-22 05:36:03.300785"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_406474


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.308040"], ["updated_at", "2020-04-22 05:36:03.308040"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.310617"], ["updated_at", "2020-04-22 05:36:03.310617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.312660"], ["updated_at", "2020-04-22 05:36:03.312660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_655198


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.318428"], ["updated_at", "2020-04-22 05:36:03.318428"]]
 (0.1ms)  begin transaction

CommentTest: test_519511


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.322394"], ["updated_at", "2020-04-22 05:36:03.322394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.322779"], ["updated_at", "2020-04-22 05:36:03.322779"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.324304"], ["updated_at", "2020-04-22 05:36:03.324304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.325499"], ["updated_at", "2020-04-22 05:36:03.325499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.327378"], ["updated_at", "2020-04-22 05:36:03.327378"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_434666


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.333486"], ["updated_at", "2020-04-22 05:36:03.333486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.336714"], ["updated_at", "2020-04-22 05:36:03.336714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_695825


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.338701"], ["updated_at", "2020-04-22 05:36:03.338701"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.339890"], ["updated_at", "2020-04-22 05:36:03.339890"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.342425"], ["updated_at", "2020-04-22 05:36:03.342425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.344318"], ["updated_at", "2020-04-22 05:36:03.344318"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_733837


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.347017"], ["updated_at", "2020-04-22 05:36:03.347017"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.350118"], ["updated_at", "2020-04-22 05:36:03.350118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.352132"], ["updated_at", "2020-04-22 05:36:03.352132"]]
 (0.2ms)  begin transaction

CommentTest: test_51025


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.354766"], ["updated_at", "2020-04-22 05:36:03.354766"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.357325"], ["updated_at", "2020-04-22 05:36:03.357325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_970407


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.359568"], ["updated_at", "2020-04-22 05:36:03.359568"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.361045"], ["updated_at", "2020-04-22 05:36:03.361045"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.364164"], ["updated_at", "2020-04-22 05:36:03.364164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.366103"], ["updated_at", "2020-04-22 05:36:03.366103"]]
 (0.1ms)  begin transaction

CommentTest: test_475540


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.368419"], ["updated_at", "2020-04-22 05:36:03.368419"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.371304"], ["updated_at", "2020-04-22 05:36:03.371304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.373282"], ["updated_at", "2020-04-22 05:36:03.373282"]]
 (0.1ms)  begin transaction

CommentTest: test_742163


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.376002"], ["updated_at", "2020-04-22 05:36:03.376002"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.378884"], ["updated_at", "2020-04-22 05:36:03.378884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_728942


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.382473"], ["updated_at", "2020-04-22 05:36:03.382473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.383822"], ["updated_at", "2020-04-22 05:36:03.383822"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.386237"], ["updated_at", "2020-04-22 05:36:03.386237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.388273"], ["updated_at", "2020-04-22 05:36:03.388273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_266263


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.391286"], ["updated_at", "2020-04-22 05:36:03.391286"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.394018"], ["updated_at", "2020-04-22 05:36:03.394018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_189026


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.397200"], ["updated_at", "2020-04-22 05:36:03.397200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.398732"], ["updated_at", "2020-04-22 05:36:03.398732"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.401680"], ["updated_at", "2020-04-22 05:36:03.401680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.405291"], ["updated_at", "2020-04-22 05:36:03.405291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_788881


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.408743"], ["updated_at", "2020-04-22 05:36:03.408743"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.412039"], ["updated_at", "2020-04-22 05:36:03.412039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_937345


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.415445"], ["updated_at", "2020-04-22 05:36:03.415445"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.416232"], ["updated_at", "2020-04-22 05:36:03.416232"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.418924"], ["updated_at", "2020-04-22 05:36:03.418924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.421684"], ["updated_at", "2020-04-22 05:36:03.421684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_981464


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.425630"], ["updated_at", "2020-04-22 05:36:03.425630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.428658"], ["updated_at", "2020-04-22 05:36:03.428658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_628060


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.431428"], ["updated_at", "2020-04-22 05:36:03.431428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.432014"], ["updated_at", "2020-04-22 05:36:03.432014"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.437095"], ["updated_at", "2020-04-22 05:36:03.437095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.439944"], ["updated_at", "2020-04-22 05:36:03.439944"]]

CommentTest: test_357479


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.442384"], ["updated_at", "2020-04-22 05:36:03.442384"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.445193"], ["updated_at", "2020-04-22 05:36:03.445193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_21632


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.447191"], ["updated_at", "2020-04-22 05:36:03.447191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.449258"], ["updated_at", "2020-04-22 05:36:03.449258"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.452322"], ["updated_at", "2020-04-22 05:36:03.452322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.455153"], ["updated_at", "2020-04-22 05:36:03.455153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_686632


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.457583"], ["updated_at", "2020-04-22 05:36:03.457583"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.460202"], ["updated_at", "2020-04-22 05:36:03.460202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.462994"], ["updated_at", "2020-04-22 05:36:03.462994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_870689 CommentTest: test_309881



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.892591"], ["updated_at", "2020-04-22 05:36:03.892591"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.892567"], ["updated_at", "2020-04-22 05:36:03.892567"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.895013"], ["updated_at", "2020-04-22 05:36:03.895013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.895363"], ["updated_at", "2020-04-22 05:36:03.895363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.897218"], ["updated_at", "2020-04-22 05:36:03.897218"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.898013"], ["updated_at", "2020-04-22 05:36:03.898013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_785333


 (0.1ms)  begin transaction

CommentTest: test_894441


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.911940"], ["updated_at", "2020-04-22 05:36:03.911940"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.911611"], ["updated_at", "2020-04-22 05:36:03.911611"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.916911"], ["updated_at", "2020-04-22 05:36:03.916911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.918720"], ["updated_at", "2020-04-22 05:36:03.918720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.920500"], ["updated_at", "2020-04-22 05:36:03.920500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.921795"], ["updated_at", "2020-04-22 05:36:03.921795"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_558908


 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_223627


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.931958"], ["updated_at", "2020-04-22 05:36:03.931958"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.934376"], ["updated_at", "2020-04-22 05:36:03.934376"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.935214"], ["updated_at", "2020-04-22 05:36:03.935214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.938102"], ["updated_at", "2020-04-22 05:36:03.938102"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.937822"], ["updated_at", "2020-04-22 05:36:03.937822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.939948"], ["updated_at", "2020-04-22 05:36:03.939948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_956272


 (0.1ms)  begin transaction

CommentTest: test_415192


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.947537"], ["updated_at", "2020-04-22 05:36:03.947537"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.948434"], ["updated_at", "2020-04-22 05:36:03.948434"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.951154"], ["updated_at", "2020-04-22 05:36:03.951154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.950776"], ["updated_at", "2020-04-22 05:36:03.950776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.953446"], ["updated_at", "2020-04-22 05:36:03.953446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.953450"], ["updated_at", "2020-04-22 05:36:03.953450"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_898275


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.961678"], ["updated_at", "2020-04-22 05:36:03.961678"]]

CommentTest: test_375365


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.964177"], ["updated_at", "2020-04-22 05:36:03.964177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.964167"], ["updated_at", "2020-04-22 05:36:03.964167"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.966412"], ["updated_at", "2020-04-22 05:36:03.966412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.967911"], ["updated_at", "2020-04-22 05:36:03.967911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.970187"], ["updated_at", "2020-04-22 05:36:03.970187"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_953650


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.975557"], ["updated_at", "2020-04-22 05:36:03.975557"]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.977454"], ["updated_at", "2020-04-22 05:36:03.977454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.980203"], ["updated_at", "2020-04-22 05:36:03.980203"]]
 (0.1ms)  begin transaction

CommentTest: test_219667


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.982849"], ["updated_at", "2020-04-22 05:36:03.982849"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.985490"], ["updated_at", "2020-04-22 05:36:03.985490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.988259"], ["updated_at", "2020-04-22 05:36:03.988259"]]
 (0.1ms)  begin transaction

CommentTest: test_595109


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:03.990380"], ["updated_at", "2020-04-22 05:36:03.990380"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:03.993024"], ["updated_at", "2020-04-22 05:36:03.993024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:03.995706"], ["updated_at", "2020-04-22 05:36:03.995706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_943800


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.003144"], ["updated_at", "2020-04-22 05:36:04.003144"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.006420"], ["updated_at", "2020-04-22 05:36:04.006420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.009219"], ["updated_at", "2020-04-22 05:36:04.009219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_644552


 (0.1ms)  begin transaction

CommentTest: test_924116


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.019265"], ["updated_at", "2020-04-22 05:36:04.019265"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.018961"], ["updated_at", "2020-04-22 05:36:04.018961"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.022813"], ["updated_at", "2020-04-22 05:36:04.022813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.022813"], ["updated_at", "2020-04-22 05:36:04.022813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.024408"], ["updated_at", "2020-04-22 05:36:04.024408"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.024670"], ["updated_at", "2020-04-22 05:36:04.024670"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_711611


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.031016"], ["updated_at", "2020-04-22 05:36:04.031016"]]
 (0.1ms)  begin transaction

CommentTest: test_688929


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.034012"], ["updated_at", "2020-04-22 05:36:04.034012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.036048"], ["updated_at", "2020-04-22 05:36:04.036048"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.034981"], ["updated_at", "2020-04-22 05:36:04.034981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.038241"], ["updated_at", "2020-04-22 05:36:04.038241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.040071"], ["updated_at", "2020-04-22 05:36:04.040071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_452377


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.044691"], ["updated_at", "2020-04-22 05:36:04.044691"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_737034


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.047050"], ["updated_at", "2020-04-22 05:36:04.047050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.049414"], ["updated_at", "2020-04-22 05:36:04.049414"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.048576"], ["updated_at", "2020-04-22 05:36:04.048576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.051960"], ["updated_at", "2020-04-22 05:36:04.051960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.054003"], ["updated_at", "2020-04-22 05:36:04.054003"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_99993


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.059611"], ["updated_at", "2020-04-22 05:36:04.059611"]]
 (0.1ms)  begin transaction

CommentTest: test_634210


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.062388"], ["updated_at", "2020-04-22 05:36:04.062388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.062182"], ["updated_at", "2020-04-22 05:36:04.062182"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.064222"], ["updated_at", "2020-04-22 05:36:04.064222"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.064777"], ["updated_at", "2020-04-22 05:36:04.064777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.066739"], ["updated_at", "2020-04-22 05:36:04.066739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_266979


 (0.1ms)  begin transaction

CommentTest: test_867076


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.076257"], ["updated_at", "2020-04-22 05:36:04.076257"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.077230"], ["updated_at", "2020-04-22 05:36:04.077230"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.079147"], ["updated_at", "2020-04-22 05:36:04.079147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.079940"], ["updated_at", "2020-04-22 05:36:04.079940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.081113"], ["updated_at", "2020-04-22 05:36:04.081113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.082754"], ["updated_at", "2020-04-22 05:36:04.082754"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_20426


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.090724"], ["updated_at", "2020-04-22 05:36:04.090724"]]
 (0.1ms)  begin transaction

CommentTest: test_313934


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.093752"], ["updated_at", "2020-04-22 05:36:04.093752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.094228"], ["updated_at", "2020-04-22 05:36:04.094228"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.095808"], ["updated_at", "2020-04-22 05:36:04.095808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.096714"], ["updated_at", "2020-04-22 05:36:04.096714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.099696"], ["updated_at", "2020-04-22 05:36:04.099696"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_228005


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.106998"], ["updated_at", "2020-04-22 05:36:04.106998"]]
 (0.1ms)  begin transaction

CommentTest: test_279355


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.110210"], ["updated_at", "2020-04-22 05:36:04.110210"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.111295"], ["updated_at", "2020-04-22 05:36:04.111295"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.112208"], ["updated_at", "2020-04-22 05:36:04.112208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.114153"], ["updated_at", "2020-04-22 05:36:04.114153"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.116052"], ["updated_at", "2020-04-22 05:36:04.116052"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_656050


CommentTest: test_142916


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.125640"], ["updated_at", "2020-04-22 05:36:04.125640"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.125452"], ["updated_at", "2020-04-22 05:36:04.125452"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.128479"], ["updated_at", "2020-04-22 05:36:04.128479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.128890"], ["updated_at", "2020-04-22 05:36:04.128890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.130633"], ["updated_at", "2020-04-22 05:36:04.130633"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.131028"], ["updated_at", "2020-04-22 05:36:04.131028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_114406


 (0.1ms)  begin transaction

CommentTest: test_840860


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.139862"], ["updated_at", "2020-04-22 05:36:04.139862"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.141276"], ["updated_at", "2020-04-22 05:36:04.141276"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.142511"], ["updated_at", "2020-04-22 05:36:04.142511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.143682"], ["updated_at", "2020-04-22 05:36:04.143682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.144349"], ["updated_at", "2020-04-22 05:36:04.144349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.145549"], ["updated_at", "2020-04-22 05:36:04.145549"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_957090


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.152275"], ["updated_at", "2020-04-22 05:36:04.152275"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.156069"], ["updated_at", "2020-04-22 05:36:04.156069"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.158301"], ["updated_at", "2020-04-22 05:36:04.158301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_533281


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.163093"], ["updated_at", "2020-04-22 05:36:04.163093"]]
 (0.1ms)  begin transaction

CommentTest: test_952837


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.166712"], ["updated_at", "2020-04-22 05:36:04.166712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.167130"], ["updated_at", "2020-04-22 05:36:04.167130"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.169754"], ["updated_at", "2020-04-22 05:36:04.169754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.169243"], ["updated_at", "2020-04-22 05:36:04.169243"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.172615"], ["updated_at", "2020-04-22 05:36:04.172615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_658485


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.181213"], ["updated_at", "2020-04-22 05:36:04.181213"]]
 (0.1ms)  begin transaction

CommentTest: test_125928


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.184194"], ["updated_at", "2020-04-22 05:36:04.184194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.184099"], ["updated_at", "2020-04-22 05:36:04.184099"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.186160"], ["updated_at", "2020-04-22 05:36:04.186160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.186711"], ["updated_at", "2020-04-22 05:36:04.186711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.189982"], ["updated_at", "2020-04-22 05:36:04.189982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_101221


 (0.1ms)  begin transaction

CommentTest: test_129986


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.197360"], ["updated_at", "2020-04-22 05:36:04.197360"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.199020"], ["updated_at", "2020-04-22 05:36:04.199020"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.201893"], ["updated_at", "2020-04-22 05:36:04.201893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.202505"], ["updated_at", "2020-04-22 05:36:04.202505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.204937"], ["updated_at", "2020-04-22 05:36:04.204937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.205714"], ["updated_at", "2020-04-22 05:36:04.205714"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_707858


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.215486"], ["updated_at", "2020-04-22 05:36:04.215486"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.218292"], ["updated_at", "2020-04-22 05:36:04.218292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.221769"], ["updated_at", "2020-04-22 05:36:04.221769"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_113151


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.225906"], ["updated_at", "2020-04-22 05:36:04.225906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.228498"], ["updated_at", "2020-04-22 05:36:04.228498"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_148212


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.230340"], ["updated_at", "2020-04-22 05:36:04.230340"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.230975"], ["updated_at", "2020-04-22 05:36:04.230975"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.233968"], ["updated_at", "2020-04-22 05:36:04.233968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.237309"], ["updated_at", "2020-04-22 05:36:04.237309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_714711


 (0.1ms)  begin transaction

CommentTest: test_346346


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.246321"], ["updated_at", "2020-04-22 05:36:04.246321"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.247825"], ["updated_at", "2020-04-22 05:36:04.247825"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.249034"], ["updated_at", "2020-04-22 05:36:04.249034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.250420"], ["updated_at", "2020-04-22 05:36:04.250420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.250921"], ["updated_at", "2020-04-22 05:36:04.250921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.251819"], ["updated_at", "2020-04-22 05:36:04.251819"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_342142


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.260729"], ["updated_at", "2020-04-22 05:36:04.260729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.263961"], ["updated_at", "2020-04-22 05:36:04.263961"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_45707


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.266086"], ["updated_at", "2020-04-22 05:36:04.266086"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.267509"], ["updated_at", "2020-04-22 05:36:04.267509"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.272037"], ["updated_at", "2020-04-22 05:36:04.272037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.274557"], ["updated_at", "2020-04-22 05:36:04.274557"]]

CommentTest: test_521075


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.276644"], ["updated_at", "2020-04-22 05:36:04.276644"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.279092"], ["updated_at", "2020-04-22 05:36:04.279092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.280778"], ["updated_at", "2020-04-22 05:36:04.280778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_295410


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.285363"], ["updated_at", "2020-04-22 05:36:04.285363"]]
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.288547"], ["updated_at", "2020-04-22 05:36:04.288547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_551692


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.290628"], ["updated_at", "2020-04-22 05:36:04.290628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.290909"], ["updated_at", "2020-04-22 05:36:04.290909"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.293372"], ["updated_at", "2020-04-22 05:36:04.293372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.295136"], ["updated_at", "2020-04-22 05:36:04.295136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_853633


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.299615"], ["updated_at", "2020-04-22 05:36:04.299615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.302852"], ["updated_at", "2020-04-22 05:36:04.302852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_228620


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.306251"], ["updated_at", "2020-04-22 05:36:04.306251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.306682"], ["updated_at", "2020-04-22 05:36:04.306682"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.309346"], ["updated_at", "2020-04-22 05:36:04.309346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.311281"], ["updated_at", "2020-04-22 05:36:04.311281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_446037


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.316201"], ["updated_at", "2020-04-22 05:36:04.316201"]]
 (0.3ms)  begin transaction

CommentTest: test_666873


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.319548"], ["updated_at", "2020-04-22 05:36:04.319548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.320167"], ["updated_at", "2020-04-22 05:36:04.320167"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.323553"], ["updated_at", "2020-04-22 05:36:04.323553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.324669"], ["updated_at", "2020-04-22 05:36:04.324669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.326449"], ["updated_at", "2020-04-22 05:36:04.326449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_966422


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_493617


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.333024"], ["updated_at", "2020-04-22 05:36:04.333024"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.335946"], ["updated_at", "2020-04-22 05:36:04.335946"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.339771"], ["updated_at", "2020-04-22 05:36:04.339771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.342427"], ["updated_at", "2020-04-22 05:36:04.342427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.342991"], ["updated_at", "2020-04-22 05:36:04.342991"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.344395"], ["updated_at", "2020-04-22 05:36:04.344395"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_704172


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_24730


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.352315"], ["updated_at", "2020-04-22 05:36:04.352315"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.358561"], ["updated_at", "2020-04-22 05:36:04.358561"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.360756"], ["updated_at", "2020-04-22 05:36:04.360756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.361949"], ["updated_at", "2020-04-22 05:36:04.361949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.362939"], ["updated_at", "2020-04-22 05:36:04.362939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.364095"], ["updated_at", "2020-04-22 05:36:04.364095"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_449688


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_567153


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.373376"], ["updated_at", "2020-04-22 05:36:04.373376"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.375221"], ["updated_at", "2020-04-22 05:36:04.375221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.374975"], ["updated_at", "2020-04-22 05:36:04.374975"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.376992"], ["updated_at", "2020-04-22 05:36:04.376992"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.377566"], ["updated_at", "2020-04-22 05:36:04.377566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.379293"], ["updated_at", "2020-04-22 05:36:04.379293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_407684


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_780527


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.385681"], ["updated_at", "2020-04-22 05:36:04.385681"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.387486"], ["updated_at", "2020-04-22 05:36:04.387486"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.388250"], ["updated_at", "2020-04-22 05:36:04.388250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.390381"], ["updated_at", "2020-04-22 05:36:04.390381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.391128"], ["updated_at", "2020-04-22 05:36:04.391128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.392332"], ["updated_at", "2020-04-22 05:36:04.392332"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_612727


 (0.1ms)  begin transaction

CommentTest: test_325779


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.399234"], ["updated_at", "2020-04-22 05:36:04.399234"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.401024"], ["updated_at", "2020-04-22 05:36:04.401024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.400496"], ["updated_at", "2020-04-22 05:36:04.400496"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.404503"], ["updated_at", "2020-04-22 05:36:04.404503"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (4.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.406829"], ["updated_at", "2020-04-22 05:36:04.406829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.413835"], ["updated_at", "2020-04-22 05:36:04.413835"]]
 (0.1ms)  begin transaction

CommentTest: test_927960


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.416806"], ["updated_at", "2020-04-22 05:36:04.416806"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_979492


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.425546"], ["updated_at", "2020-04-22 05:36:04.425546"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.425939"], ["updated_at", "2020-04-22 05:36:04.425939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.428640"], ["updated_at", "2020-04-22 05:36:04.428640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.429099"], ["updated_at", "2020-04-22 05:36:04.429099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.430158"], ["updated_at", "2020-04-22 05:36:04.430158"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_116020


 (0.1ms)  begin transaction

CommentTest: test_402864


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.439575"], ["updated_at", "2020-04-22 05:36:04.439575"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.440667"], ["updated_at", "2020-04-22 05:36:04.440667"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.442050"], ["updated_at", "2020-04-22 05:36:04.442050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.443286"], ["updated_at", "2020-04-22 05:36:04.443286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.443968"], ["updated_at", "2020-04-22 05:36:04.443968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.446089"], ["updated_at", "2020-04-22 05:36:04.446089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_658412


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.454180"], ["updated_at", "2020-04-22 05:36:04.454180"]]
 (0.6ms)  begin transaction

CommentTest: test_191570


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.457629"], ["updated_at", "2020-04-22 05:36:04.457629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.458884"], ["updated_at", "2020-04-22 05:36:04.458884"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.459877"], ["updated_at", "2020-04-22 05:36:04.459877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.461545"], ["updated_at", "2020-04-22 05:36:04.461545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.463433"], ["updated_at", "2020-04-22 05:36:04.463433"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_646894


 (0.1ms)  begin transaction

CommentTest: test_50801


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.473942"], ["updated_at", "2020-04-22 05:36:04.473942"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.473441"], ["updated_at", "2020-04-22 05:36:04.473441"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.476688"], ["updated_at", "2020-04-22 05:36:04.476688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.477481"], ["updated_at", "2020-04-22 05:36:04.477481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.478699"], ["updated_at", "2020-04-22 05:36:04.478699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.480349"], ["updated_at", "2020-04-22 05:36:04.480349"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_417441


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_843774


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.490631"], ["updated_at", "2020-04-22 05:36:04.490631"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.493462"], ["updated_at", "2020-04-22 05:36:04.493462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.493073"], ["updated_at", "2020-04-22 05:36:04.493073"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.495719"], ["updated_at", "2020-04-22 05:36:04.495719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.495465"], ["updated_at", "2020-04-22 05:36:04.495465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.497747"], ["updated_at", "2020-04-22 05:36:04.497747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_283000


 (0.1ms)  begin transaction

CommentTest: test_319179


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.507617"], ["updated_at", "2020-04-22 05:36:04.507617"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.508376"], ["updated_at", "2020-04-22 05:36:04.508376"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.511213"], ["updated_at", "2020-04-22 05:36:04.511213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.514357"], ["updated_at", "2020-04-22 05:36:04.514357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.513392"], ["updated_at", "2020-04-22 05:36:04.513392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.520185"], ["updated_at", "2020-04-22 05:36:04.520185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_859384


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.526208"], ["updated_at", "2020-04-22 05:36:04.526208"]]
 (0.1ms)  begin transaction

CommentTest: test_432689


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.529243"], ["updated_at", "2020-04-22 05:36:04.529243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.529701"], ["updated_at", "2020-04-22 05:36:04.529701"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.532599"], ["updated_at", "2020-04-22 05:36:04.532599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.532500"], ["updated_at", "2020-04-22 05:36:04.532500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.534350"], ["updated_at", "2020-04-22 05:36:04.534350"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_12614


 (0.1ms)  begin transaction

CommentTest: test_490053


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.544858"], ["updated_at", "2020-04-22 05:36:04.544858"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.545025"], ["updated_at", "2020-04-22 05:36:04.545025"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.547375"], ["updated_at", "2020-04-22 05:36:04.547375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.549187"], ["updated_at", "2020-04-22 05:36:04.549187"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.549262"], ["updated_at", "2020-04-22 05:36:04.549262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.551506"], ["updated_at", "2020-04-22 05:36:04.551506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_831925


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_809708


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.562076"], ["updated_at", "2020-04-22 05:36:04.562076"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.564299"], ["updated_at", "2020-04-22 05:36:04.564299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.563678"], ["updated_at", "2020-04-22 05:36:04.563678"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.566239"], ["updated_at", "2020-04-22 05:36:04.566239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.567179"], ["updated_at", "2020-04-22 05:36:04.567179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.569031"], ["updated_at", "2020-04-22 05:36:04.569031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_196056


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.592877"], ["updated_at", "2020-04-22 05:36:04.592877"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.596933"], ["updated_at", "2020-04-22 05:36:04.596933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_415270


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.599052"], ["updated_at", "2020-04-22 05:36:04.599052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.599029"], ["updated_at", "2020-04-22 05:36:04.599029"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.603334"], ["updated_at", "2020-04-22 05:36:04.603334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.606914"], ["updated_at", "2020-04-22 05:36:04.606914"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_565880


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.612476"], ["updated_at", "2020-04-22 05:36:04.612476"]]
 (0.1ms)  begin transaction

CommentTest: test_235688


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.615910"], ["updated_at", "2020-04-22 05:36:04.615910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.616102"], ["updated_at", "2020-04-22 05:36:04.616102"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.618085"], ["updated_at", "2020-04-22 05:36:04.618085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.618949"], ["updated_at", "2020-04-22 05:36:04.618949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.622885"], ["updated_at", "2020-04-22 05:36:04.622885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_752402


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.629190"], ["updated_at", "2020-04-22 05:36:04.629190"]]
 (0.1ms)  begin transaction

CommentTest: test_138568


 (1.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.635806"], ["updated_at", "2020-04-22 05:36:04.635806"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.633640"], ["updated_at", "2020-04-22 05:36:04.633640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.641022"], ["updated_at", "2020-04-22 05:36:04.641022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.641475"], ["updated_at", "2020-04-22 05:36:04.641475"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.643006"], ["updated_at", "2020-04-22 05:36:04.643006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_897008


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_363663

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.649838"], ["updated_at", "2020-04-22 05:36:04.649838"]]

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.655249"], ["updated_at", "2020-04-22 05:36:04.655249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.652410"], ["updated_at", "2020-04-22 05:36:04.652410"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.657720"], ["updated_at", "2020-04-22 05:36:04.657720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.660013"], ["updated_at", "2020-04-22 05:36:04.660013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.662357"], ["updated_at", "2020-04-22 05:36:04.662357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_236394


 (0.1ms)  begin transaction

CommentTest: test_303735


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.673860"], ["updated_at", "2020-04-22 05:36:04.673860"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.675720"], ["updated_at", "2020-04-22 05:36:04.675720"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.676612"], ["updated_at", "2020-04-22 05:36:04.676612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.678327"], ["updated_at", "2020-04-22 05:36:04.678327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.678908"], ["updated_at", "2020-04-22 05:36:04.678908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.680504"], ["updated_at", "2020-04-22 05:36:04.680504"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_89791


 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.688457"], ["updated_at", "2020-04-22 05:36:04.688457"]]
 (0.1ms)  begin transaction

CommentTest: test_192100


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.691817"], ["updated_at", "2020-04-22 05:36:04.691817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.692273"], ["updated_at", "2020-04-22 05:36:04.692273"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.694111"], ["updated_at", "2020-04-22 05:36:04.694111"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.694642"], ["updated_at", "2020-04-22 05:36:04.694642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.696806"], ["updated_at", "2020-04-22 05:36:04.696806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_741917

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction

 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_168598


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.706937"], ["updated_at", "2020-04-22 05:36:04.706937"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.709798"], ["updated_at", "2020-04-22 05:36:04.709798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.711588"], ["updated_at", "2020-04-22 05:36:04.711588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.709904"], ["updated_at", "2020-04-22 05:36:04.709904"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.715935"], ["updated_at", "2020-04-22 05:36:04.715935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.717711"], ["updated_at", "2020-04-22 05:36:04.717711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_270394


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.724802"], ["updated_at", "2020-04-22 05:36:04.724802"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.727693"], ["updated_at", "2020-04-22 05:36:04.727693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_586437


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.729535"], ["updated_at", "2020-04-22 05:36:04.729535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.729489"], ["updated_at", "2020-04-22 05:36:04.729489"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.731890"], ["updated_at", "2020-04-22 05:36:04.731890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.733724"], ["updated_at", "2020-04-22 05:36:04.733724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_938043


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.740591"], ["updated_at", "2020-04-22 05:36:04.740591"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_565958

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.743986"], ["updated_at", "2020-04-22 05:36:04.743986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.746355"], ["updated_at", "2020-04-22 05:36:04.746355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.746211"], ["updated_at", "2020-04-22 05:36:04.746211"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.749637"], ["updated_at", "2020-04-22 05:36:04.749637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.754464"], ["updated_at", "2020-04-22 05:36:04.754464"]]
 (7.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_905454


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.762316"], ["updated_at", "2020-04-22 05:36:04.762316"]]
 (0.1ms)  begin transaction

CommentTest: test_84940


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.766537"], ["updated_at", "2020-04-22 05:36:04.766537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.768803"], ["updated_at", "2020-04-22 05:36:04.768803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.768258"], ["updated_at", "2020-04-22 05:36:04.768258"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.774525"], ["updated_at", "2020-04-22 05:36:04.774525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.776410"], ["updated_at", "2020-04-22 05:36:04.776410"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_946063


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.780446"], ["updated_at", "2020-04-22 05:36:04.780446"]]
 (0.0ms)  begin transaction

CommentTest: test_818746


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.782917"], ["updated_at", "2020-04-22 05:36:04.782917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.782816"], ["updated_at", "2020-04-22 05:36:04.782816"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.784719"], ["updated_at", "2020-04-22 05:36:04.784719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.784372"], ["updated_at", "2020-04-22 05:36:04.784372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.791707"], ["updated_at", "2020-04-22 05:36:04.791707"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_4117


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.797896"], ["updated_at", "2020-04-22 05:36:04.797896"]]
 (0.1ms)  begin transaction

CommentTest: test_810601


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.800088"], ["updated_at", "2020-04-22 05:36:04.800088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.800273"], ["updated_at", "2020-04-22 05:36:04.800273"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.802043"], ["updated_at", "2020-04-22 05:36:04.802043"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.802403"], ["updated_at", "2020-04-22 05:36:04.802403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.803974"], ["updated_at", "2020-04-22 05:36:04.803974"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_924191


 (0.1ms)  begin transaction

CommentTest: test_536922


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.812733"], ["updated_at", "2020-04-22 05:36:04.812733"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.812253"], ["updated_at", "2020-04-22 05:36:04.812253"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.814742"], ["updated_at", "2020-04-22 05:36:04.814742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.814909"], ["updated_at", "2020-04-22 05:36:04.814909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.816072"], ["updated_at", "2020-04-22 05:36:04.816072"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.816726"], ["updated_at", "2020-04-22 05:36:04.816726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_449348


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_273519


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.823837"], ["updated_at", "2020-04-22 05:36:04.823837"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.826493"], ["updated_at", "2020-04-22 05:36:04.826493"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.827852"], ["updated_at", "2020-04-22 05:36:04.827852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.829404"], ["updated_at", "2020-04-22 05:36:04.829404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.830621"], ["updated_at", "2020-04-22 05:36:04.830621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.831732"], ["updated_at", "2020-04-22 05:36:04.831732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (4.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_670544


 (0.1ms)  begin transaction

CommentTest: test_371097


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.843232"], ["updated_at", "2020-04-22 05:36:04.843232"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.843722"], ["updated_at", "2020-04-22 05:36:04.843722"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.845830"], ["updated_at", "2020-04-22 05:36:04.845830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.846298"], ["updated_at", "2020-04-22 05:36:04.846298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.847795"], ["updated_at", "2020-04-22 05:36:04.847795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.849046"], ["updated_at", "2020-04-22 05:36:04.849046"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_585750


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_186653


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.860647"], ["updated_at", "2020-04-22 05:36:04.860647"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.863151"], ["updated_at", "2020-04-22 05:36:04.863151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.862892"], ["updated_at", "2020-04-22 05:36:04.862892"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.865050"], ["updated_at", "2020-04-22 05:36:04.865050"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.866847"], ["updated_at", "2020-04-22 05:36:04.866847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.868994"], ["updated_at", "2020-04-22 05:36:04.868994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_636545


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.873583"], ["updated_at", "2020-04-22 05:36:04.873583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.876186"], ["updated_at", "2020-04-22 05:36:04.876186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_480469


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.878161"], ["updated_at", "2020-04-22 05:36:04.878161"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.879676"], ["updated_at", "2020-04-22 05:36:04.879676"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.882299"], ["updated_at", "2020-04-22 05:36:04.882299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.884341"], ["updated_at", "2020-04-22 05:36:04.884341"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_11801


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.887097"], ["updated_at", "2020-04-22 05:36:04.887097"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.889777"], ["updated_at", "2020-04-22 05:36:04.889777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.891591"], ["updated_at", "2020-04-22 05:36:04.891591"]]
 (0.1ms)  begin transaction

CommentTest: test_173277

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.893878"], ["updated_at", "2020-04-22 05:36:04.893878"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.897484"], ["updated_at", "2020-04-22 05:36:04.897484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.899338"], ["updated_at", "2020-04-22 05:36:04.899338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_889540


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.902625"], ["updated_at", "2020-04-22 05:36:04.902625"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.906403"], ["updated_at", "2020-04-22 05:36:04.906403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.908163"], ["updated_at", "2020-04-22 05:36:04.908163"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_209654


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.910585"], ["updated_at", "2020-04-22 05:36:04.910585"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.913492"], ["updated_at", "2020-04-22 05:36:04.913492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_217079


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.916357"], ["updated_at", "2020-04-22 05:36:04.916357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.917640"], ["updated_at", "2020-04-22 05:36:04.917640"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.920270"], ["updated_at", "2020-04-22 05:36:04.920270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.922767"], ["updated_at", "2020-04-22 05:36:04.922767"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_816794


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.927782"], ["updated_at", "2020-04-22 05:36:04.927782"]]
 (0.1ms)  begin transaction

CommentTest: test_796316


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.930920"], ["updated_at", "2020-04-22 05:36:04.930920"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.931462"], ["updated_at", "2020-04-22 05:36:04.931462"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.932925"], ["updated_at", "2020-04-22 05:36:04.932925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.933921"], ["updated_at", "2020-04-22 05:36:04.933921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.936561"], ["updated_at", "2020-04-22 05:36:04.936561"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_763136


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_656700


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.943460"], ["updated_at", "2020-04-22 05:36:04.943460"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.945285"], ["updated_at", "2020-04-22 05:36:04.945285"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.946213"], ["updated_at", "2020-04-22 05:36:04.946213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.946918"], ["updated_at", "2020-04-22 05:36:04.946918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.948067"], ["updated_at", "2020-04-22 05:36:04.948067"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.948111"], ["updated_at", "2020-04-22 05:36:04.948111"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_319267


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_932805


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.958079"], ["updated_at", "2020-04-22 05:36:04.958079"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.960797"], ["updated_at", "2020-04-22 05:36:04.960797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.960213"], ["updated_at", "2020-04-22 05:36:04.960213"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.962848"], ["updated_at", "2020-04-22 05:36:04.962848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.962855"], ["updated_at", "2020-04-22 05:36:04.962855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.965887"], ["updated_at", "2020-04-22 05:36:04.965887"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.2ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_173240


 (0.1ms)  begin transaction

CommentTest: test_377562


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.977657"], ["updated_at", "2020-04-22 05:36:04.977657"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.977437"], ["updated_at", "2020-04-22 05:36:04.977437"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.980640"], ["updated_at", "2020-04-22 05:36:04.980640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.980958"], ["updated_at", "2020-04-22 05:36:04.980958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.982340"], ["updated_at", "2020-04-22 05:36:04.982340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.983237"], ["updated_at", "2020-04-22 05:36:04.983237"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_870172



CommentTest: test_306039


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.993644"], ["updated_at", "2020-04-22 05:36:04.993644"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:04.993637"], ["updated_at", "2020-04-22 05:36:04.993637"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.996123"], ["updated_at", "2020-04-22 05:36:04.996123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:04.996526"], ["updated_at", "2020-04-22 05:36:04.996526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.998166"], ["updated_at", "2020-04-22 05:36:04.998166"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:04.997867"], ["updated_at", "2020-04-22 05:36:04.997867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_941596

 (0.1ms)  begin transaction


CommentTest: test_266467


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.008597"], ["updated_at", "2020-04-22 05:36:05.008597"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.009243"], ["updated_at", "2020-04-22 05:36:05.009243"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.011328"], ["updated_at", "2020-04-22 05:36:05.011328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.011562"], ["updated_at", "2020-04-22 05:36:05.011562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.013264"], ["updated_at", "2020-04-22 05:36:05.013264"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.013842"], ["updated_at", "2020-04-22 05:36:05.013842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_561936



CommentTest: test_420904


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.023459"], ["updated_at", "2020-04-22 05:36:05.023459"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.023516"], ["updated_at", "2020-04-22 05:36:05.023516"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.025405"], ["updated_at", "2020-04-22 05:36:05.025405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.027491"], ["updated_at", "2020-04-22 05:36:05.027491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.027719"], ["updated_at", "2020-04-22 05:36:05.027719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.029320"], ["updated_at", "2020-04-22 05:36:05.029320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_715011


 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_885324


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.038075"], ["updated_at", "2020-04-22 05:36:05.038075"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.038612"], ["updated_at", "2020-04-22 05:36:05.038612"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.040945"], ["updated_at", "2020-04-22 05:36:05.040945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.040684"], ["updated_at", "2020-04-22 05:36:05.040684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.043262"], ["updated_at", "2020-04-22 05:36:05.043262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.045961"], ["updated_at", "2020-04-22 05:36:05.045961"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_946844


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.053412"], ["updated_at", "2020-04-22 05:36:05.053412"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.057419"], ["updated_at", "2020-04-22 05:36:05.057419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_949091


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.059761"], ["updated_at", "2020-04-22 05:36:05.059761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.060654"], ["updated_at", "2020-04-22 05:36:05.060654"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.063760"], ["updated_at", "2020-04-22 05:36:05.063760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.065704"], ["updated_at", "2020-04-22 05:36:05.065704"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_103792


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.069909"], ["updated_at", "2020-04-22 05:36:05.069909"]]
 (0.1ms)  begin transaction

CommentTest: test_29322


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.075261"], ["updated_at", "2020-04-22 05:36:05.075261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.076491"], ["updated_at", "2020-04-22 05:36:05.076491"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.077529"], ["updated_at", "2020-04-22 05:36:05.077529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.079097"], ["updated_at", "2020-04-22 05:36:05.079097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.080989"], ["updated_at", "2020-04-22 05:36:05.080989"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_425734


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.090490"], ["updated_at", "2020-04-22 05:36:05.090490"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.093218"], ["updated_at", "2020-04-22 05:36:05.093218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_174333


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.095472"], ["updated_at", "2020-04-22 05:36:05.095472"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.095857"], ["updated_at", "2020-04-22 05:36:05.095857"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.098721"], ["updated_at", "2020-04-22 05:36:05.098721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.100826"], ["updated_at", "2020-04-22 05:36:05.100826"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_879065


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.104277"], ["updated_at", "2020-04-22 05:36:05.104277"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.109250"], ["updated_at", "2020-04-22 05:36:05.109250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_868201


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.111804"], ["updated_at", "2020-04-22 05:36:05.111804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.112353"], ["updated_at", "2020-04-22 05:36:05.112353"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.117103"], ["updated_at", "2020-04-22 05:36:05.117103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_95645


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.119286"], ["updated_at", "2020-04-22 05:36:05.119286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.121901"], ["updated_at", "2020-04-22 05:36:05.121901"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.126155"], ["updated_at", "2020-04-22 05:36:05.126155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.129100"], ["updated_at", "2020-04-22 05:36:05.129100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_767343


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.132398"], ["updated_at", "2020-04-22 05:36:05.132398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.135538"], ["updated_at", "2020-04-22 05:36:05.135538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_920043


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.138568"], ["updated_at", "2020-04-22 05:36:05.138568"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.141319"], ["updated_at", "2020-04-22 05:36:05.141319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.138549"], ["updated_at", "2020-04-22 05:36:05.138549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.143821"], ["updated_at", "2020-04-22 05:36:05.143821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_361601


 (0.1ms)  begin transaction

CommentTest: test_789997


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.157900"], ["updated_at", "2020-04-22 05:36:05.157900"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.159183"], ["updated_at", "2020-04-22 05:36:05.159183"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.160857"], ["updated_at", "2020-04-22 05:36:05.160857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.161556"], ["updated_at", "2020-04-22 05:36:05.161556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.162767"], ["updated_at", "2020-04-22 05:36:05.162767"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.165611"], ["updated_at", "2020-04-22 05:36:05.165611"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_234629


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.174102"], ["updated_at", "2020-04-22 05:36:05.174102"]]
 (0.1ms)  begin transaction

CommentTest: test_289087


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.176891"], ["updated_at", "2020-04-22 05:36:05.176891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.177021"], ["updated_at", "2020-04-22 05:36:05.177021"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.178832"], ["updated_at", "2020-04-22 05:36:05.178832"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.179455"], ["updated_at", "2020-04-22 05:36:05.179455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.181391"], ["updated_at", "2020-04-22 05:36:05.181391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_614831


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.187794"], ["updated_at", "2020-04-22 05:36:05.187794"]]

CommentTest: test_919500


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.191857"], ["updated_at", "2020-04-22 05:36:05.191857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.191499"], ["updated_at", "2020-04-22 05:36:05.191499"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.194135"], ["updated_at", "2020-04-22 05:36:05.194135"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.194240"], ["updated_at", "2020-04-22 05:36:05.194240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.196454"], ["updated_at", "2020-04-22 05:36:05.196454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_643864


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_47651


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.203578"], ["updated_at", "2020-04-22 05:36:05.203578"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.205921"], ["updated_at", "2020-04-22 05:36:05.205921"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.207257"], ["updated_at", "2020-04-22 05:36:05.207257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.209071"], ["updated_at", "2020-04-22 05:36:05.209071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.210275"], ["updated_at", "2020-04-22 05:36:05.210275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.211264"], ["updated_at", "2020-04-22 05:36:05.211264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_723366


 (0.1ms)  begin transaction

CommentTest: test_312638


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.220902"], ["updated_at", "2020-04-22 05:36:05.220902"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.220633"], ["updated_at", "2020-04-22 05:36:05.220633"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.224507"], ["updated_at", "2020-04-22 05:36:05.224507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.224724"], ["updated_at", "2020-04-22 05:36:05.224724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.226548"], ["updated_at", "2020-04-22 05:36:05.226548"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.226562"], ["updated_at", "2020-04-22 05:36:05.226562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_626897

 (0.1ms)  begin transaction


CommentTest: test_164843


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.236116"], ["updated_at", "2020-04-22 05:36:05.236116"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.236744"], ["updated_at", "2020-04-22 05:36:05.236744"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.239155"], ["updated_at", "2020-04-22 05:36:05.239155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.240187"], ["updated_at", "2020-04-22 05:36:05.240187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.242067"], ["updated_at", "2020-04-22 05:36:05.242067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.243483"], ["updated_at", "2020-04-22 05:36:05.243483"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_32784


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_622556


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.251636"], ["updated_at", "2020-04-22 05:36:05.251636"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.255574"], ["updated_at", "2020-04-22 05:36:05.255574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.255390"], ["updated_at", "2020-04-22 05:36:05.255390"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.257905"], ["updated_at", "2020-04-22 05:36:05.257905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.258952"], ["updated_at", "2020-04-22 05:36:05.258952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.262119"], ["updated_at", "2020-04-22 05:36:05.262119"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_37777


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_797727


Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.268536"], ["updated_at", "2020-04-22 05:36:05.268536"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.274574"], ["updated_at", "2020-04-22 05:36:05.274574"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.275539"], ["updated_at", "2020-04-22 05:36:05.275539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.277898"], ["updated_at", "2020-04-22 05:36:05.277898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.278558"], ["updated_at", "2020-04-22 05:36:05.278558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.279887"], ["updated_at", "2020-04-22 05:36:05.279887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_849929


 (0.1ms)  begin transaction

CommentTest: test_579844


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.288846"], ["updated_at", "2020-04-22 05:36:05.288846"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.290073"], ["updated_at", "2020-04-22 05:36:05.290073"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.291353"], ["updated_at", "2020-04-22 05:36:05.291353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.293142"], ["updated_at", "2020-04-22 05:36:05.293142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.293725"], ["updated_at", "2020-04-22 05:36:05.293725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.295115"], ["updated_at", "2020-04-22 05:36:05.295115"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_620560


 (0.1ms)  begin transaction

CommentTest: test_705458


 (0.9ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.305563"], ["updated_at", "2020-04-22 05:36:05.305563"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.306294"], ["updated_at", "2020-04-22 05:36:05.306294"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.309564"], ["updated_at", "2020-04-22 05:36:05.309564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.309556"], ["updated_at", "2020-04-22 05:36:05.309556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.311747"], ["updated_at", "2020-04-22 05:36:05.311747"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.312669"], ["updated_at", "2020-04-22 05:36:05.312669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_876545


 (0.0ms)  begin transaction

CommentTest: test_693703


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.319997"], ["updated_at", "2020-04-22 05:36:05.319997"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.319615"], ["updated_at", "2020-04-22 05:36:05.319615"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.322875"], ["updated_at", "2020-04-22 05:36:05.322875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.323170"], ["updated_at", "2020-04-22 05:36:05.323170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.324595"], ["updated_at", "2020-04-22 05:36:05.324595"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.325188"], ["updated_at", "2020-04-22 05:36:05.325188"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_686069


 (0.1ms)  begin transaction

CommentTest: test_90787


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.334314"], ["updated_at", "2020-04-22 05:36:05.334314"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.334165"], ["updated_at", "2020-04-22 05:36:05.334165"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.337716"], ["updated_at", "2020-04-22 05:36:05.337716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.339689"], ["updated_at", "2020-04-22 05:36:05.339689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.340158"], ["updated_at", "2020-04-22 05:36:05.340158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.341948"], ["updated_at", "2020-04-22 05:36:05.341948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_346398


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.349134"], ["updated_at", "2020-04-22 05:36:05.349134"]]

CommentTest: test_451662


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.351857"], ["updated_at", "2020-04-22 05:36:05.351857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.351786"], ["updated_at", "2020-04-22 05:36:05.351786"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.354142"], ["updated_at", "2020-04-22 05:36:05.354142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.358253"], ["updated_at", "2020-04-22 05:36:05.358253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.360580"], ["updated_at", "2020-04-22 05:36:05.360580"]]
 (0.8ms)  rollback transaction
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_75385


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.365925"], ["updated_at", "2020-04-22 05:36:05.365925"]]
 (0.7ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.368934"], ["updated_at", "2020-04-22 05:36:05.368934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_671810


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.372879"], ["updated_at", "2020-04-22 05:36:05.372879"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.373440"], ["updated_at", "2020-04-22 05:36:05.373440"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.376345"], ["updated_at", "2020-04-22 05:36:05.376345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.378615"], ["updated_at", "2020-04-22 05:36:05.378615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_760387


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.382062"], ["updated_at", "2020-04-22 05:36:05.382062"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.385031"], ["updated_at", "2020-04-22 05:36:05.385031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.387683"], ["updated_at", "2020-04-22 05:36:05.387683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  begin transaction

CommentTest: test_994058


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.391277"], ["updated_at", "2020-04-22 05:36:05.391277"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.393992"], ["updated_at", "2020-04-22 05:36:05.393992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.396149"], ["updated_at", "2020-04-22 05:36:05.396149"]]

CommentTest: test_47697


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.398023"], ["updated_at", "2020-04-22 05:36:05.398023"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.400537"], ["updated_at", "2020-04-22 05:36:05.400537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.406974"], ["updated_at", "2020-04-22 05:36:05.406974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_104339


 (0.1ms)  begin transaction

CommentTest: test_211889


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.415767"], ["updated_at", "2020-04-22 05:36:05.415767"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.416648"], ["updated_at", "2020-04-22 05:36:05.416648"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.418256"], ["updated_at", "2020-04-22 05:36:05.418256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.419553"], ["updated_at", "2020-04-22 05:36:05.419553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.422776"], ["updated_at", "2020-04-22 05:36:05.422776"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.423152"], ["updated_at", "2020-04-22 05:36:05.423152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_797496 CommentTest: test_729717



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.433392"], ["updated_at", "2020-04-22 05:36:05.433392"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.433304"], ["updated_at", "2020-04-22 05:36:05.433304"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.437732"], ["updated_at", "2020-04-22 05:36:05.437732"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.438355"], ["updated_at", "2020-04-22 05:36:05.438355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.440938"], ["updated_at", "2020-04-22 05:36:05.440938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.441664"], ["updated_at", "2020-04-22 05:36:05.441664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_279274


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.451288"], ["updated_at", "2020-04-22 05:36:05.451288"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.455113"], ["updated_at", "2020-04-22 05:36:05.455113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.458139"], ["updated_at", "2020-04-22 05:36:05.458139"]]
 (0.1ms)  begin transaction

CommentTest: test_372951


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.460801"], ["updated_at", "2020-04-22 05:36:05.460801"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.465296"], ["updated_at", "2020-04-22 05:36:05.465296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.467307"], ["updated_at", "2020-04-22 05:36:05.467307"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (4.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_389988


 (0.1ms)  begin transaction

CommentTest: test_893522


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.478919"], ["updated_at", "2020-04-22 05:36:05.478919"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.479611"], ["updated_at", "2020-04-22 05:36:05.479611"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.481644"], ["updated_at", "2020-04-22 05:36:05.481644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.482576"], ["updated_at", "2020-04-22 05:36:05.482576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.483582"], ["updated_at", "2020-04-22 05:36:05.483582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.484400"], ["updated_at", "2020-04-22 05:36:05.484400"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_608105


 (0.1ms)  begin transaction

CommentTest: test_53368


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.496110"], ["updated_at", "2020-04-22 05:36:05.496110"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.496805"], ["updated_at", "2020-04-22 05:36:05.496805"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.498618"], ["updated_at", "2020-04-22 05:36:05.498618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.499441"], ["updated_at", "2020-04-22 05:36:05.499441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.500503"], ["updated_at", "2020-04-22 05:36:05.500503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.501429"], ["updated_at", "2020-04-22 05:36:05.501429"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_469279


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.515304"], ["updated_at", "2020-04-22 05:36:05.515304"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.517330"], ["updated_at", "2020-04-22 05:36:05.517330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_415616


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.519374"], ["updated_at", "2020-04-22 05:36:05.519374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.520636"], ["updated_at", "2020-04-22 05:36:05.520636"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.524530"], ["updated_at", "2020-04-22 05:36:05.524530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.526810"], ["updated_at", "2020-04-22 05:36:05.526810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_347379


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.529817"], ["updated_at", "2020-04-22 05:36:05.529817"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.533476"], ["updated_at", "2020-04-22 05:36:05.533476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_977615


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.535696"], ["updated_at", "2020-04-22 05:36:05.535696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.538087"], ["updated_at", "2020-04-22 05:36:05.538087"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.541102"], ["updated_at", "2020-04-22 05:36:05.541102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.543260"], ["updated_at", "2020-04-22 05:36:05.543260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_548112


 (0.1ms)  begin transaction

CommentTest: test_18078


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.551451"], ["updated_at", "2020-04-22 05:36:05.551451"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.552707"], ["updated_at", "2020-04-22 05:36:05.552707"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.555142"], ["updated_at", "2020-04-22 05:36:05.555142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.556130"], ["updated_at", "2020-04-22 05:36:05.556130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.558252"], ["updated_at", "2020-04-22 05:36:05.558252"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.558346"], ["updated_at", "2020-04-22 05:36:05.558346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (9.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_25564


 (0.1ms)  begin transaction

CommentTest: test_112135


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.574466"], ["updated_at", "2020-04-22 05:36:05.574466"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.575347"], ["updated_at", "2020-04-22 05:36:05.575347"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.578183"], ["updated_at", "2020-04-22 05:36:05.578183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.578428"], ["updated_at", "2020-04-22 05:36:05.578428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.580182"], ["updated_at", "2020-04-22 05:36:05.580182"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.580182"], ["updated_at", "2020-04-22 05:36:05.580182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788016


 (0.1ms)  begin transaction

CommentTest: test_884225


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.594148"], ["updated_at", "2020-04-22 05:36:05.594148"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.595521"], ["updated_at", "2020-04-22 05:36:05.595521"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.598484"], ["updated_at", "2020-04-22 05:36:05.598484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.598848"], ["updated_at", "2020-04-22 05:36:05.598848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.600899"], ["updated_at", "2020-04-22 05:36:05.600899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.600897"], ["updated_at", "2020-04-22 05:36:05.600897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_732516


 (0.1ms)  begin transaction

CommentTest: test_735206


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.612720"], ["updated_at", "2020-04-22 05:36:05.612720"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.614541"], ["updated_at", "2020-04-22 05:36:05.614541"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.615862"], ["updated_at", "2020-04-22 05:36:05.615862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.617799"], ["updated_at", "2020-04-22 05:36:05.617799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.617625"], ["updated_at", "2020-04-22 05:36:05.617625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.624486"], ["updated_at", "2020-04-22 05:36:05.624486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_663944


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.629772"], ["updated_at", "2020-04-22 05:36:05.629772"]]
 (0.1ms)  begin transaction

CommentTest: test_619478


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.632842"], ["updated_at", "2020-04-22 05:36:05.632842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.633841"], ["updated_at", "2020-04-22 05:36:05.633841"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.634991"], ["updated_at", "2020-04-22 05:36:05.634991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.638390"], ["updated_at", "2020-04-22 05:36:05.638390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.642266"], ["updated_at", "2020-04-22 05:36:05.642266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_507133


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.646613"], ["updated_at", "2020-04-22 05:36:05.646613"]]
 (0.1ms)  begin transaction

CommentTest: test_275412


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.650094"], ["updated_at", "2020-04-22 05:36:05.650094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.651323"], ["updated_at", "2020-04-22 05:36:05.651323"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.650840"], ["updated_at", "2020-04-22 05:36:05.650840"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.653290"], ["updated_at", "2020-04-22 05:36:05.653290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.658051"], ["updated_at", "2020-04-22 05:36:05.658051"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_920612


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.662089"], ["updated_at", "2020-04-22 05:36:05.662089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.664779"], ["updated_at", "2020-04-22 05:36:05.664779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_744269


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.666762"], ["updated_at", "2020-04-22 05:36:05.666762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.668028"], ["updated_at", "2020-04-22 05:36:05.668028"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.673328"], ["updated_at", "2020-04-22 05:36:05.673328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.675369"], ["updated_at", "2020-04-22 05:36:05.675369"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_517850


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.683383"], ["updated_at", "2020-04-22 05:36:05.683383"]]
 (0.1ms)  begin transaction

CommentTest: test_190379


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.685994"], ["updated_at", "2020-04-22 05:36:05.685994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.687585"], ["updated_at", "2020-04-22 05:36:05.687585"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.688013"], ["updated_at", "2020-04-22 05:36:05.688013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.691575"], ["updated_at", "2020-04-22 05:36:05.691575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.693554"], ["updated_at", "2020-04-22 05:36:05.693554"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_377981



CommentTest: test_287601


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.705552"], ["updated_at", "2020-04-22 05:36:05.705552"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.705145"], ["updated_at", "2020-04-22 05:36:05.705145"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.708888"], ["updated_at", "2020-04-22 05:36:05.708888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.715937"], ["updated_at", "2020-04-22 05:36:05.715937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.717130"], ["updated_at", "2020-04-22 05:36:05.717130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.719567"], ["updated_at", "2020-04-22 05:36:05.719567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_822613


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.728859"], ["updated_at", "2020-04-22 05:36:05.728859"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.731124"], ["updated_at", "2020-04-22 05:36:05.731124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_28038


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.733037"], ["updated_at", "2020-04-22 05:36:05.733037"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.733900"], ["updated_at", "2020-04-22 05:36:05.733900"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.735585"], ["updated_at", "2020-04-22 05:36:05.735585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.741051"], ["updated_at", "2020-04-22 05:36:05.741051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_289606

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.744301"], ["updated_at", "2020-04-22 05:36:05.744301"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.747098"], ["updated_at", "2020-04-22 05:36:05.747098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.749544"], ["updated_at", "2020-04-22 05:36:05.749544"]]
 (0.1ms)  begin transaction

CommentTest: test_723671


 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.752334"], ["updated_at", "2020-04-22 05:36:05.752334"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_615452


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.759973"], ["updated_at", "2020-04-22 05:36:05.759973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.762333"], ["updated_at", "2020-04-22 05:36:05.762333"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.761881"], ["updated_at", "2020-04-22 05:36:05.761881"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.764537"], ["updated_at", "2020-04-22 05:36:05.764537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.766566"], ["updated_at", "2020-04-22 05:36:05.766566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_862534


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.775752"], ["updated_at", "2020-04-22 05:36:05.775752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.778908"], ["updated_at", "2020-04-22 05:36:05.778908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_177404


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.781093"], ["updated_at", "2020-04-22 05:36:05.781093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.783091"], ["updated_at", "2020-04-22 05:36:05.783091"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.786137"], ["updated_at", "2020-04-22 05:36:05.786137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_390166


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.791988"], ["updated_at", "2020-04-22 05:36:05.791988"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.793655"], ["updated_at", "2020-04-22 05:36:05.793655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.796425"], ["updated_at", "2020-04-22 05:36:05.796425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.798478"], ["updated_at", "2020-04-22 05:36:05.798478"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_265813


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.802677"], ["updated_at", "2020-04-22 05:36:05.802677"]]
 (2.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.806345"], ["updated_at", "2020-04-22 05:36:05.806345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.808298"], ["updated_at", "2020-04-22 05:36:05.808298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_402811


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.815513"], ["updated_at", "2020-04-22 05:36:05.815513"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.818029"], ["updated_at", "2020-04-22 05:36:05.818029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_393624


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.820173"], ["updated_at", "2020-04-22 05:36:05.820173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.820785"], ["updated_at", "2020-04-22 05:36:05.820785"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.824363"], ["updated_at", "2020-04-22 05:36:05.824363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.827112"], ["updated_at", "2020-04-22 05:36:05.827112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_234193


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.830146"], ["updated_at", "2020-04-22 05:36:05.830146"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.833125"], ["updated_at", "2020-04-22 05:36:05.833125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.835928"], ["updated_at", "2020-04-22 05:36:05.835928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_376298


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.843959"], ["updated_at", "2020-04-22 05:36:05.843959"]]

CommentTest: test_386276


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.846479"], ["updated_at", "2020-04-22 05:36:05.846479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.846385"], ["updated_at", "2020-04-22 05:36:05.846385"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.848098"], ["updated_at", "2020-04-22 05:36:05.848098"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.848900"], ["updated_at", "2020-04-22 05:36:05.848900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.850859"], ["updated_at", "2020-04-22 05:36:05.850859"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_215887


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.862072"], ["updated_at", "2020-04-22 05:36:05.862072"]]
 (0.1ms)  begin transaction

CommentTest: test_865039


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.865228"], ["updated_at", "2020-04-22 05:36:05.865228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.865483"], ["updated_at", "2020-04-22 05:36:05.865483"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.867174"], ["updated_at", "2020-04-22 05:36:05.867174"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.867960"], ["updated_at", "2020-04-22 05:36:05.867960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.870008"], ["updated_at", "2020-04-22 05:36:05.870008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_955846


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.876261"], ["updated_at", "2020-04-22 05:36:05.876261"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.879949"], ["updated_at", "2020-04-22 05:36:05.879949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.882287"], ["updated_at", "2020-04-22 05:36:05.882287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_978310


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.885015"], ["updated_at", "2020-04-22 05:36:05.885015"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_225704


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.889187"], ["updated_at", "2020-04-22 05:36:05.889187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.891935"], ["updated_at", "2020-04-22 05:36:05.891935"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.893045"], ["updated_at", "2020-04-22 05:36:05.893045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.894373"], ["updated_at", "2020-04-22 05:36:05.894373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.897052"], ["updated_at", "2020-04-22 05:36:05.897052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_414439


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.902743"], ["updated_at", "2020-04-22 05:36:05.902743"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.908200"], ["updated_at", "2020-04-22 05:36:05.908200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_584355


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.911847"], ["updated_at", "2020-04-22 05:36:05.911847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.911898"], ["updated_at", "2020-04-22 05:36:05.911898"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.917646"], ["updated_at", "2020-04-22 05:36:05.917646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.919691"], ["updated_at", "2020-04-22 05:36:05.919691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_755855


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.926691"], ["updated_at", "2020-04-22 05:36:05.926691"]]
 (0.1ms)  begin transaction

CommentTest: test_24524


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.929604"], ["updated_at", "2020-04-22 05:36:05.929604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.929705"], ["updated_at", "2020-04-22 05:36:05.929705"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.931507"], ["updated_at", "2020-04-22 05:36:05.931507"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.932008"], ["updated_at", "2020-04-22 05:36:05.932008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.933941"], ["updated_at", "2020-04-22 05:36:05.933941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_908445


 (0.1ms)  begin transaction

CommentTest: test_487466


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.946992"], ["updated_at", "2020-04-22 05:36:05.946992"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.947138"], ["updated_at", "2020-04-22 05:36:05.947138"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.950002"], ["updated_at", "2020-04-22 05:36:05.950002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.949689"], ["updated_at", "2020-04-22 05:36:05.949689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.951667"], ["updated_at", "2020-04-22 05:36:05.951667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.951713"], ["updated_at", "2020-04-22 05:36:05.951713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_316941


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.962816"], ["updated_at", "2020-04-22 05:36:05.962816"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.965191"], ["updated_at", "2020-04-22 05:36:05.965191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_95131


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.967105"], ["updated_at", "2020-04-22 05:36:05.967105"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.966997"], ["updated_at", "2020-04-22 05:36:05.966997"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_897713

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.971804"], ["updated_at", "2020-04-22 05:36:05.971804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.977746"], ["updated_at", "2020-04-22 05:36:05.977746"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.977497"], ["updated_at", "2020-04-22 05:36:05.977497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.979841"], ["updated_at", "2020-04-22 05:36:05.979841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.983735"], ["updated_at", "2020-04-22 05:36:05.983735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_261187


 (0.1ms)  begin transaction

CommentTest: test_363145


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.994259"], ["updated_at", "2020-04-22 05:36:05.994259"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.997351"], ["updated_at", "2020-04-22 05:36:05.997351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:05.993045"], ["updated_at", "2020-04-22 05:36:05.993045"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:05.999688"], ["updated_at", "2020-04-22 05:36:05.999688"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:05.999799"], ["updated_at", "2020-04-22 05:36:05.999799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.001740"], ["updated_at", "2020-04-22 05:36:06.001740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_730543


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.012614"], ["updated_at", "2020-04-22 05:36:06.012614"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.014493"], ["updated_at", "2020-04-22 05:36:06.014493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.016510"], ["updated_at", "2020-04-22 05:36:06.016510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  begin transaction

CommentTest: test_826461


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_732447


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.025244"], ["updated_at", "2020-04-22 05:36:06.025244"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.028430"], ["updated_at", "2020-04-22 05:36:06.028430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.027800"], ["updated_at", "2020-04-22 05:36:06.027800"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.031875"], ["updated_at", "2020-04-22 05:36:06.031875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.032039"], ["updated_at", "2020-04-22 05:36:06.032039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.034016"], ["updated_at", "2020-04-22 05:36:06.034016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_816571


 (0.1ms)  begin transaction

CommentTest: test_552026


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.047477"], ["updated_at", "2020-04-22 05:36:06.047477"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.046611"], ["updated_at", "2020-04-22 05:36:06.046611"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.050671"], ["updated_at", "2020-04-22 05:36:06.050671"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.053346"], ["updated_at", "2020-04-22 05:36:06.053346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (7.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.051358"], ["updated_at", "2020-04-22 05:36:06.051358"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.060266"], ["updated_at", "2020-04-22 05:36:06.060266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_393339


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.066880"], ["updated_at", "2020-04-22 05:36:06.066880"]]
 (0.1ms)  begin transaction

CommentTest: test_509780


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.069628"], ["updated_at", "2020-04-22 05:36:06.069628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.071835"], ["updated_at", "2020-04-22 05:36:06.071835"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.070710"], ["updated_at", "2020-04-22 05:36:06.070710"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.076052"], ["updated_at", "2020-04-22 05:36:06.076052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.077995"], ["updated_at", "2020-04-22 05:36:06.077995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_933804


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.082912"], ["updated_at", "2020-04-22 05:36:06.082912"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.090412"], ["updated_at", "2020-04-22 05:36:06.090412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.092125"], ["updated_at", "2020-04-22 05:36:06.092125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_811238


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.094490"], ["updated_at", "2020-04-22 05:36:06.094490"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.097696"], ["updated_at", "2020-04-22 05:36:06.097696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_955805


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.100382"], ["updated_at", "2020-04-22 05:36:06.100382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.103330"], ["updated_at", "2020-04-22 05:36:06.103330"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.106473"], ["updated_at", "2020-04-22 05:36:06.106473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.110121"], ["updated_at", "2020-04-22 05:36:06.110121"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_479201


 (0.1ms)  begin transaction

CommentTest: test_414388


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.117701"], ["updated_at", "2020-04-22 05:36:06.117701"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.118840"], ["updated_at", "2020-04-22 05:36:06.118840"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.122026"], ["updated_at", "2020-04-22 05:36:06.122026"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.123508"], ["updated_at", "2020-04-22 05:36:06.123508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.125246"], ["updated_at", "2020-04-22 05:36:06.125246"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.125724"], ["updated_at", "2020-04-22 05:36:06.125724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_790524


 (0.1ms)  begin transaction

CommentTest: test_882736


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.135563"], ["updated_at", "2020-04-22 05:36:06.135563"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.135753"], ["updated_at", "2020-04-22 05:36:06.135753"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.138553"], ["updated_at", "2020-04-22 05:36:06.138553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.140257"], ["updated_at", "2020-04-22 05:36:06.140257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.140802"], ["updated_at", "2020-04-22 05:36:06.140802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.143402"], ["updated_at", "2020-04-22 05:36:06.143402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_871971


 (0.1ms)  begin transaction

CommentTest: test_997752


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.152713"], ["updated_at", "2020-04-22 05:36:06.152713"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.153032"], ["updated_at", "2020-04-22 05:36:06.153032"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.159809"], ["updated_at", "2020-04-22 05:36:06.159809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.161064"], ["updated_at", "2020-04-22 05:36:06.161064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.161995"], ["updated_at", "2020-04-22 05:36:06.161995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.163004"], ["updated_at", "2020-04-22 05:36:06.163004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_579057


 (0.1ms)  begin transaction

CommentTest: test_741001


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.170373"], ["updated_at", "2020-04-22 05:36:06.170373"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.175572"], ["updated_at", "2020-04-22 05:36:06.175572"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.176932"], ["updated_at", "2020-04-22 05:36:06.176932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.178191"], ["updated_at", "2020-04-22 05:36:06.178191"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.178088"], ["updated_at", "2020-04-22 05:36:06.178088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.179967"], ["updated_at", "2020-04-22 05:36:06.179967"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_283118


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_748286


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.185736"], ["updated_at", "2020-04-22 05:36:06.185736"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.187892"], ["updated_at", "2020-04-22 05:36:06.187892"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.188426"], ["updated_at", "2020-04-22 05:36:06.188426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.190882"], ["updated_at", "2020-04-22 05:36:06.190882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.192153"], ["updated_at", "2020-04-22 05:36:06.192153"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.193091"], ["updated_at", "2020-04-22 05:36:06.193091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_274100


 (0.1ms)  begin transaction

CommentTest: test_871665


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.200738"], ["updated_at", "2020-04-22 05:36:06.200738"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.201669"], ["updated_at", "2020-04-22 05:36:06.201669"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.203358"], ["updated_at", "2020-04-22 05:36:06.203358"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.204887"], ["updated_at", "2020-04-22 05:36:06.204887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.206111"], ["updated_at", "2020-04-22 05:36:06.206111"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.206747"], ["updated_at", "2020-04-22 05:36:06.206747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_24218


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.217235"], ["updated_at", "2020-04-22 05:36:06.217235"]]
 (0.1ms)  begin transaction

CommentTest: test_243502


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.220294"], ["updated_at", "2020-04-22 05:36:06.220294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.222716"], ["updated_at", "2020-04-22 05:36:06.222716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.220801"], ["updated_at", "2020-04-22 05:36:06.220801"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.226786"], ["updated_at", "2020-04-22 05:36:06.226786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.229336"], ["updated_at", "2020-04-22 05:36:06.229336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_283653


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.232702"], ["updated_at", "2020-04-22 05:36:06.232702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.235493"], ["updated_at", "2020-04-22 05:36:06.235493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.238558"], ["updated_at", "2020-04-22 05:36:06.238558"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_956364


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.242689"], ["updated_at", "2020-04-22 05:36:06.242689"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.246208"], ["updated_at", "2020-04-22 05:36:06.246208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_723802


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.249445"], ["updated_at", "2020-04-22 05:36:06.249445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.251028"], ["updated_at", "2020-04-22 05:36:06.251028"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.255141"], ["updated_at", "2020-04-22 05:36:06.255141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.260552"], ["updated_at", "2020-04-22 05:36:06.260552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_393295


 (1.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_313173


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.268925"], ["updated_at", "2020-04-22 05:36:06.268925"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.271662"], ["updated_at", "2020-04-22 05:36:06.271662"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.274971"], ["updated_at", "2020-04-22 05:36:06.274971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.275319"], ["updated_at", "2020-04-22 05:36:06.275319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.277211"], ["updated_at", "2020-04-22 05:36:06.277211"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.277071"], ["updated_at", "2020-04-22 05:36:06.277071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_955983


 (0.1ms)  begin transaction

CommentTest: test_898086


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.289108"], ["updated_at", "2020-04-22 05:36:06.289108"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.289920"], ["updated_at", "2020-04-22 05:36:06.289920"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.291727"], ["updated_at", "2020-04-22 05:36:06.291727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.292387"], ["updated_at", "2020-04-22 05:36:06.292387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.295010"], ["updated_at", "2020-04-22 05:36:06.295010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.296645"], ["updated_at", "2020-04-22 05:36:06.296645"]]
 (0.1ms)  begin transaction

CommentTest: test_12886


 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.304043"], ["updated_at", "2020-04-22 05:36:06.304043"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.307671"], ["updated_at", "2020-04-22 05:36:06.307671"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (5.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.310310"], ["updated_at", "2020-04-22 05:36:06.310310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_623966


 (0.1ms)  begin transaction

CommentTest: test_537353


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.321357"], ["updated_at", "2020-04-22 05:36:06.321357"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.323707"], ["updated_at", "2020-04-22 05:36:06.323707"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.325254"], ["updated_at", "2020-04-22 05:36:06.325254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.326504"], ["updated_at", "2020-04-22 05:36:06.326504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.327624"], ["updated_at", "2020-04-22 05:36:06.327624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.329020"], ["updated_at", "2020-04-22 05:36:06.329020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_104860


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_722106


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.338912"], ["updated_at", "2020-04-22 05:36:06.338912"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.342470"], ["updated_at", "2020-04-22 05:36:06.342470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.344002"], ["updated_at", "2020-04-22 05:36:06.344002"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.345779"], ["updated_at", "2020-04-22 05:36:06.345779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.346659"], ["updated_at", "2020-04-22 05:36:06.346659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.348945"], ["updated_at", "2020-04-22 05:36:06.348945"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_143178


 (3.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.358399"], ["updated_at", "2020-04-22 05:36:06.358399"]]
 (0.1ms)  begin transaction

CommentTest: test_654758


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.361031"], ["updated_at", "2020-04-22 05:36:06.361031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.363113"], ["updated_at", "2020-04-22 05:36:06.363113"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.361381"], ["updated_at", "2020-04-22 05:36:06.361381"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_450337


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.369374"], ["updated_at", "2020-04-22 05:36:06.369374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.371707"], ["updated_at", "2020-04-22 05:36:06.371707"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.372580"], ["updated_at", "2020-04-22 05:36:06.372580"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.374757"], ["updated_at", "2020-04-22 05:36:06.374757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.376746"], ["updated_at", "2020-04-22 05:36:06.376746"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_507282


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.381681"], ["updated_at", "2020-04-22 05:36:06.381681"]]
 (0.1ms)  begin transaction

CommentTest: test_529693


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.384572"], ["updated_at", "2020-04-22 05:36:06.384572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.387314"], ["updated_at", "2020-04-22 05:36:06.387314"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.387104"], ["updated_at", "2020-04-22 05:36:06.387104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.390898"], ["updated_at", "2020-04-22 05:36:06.390898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.392997"], ["updated_at", "2020-04-22 05:36:06.392997"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_929396


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.397803"], ["updated_at", "2020-04-22 05:36:06.397803"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.399849"], ["updated_at", "2020-04-22 05:36:06.399849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.402014"], ["updated_at", "2020-04-22 05:36:06.402014"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_400591


 (0.1ms)  begin transaction

CommentTest: test_139595


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.414385"], ["updated_at", "2020-04-22 05:36:06.414385"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.414553"], ["updated_at", "2020-04-22 05:36:06.414553"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.417050"], ["updated_at", "2020-04-22 05:36:06.417050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.417156"], ["updated_at", "2020-04-22 05:36:06.417156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.418934"], ["updated_at", "2020-04-22 05:36:06.418934"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.418941"], ["updated_at", "2020-04-22 05:36:06.418941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_822316


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_6873


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.430035"], ["updated_at", "2020-04-22 05:36:06.430035"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.432842"], ["updated_at", "2020-04-22 05:36:06.432842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.432337"], ["updated_at", "2020-04-22 05:36:06.432337"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.434607"], ["updated_at", "2020-04-22 05:36:06.434607"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.434891"], ["updated_at", "2020-04-22 05:36:06.434891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.436920"], ["updated_at", "2020-04-22 05:36:06.436920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_389381


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.445053"], ["updated_at", "2020-04-22 05:36:06.445053"]]
 (0.2ms)  begin transaction

CommentTest: test_552218


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.447935"], ["updated_at", "2020-04-22 05:36:06.447935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.448166"], ["updated_at", "2020-04-22 05:36:06.448166"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.450721"], ["updated_at", "2020-04-22 05:36:06.450721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.452366"], ["updated_at", "2020-04-22 05:36:06.452366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.456180"], ["updated_at", "2020-04-22 05:36:06.456180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_87368

 (0.6ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.463681"], ["updated_at", "2020-04-22 05:36:06.463681"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.465908"], ["updated_at", "2020-04-22 05:36:06.465908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.467371"], ["updated_at", "2020-04-22 05:36:06.467371"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_873623


 (0.2ms)  SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.471197"], ["updated_at", "2020-04-22 05:36:06.471197"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.478320"], ["updated_at", "2020-04-22 05:36:06.478320"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_585398


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.480546"], ["updated_at", "2020-04-22 05:36:06.480546"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.480435"], ["updated_at", "2020-04-22 05:36:06.480435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.483095"], ["updated_at", "2020-04-22 05:36:06.483095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.485136"], ["updated_at", "2020-04-22 05:36:06.485136"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_899797


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.492899"], ["updated_at", "2020-04-22 05:36:06.492899"]]
 (0.1ms)  begin transaction

CommentTest: test_455382


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.496875"], ["updated_at", "2020-04-22 05:36:06.496875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.497566"], ["updated_at", "2020-04-22 05:36:06.497566"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.498878"], ["updated_at", "2020-04-22 05:36:06.498878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.500193"], ["updated_at", "2020-04-22 05:36:06.500193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.505511"], ["updated_at", "2020-04-22 05:36:06.505511"]]

CommentTest: test_835600


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.512934"], ["updated_at", "2020-04-22 05:36:06.512934"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.516488"], ["updated_at", "2020-04-22 05:36:06.516488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.518616"], ["updated_at", "2020-04-22 05:36:06.518616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_686047


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.525278"], ["updated_at", "2020-04-22 05:36:06.525278"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.527949"], ["updated_at", "2020-04-22 05:36:06.527949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_396680


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.530451"], ["updated_at", "2020-04-22 05:36:06.530451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.531735"], ["updated_at", "2020-04-22 05:36:06.531735"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.534049"], ["updated_at", "2020-04-22 05:36:06.534049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.536438"], ["updated_at", "2020-04-22 05:36:06.536438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_673502


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.541598"], ["updated_at", "2020-04-22 05:36:06.541598"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_447009


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.544541"], ["updated_at", "2020-04-22 05:36:06.544541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.546243"], ["updated_at", "2020-04-22 05:36:06.546243"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.548875"], ["updated_at", "2020-04-22 05:36:06.548875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.550795"], ["updated_at", "2020-04-22 05:36:06.550795"]]
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.546923"], ["updated_at", "2020-04-22 05:36:06.546923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_501860


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_360390


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.562109"], ["updated_at", "2020-04-22 05:36:06.562109"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.564042"], ["updated_at", "2020-04-22 05:36:06.564042"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.564913"], ["updated_at", "2020-04-22 05:36:06.564913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.566766"], ["updated_at", "2020-04-22 05:36:06.566766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.568145"], ["updated_at", "2020-04-22 05:36:06.568145"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.570544"], ["updated_at", "2020-04-22 05:36:06.570544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (20.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_957965


 (0.1ms)  begin transaction

CommentTest: test_256349


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.600900"], ["updated_at", "2020-04-22 05:36:06.600900"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.606229"], ["updated_at", "2020-04-22 05:36:06.606229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.602106"], ["updated_at", "2020-04-22 05:36:06.602106"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.611315"], ["updated_at", "2020-04-22 05:36:06.611315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.612075"], ["updated_at", "2020-04-22 05:36:06.612075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.614337"], ["updated_at", "2020-04-22 05:36:06.614337"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_507398


Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.624830"], ["updated_at", "2020-04-22 05:36:06.624830"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.627463"], ["updated_at", "2020-04-22 05:36:06.627463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_71977


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.629798"], ["updated_at", "2020-04-22 05:36:06.629798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.630195"], ["updated_at", "2020-04-22 05:36:06.630195"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.633595"], ["updated_at", "2020-04-22 05:36:06.633595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.636082"], ["updated_at", "2020-04-22 05:36:06.636082"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  begin transaction

CommentTest: test_539928


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.642633"], ["updated_at", "2020-04-22 05:36:06.642633"]]
 (0.1ms)  begin transaction

CommentTest: test_132662


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.645830"], ["updated_at", "2020-04-22 05:36:06.645830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.647308"], ["updated_at", "2020-04-22 05:36:06.647308"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.647897"], ["updated_at", "2020-04-22 05:36:06.647897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.649949"], ["updated_at", "2020-04-22 05:36:06.649949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.652017"], ["updated_at", "2020-04-22 05:36:06.652017"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_493422


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.658460"], ["updated_at", "2020-04-22 05:36:06.658460"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.660481"], ["updated_at", "2020-04-22 05:36:06.660481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_653560


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.662746"], ["updated_at", "2020-04-22 05:36:06.662746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.664737"], ["updated_at", "2020-04-22 05:36:06.664737"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.667442"], ["updated_at", "2020-04-22 05:36:06.667442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.668973"], ["updated_at", "2020-04-22 05:36:06.668973"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_93350


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.675033"], ["updated_at", "2020-04-22 05:36:06.675033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.677913"], ["updated_at", "2020-04-22 05:36:06.677913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_229477


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.680046"], ["updated_at", "2020-04-22 05:36:06.680046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.681183"], ["updated_at", "2020-04-22 05:36:06.681183"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.683612"], ["updated_at", "2020-04-22 05:36:06.683612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_372064


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.692521"], ["updated_at", "2020-04-22 05:36:06.692521"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.693257"], ["updated_at", "2020-04-22 05:36:06.693257"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.696023"], ["updated_at", "2020-04-22 05:36:06.696023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.698073"], ["updated_at", "2020-04-22 05:36:06.698073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_707186


 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.702274"], ["updated_at", "2020-04-22 05:36:06.702274"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.706705"], ["updated_at", "2020-04-22 05:36:06.706705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_662275


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.709158"], ["updated_at", "2020-04-22 05:36:06.709158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.710694"], ["updated_at", "2020-04-22 05:36:06.710694"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.714579"], ["updated_at", "2020-04-22 05:36:06.714579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.716934"], ["updated_at", "2020-04-22 05:36:06.716934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_711304


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.720980"], ["updated_at", "2020-04-22 05:36:06.720980"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.724599"], ["updated_at", "2020-04-22 05:36:06.724599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_153265


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.726890"], ["updated_at", "2020-04-22 05:36:06.726890"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.728387"], ["updated_at", "2020-04-22 05:36:06.728387"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.731229"], ["updated_at", "2020-04-22 05:36:06.731229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.733133"], ["updated_at", "2020-04-22 05:36:06.733133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_946407


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.736889"], ["updated_at", "2020-04-22 05:36:06.736889"]]
 (0.1ms)  begin transaction

CommentTest: test_521628


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.740760"], ["updated_at", "2020-04-22 05:36:06.740760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.744148"], ["updated_at", "2020-04-22 05:36:06.744148"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.743150"], ["updated_at", "2020-04-22 05:36:06.743150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.746435"], ["updated_at", "2020-04-22 05:36:06.746435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.748420"], ["updated_at", "2020-04-22 05:36:06.748420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_389029


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.752520"], ["updated_at", "2020-04-22 05:36:06.752520"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.755802"], ["updated_at", "2020-04-22 05:36:06.755802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_379034


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.758381"], ["updated_at", "2020-04-22 05:36:06.758381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.760160"], ["updated_at", "2020-04-22 05:36:06.760160"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.762505"], ["updated_at", "2020-04-22 05:36:06.762505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.764730"], ["updated_at", "2020-04-22 05:36:06.764730"]]
 (0.0ms)  begin transaction

CommentTest: test_69157


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.766753"], ["updated_at", "2020-04-22 05:36:06.766753"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.770446"], ["updated_at", "2020-04-22 05:36:06.770446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.772809"], ["updated_at", "2020-04-22 05:36:06.772809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_914064


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.778764"], ["updated_at", "2020-04-22 05:36:06.778764"]]
 (0.1ms)  begin transaction

CommentTest: test_667688


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.781763"], ["updated_at", "2020-04-22 05:36:06.781763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.783727"], ["updated_at", "2020-04-22 05:36:06.783727"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.783140"], ["updated_at", "2020-04-22 05:36:06.783140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.786085"], ["updated_at", "2020-04-22 05:36:06.786085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.788839"], ["updated_at", "2020-04-22 05:36:06.788839"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_756473


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.792641"], ["updated_at", "2020-04-22 05:36:06.792641"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.796383"], ["updated_at", "2020-04-22 05:36:06.796383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.797926"], ["updated_at", "2020-04-22 05:36:06.797926"]]
 (0.3ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_66176


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.800978"], ["updated_at", "2020-04-22 05:36:06.800978"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.803733"], ["updated_at", "2020-04-22 05:36:06.803733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.806291"], ["updated_at", "2020-04-22 05:36:06.806291"]]
 (0.2ms)  begin transaction

CommentTest: test_482380


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.808926"], ["updated_at", "2020-04-22 05:36:06.808926"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.811421"], ["updated_at", "2020-04-22 05:36:06.811421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.813595"], ["updated_at", "2020-04-22 05:36:06.813595"]]
 (0.1ms)  begin transaction
 (0.8ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_976990


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.817260"], ["updated_at", "2020-04-22 05:36:06.817260"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.820008"], ["updated_at", "2020-04-22 05:36:06.820008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_540550


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.822430"], ["updated_at", "2020-04-22 05:36:06.822430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.824952"], ["updated_at", "2020-04-22 05:36:06.824952"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.827988"], ["updated_at", "2020-04-22 05:36:06.827988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.830398"], ["updated_at", "2020-04-22 05:36:06.830398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (2.1ms)  begin transaction

 (0.6ms)  begin transaction

CommentTest: test_37883


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.840956"], ["updated_at", "2020-04-22 05:36:06.840956"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.845103"], ["updated_at", "2020-04-22 05:36:06.845103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_696151


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.848075"], ["updated_at", "2020-04-22 05:36:06.848075"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.849154"], ["updated_at", "2020-04-22 05:36:06.849154"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.851454"], ["updated_at", "2020-04-22 05:36:06.851454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.853813"], ["updated_at", "2020-04-22 05:36:06.853813"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_793234


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.859475"], ["updated_at", "2020-04-22 05:36:06.859475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.862501"], ["updated_at", "2020-04-22 05:36:06.862501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (15.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.866278"], ["updated_at", "2020-04-22 05:36:06.866278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_151382


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.884630"], ["updated_at", "2020-04-22 05:36:06.884630"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.888095"], ["updated_at", "2020-04-22 05:36:06.888095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_534247


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.891705"], ["updated_at", "2020-04-22 05:36:06.891705"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.891113"], ["updated_at", "2020-04-22 05:36:06.891113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.893763"], ["updated_at", "2020-04-22 05:36:06.893763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.896146"], ["updated_at", "2020-04-22 05:36:06.896146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.5ms)  begin transaction

CommentTest: test_264315



CommentTest: test_301468


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.908473"], ["updated_at", "2020-04-22 05:36:06.908473"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.913342"], ["updated_at", "2020-04-22 05:36:06.913342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.913616"], ["updated_at", "2020-04-22 05:36:06.913616"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.915266"], ["updated_at", "2020-04-22 05:36:06.915266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.915289"], ["updated_at", "2020-04-22 05:36:06.915289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.916535"], ["updated_at", "2020-04-22 05:36:06.916535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_180683

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.926886"], ["updated_at", "2020-04-22 05:36:06.926886"]]
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.930381"], ["updated_at", "2020-04-22 05:36:06.930381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_182906


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.932420"], ["updated_at", "2020-04-22 05:36:06.932420"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.932981"], ["updated_at", "2020-04-22 05:36:06.932981"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.935898"], ["updated_at", "2020-04-22 05:36:06.935898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.938106"], ["updated_at", "2020-04-22 05:36:06.938106"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_297973

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.943480"], ["updated_at", "2020-04-22 05:36:06.943480"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.946643"], ["updated_at", "2020-04-22 05:36:06.946643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_190896


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.948664"], ["updated_at", "2020-04-22 05:36:06.948664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.950042"], ["updated_at", "2020-04-22 05:36:06.950042"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.957380"], ["updated_at", "2020-04-22 05:36:06.957380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_820053


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.960404"], ["updated_at", "2020-04-22 05:36:06.960404"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.961780"], ["updated_at", "2020-04-22 05:36:06.961780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.964252"], ["updated_at", "2020-04-22 05:36:06.964252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.966526"], ["updated_at", "2020-04-22 05:36:06.966526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (1.1ms)  rollback transaction

CommentTest: test_546894


 (0.1ms)  begin transaction

CommentTest: test_670208

 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.975431"], ["updated_at", "2020-04-22 05:36:06.975431"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.977543"], ["updated_at", "2020-04-22 05:36:06.977543"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.978554"], ["updated_at", "2020-04-22 05:36:06.978554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.980201"], ["updated_at", "2020-04-22 05:36:06.980201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.980458"], ["updated_at", "2020-04-22 05:36:06.980458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.982509"], ["updated_at", "2020-04-22 05:36:06.982509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_233007


 (0.1ms)  begin transaction

CommentTest: test_903042


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.994996"], ["updated_at", "2020-04-22 05:36:06.994996"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:06.996197"], ["updated_at", "2020-04-22 05:36:06.996197"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.997526"], ["updated_at", "2020-04-22 05:36:06.997526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:06.998861"], ["updated_at", "2020-04-22 05:36:06.998861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:06.999648"], ["updated_at", "2020-04-22 05:36:06.999648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.001862"], ["updated_at", "2020-04-22 05:36:07.001862"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_227698


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.012392"], ["updated_at", "2020-04-22 05:36:07.012392"]]
 (0.4ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.015392"], ["updated_at", "2020-04-22 05:36:07.015392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_406236


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.017723"], ["updated_at", "2020-04-22 05:36:07.017723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.017847"], ["updated_at", "2020-04-22 05:36:07.017847"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.021255"], ["updated_at", "2020-04-22 05:36:07.021255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.023194"], ["updated_at", "2020-04-22 05:36:07.023194"]]
 (0.1ms)  begin transaction

CommentTest: test_995024


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.028808"], ["updated_at", "2020-04-22 05:36:07.028808"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.031463"], ["updated_at", "2020-04-22 05:36:07.031463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.033798"], ["updated_at", "2020-04-22 05:36:07.033798"]]
 (0.1ms)  begin transaction

CommentTest: test_177203


 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.037978"], ["updated_at", "2020-04-22 05:36:07.037978"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.042599"], ["updated_at", "2020-04-22 05:36:07.042599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_597490


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.044952"], ["updated_at", "2020-04-22 05:36:07.044952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.045295"], ["updated_at", "2020-04-22 05:36:07.045295"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.048541"], ["updated_at", "2020-04-22 05:36:07.048541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.050677"], ["updated_at", "2020-04-22 05:36:07.050677"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_633295


 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.054559"], ["updated_at", "2020-04-22 05:36:07.054559"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_828665


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.059559"], ["updated_at", "2020-04-22 05:36:07.059559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.060252"], ["updated_at", "2020-04-22 05:36:07.060252"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.061611"], ["updated_at", "2020-04-22 05:36:07.061611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.062813"], ["updated_at", "2020-04-22 05:36:07.062813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.065373"], ["updated_at", "2020-04-22 05:36:07.065373"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_731603


 (0.1ms)  begin transaction

CommentTest: test_426497


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.074624"], ["updated_at", "2020-04-22 05:36:07.074624"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.075688"], ["updated_at", "2020-04-22 05:36:07.075688"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.077321"], ["updated_at", "2020-04-22 05:36:07.077321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.078510"], ["updated_at", "2020-04-22 05:36:07.078510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.079651"], ["updated_at", "2020-04-22 05:36:07.079651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.080782"], ["updated_at", "2020-04-22 05:36:07.080782"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_402430


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_489944


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.091044"], ["updated_at", "2020-04-22 05:36:07.091044"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.093103"], ["updated_at", "2020-04-22 05:36:07.093103"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.094232"], ["updated_at", "2020-04-22 05:36:07.094232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.095881"], ["updated_at", "2020-04-22 05:36:07.095881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.096536"], ["updated_at", "2020-04-22 05:36:07.096536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.098315"], ["updated_at", "2020-04-22 05:36:07.098315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (1.0ms)  rollback transaction

CommentTest: test_185481


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_820157


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.108676"], ["updated_at", "2020-04-22 05:36:07.108676"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.110259"], ["updated_at", "2020-04-22 05:36:07.110259"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.112280"], ["updated_at", "2020-04-22 05:36:07.112280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.113617"], ["updated_at", "2020-04-22 05:36:07.113617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.114940"], ["updated_at", "2020-04-22 05:36:07.114940"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.115721"], ["updated_at", "2020-04-22 05:36:07.115721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_248244


 (0.1ms)  begin transaction

CommentTest: test_527164


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.125848"], ["updated_at", "2020-04-22 05:36:07.125848"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.127095"], ["updated_at", "2020-04-22 05:36:07.127095"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.129754"], ["updated_at", "2020-04-22 05:36:07.129754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.129626"], ["updated_at", "2020-04-22 05:36:07.129626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.130995"], ["updated_at", "2020-04-22 05:36:07.130995"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.131511"], ["updated_at", "2020-04-22 05:36:07.131511"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_116546


 (0.1ms)  begin transaction

CommentTest: test_628639


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.141347"], ["updated_at", "2020-04-22 05:36:07.141347"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.141436"], ["updated_at", "2020-04-22 05:36:07.141436"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.144976"], ["updated_at", "2020-04-22 05:36:07.144976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.145246"], ["updated_at", "2020-04-22 05:36:07.145246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.147074"], ["updated_at", "2020-04-22 05:36:07.147074"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.147158"], ["updated_at", "2020-04-22 05:36:07.147158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_443888


 (0.1ms)  begin transaction

CommentTest: test_261493


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.157499"], ["updated_at", "2020-04-22 05:36:07.157499"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.158553"], ["updated_at", "2020-04-22 05:36:07.158553"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.160058"], ["updated_at", "2020-04-22 05:36:07.160058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.161902"], ["updated_at", "2020-04-22 05:36:07.161902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.162210"], ["updated_at", "2020-04-22 05:36:07.162210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.164372"], ["updated_at", "2020-04-22 05:36:07.164372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_752219



CommentTest: test_546833


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.179025"], ["updated_at", "2020-04-22 05:36:07.179025"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.179136"], ["updated_at", "2020-04-22 05:36:07.179136"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.181746"], ["updated_at", "2020-04-22 05:36:07.181746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.182137"], ["updated_at", "2020-04-22 05:36:07.182137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.184139"], ["updated_at", "2020-04-22 05:36:07.184139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.184431"], ["updated_at", "2020-04-22 05:36:07.184431"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_665750


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_561558


Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.195279"], ["updated_at", "2020-04-22 05:36:07.195279"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.197629"], ["updated_at", "2020-04-22 05:36:07.197629"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.198708"], ["updated_at", "2020-04-22 05:36:07.198708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.200562"], ["updated_at", "2020-04-22 05:36:07.200562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.201638"], ["updated_at", "2020-04-22 05:36:07.201638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.202529"], ["updated_at", "2020-04-22 05:36:07.202529"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (1.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_937645


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.213362"], ["updated_at", "2020-04-22 05:36:07.213362"]]
 (0.2ms)  begin transaction

CommentTest: test_159252


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.216449"], ["updated_at", "2020-04-22 05:36:07.216449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.217008"], ["updated_at", "2020-04-22 05:36:07.217008"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.218777"], ["updated_at", "2020-04-22 05:36:07.218777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.220756"], ["updated_at", "2020-04-22 05:36:07.220756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.223265"], ["updated_at", "2020-04-22 05:36:07.223265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_762181


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.230109"], ["updated_at", "2020-04-22 05:36:07.230109"]]
 (0.1ms)  begin transaction

CommentTest: test_621938


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.234277"], ["updated_at", "2020-04-22 05:36:07.234277"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.233034"], ["updated_at", "2020-04-22 05:36:07.233034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.237688"], ["updated_at", "2020-04-22 05:36:07.237688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.237842"], ["updated_at", "2020-04-22 05:36:07.237842"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.240340"], ["updated_at", "2020-04-22 05:36:07.240340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_351279


 (0.2ms)  SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_167350


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.248275"], ["updated_at", "2020-04-22 05:36:07.248275"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.251637"], ["updated_at", "2020-04-22 05:36:07.251637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.251199"], ["updated_at", "2020-04-22 05:36:07.251199"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.253552"], ["updated_at", "2020-04-22 05:36:07.253552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.259694"], ["updated_at", "2020-04-22 05:36:07.259694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_933222


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.264729"], ["updated_at", "2020-04-22 05:36:07.264729"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.265697"], ["updated_at", "2020-04-22 05:36:07.265697"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.268219"], ["updated_at", "2020-04-22 05:36:07.268219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.271146"], ["updated_at", "2020-04-22 05:36:07.271146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_637203


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.278297"], ["updated_at", "2020-04-22 05:36:07.278297"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_853134


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.284140"], ["updated_at", "2020-04-22 05:36:07.284140"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.281234"], ["updated_at", "2020-04-22 05:36:07.281234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.286308"], ["updated_at", "2020-04-22 05:36:07.286308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.288187"], ["updated_at", "2020-04-22 05:36:07.288187"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.289024"], ["updated_at", "2020-04-22 05:36:07.289024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_330328


 (0.1ms)  begin transaction

CommentTest: test_773400


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.298521"], ["updated_at", "2020-04-22 05:36:07.298521"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.299406"], ["updated_at", "2020-04-22 05:36:07.299406"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.301116"], ["updated_at", "2020-04-22 05:36:07.301116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.301923"], ["updated_at", "2020-04-22 05:36:07.301923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.303699"], ["updated_at", "2020-04-22 05:36:07.303699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.305270"], ["updated_at", "2020-04-22 05:36:07.305270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_277380


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.315896"], ["updated_at", "2020-04-22 05:36:07.315896"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.318424"], ["updated_at", "2020-04-22 05:36:07.318424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_365845


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.320671"], ["updated_at", "2020-04-22 05:36:07.320671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.321523"], ["updated_at", "2020-04-22 05:36:07.321523"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.324510"], ["updated_at", "2020-04-22 05:36:07.324510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.328742"], ["updated_at", "2020-04-22 05:36:07.328742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_677942


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.332722"], ["updated_at", "2020-04-22 05:36:07.332722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.335539"], ["updated_at", "2020-04-22 05:36:07.335539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_878382


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.339465"], ["updated_at", "2020-04-22 05:36:07.339465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.339496"], ["updated_at", "2020-04-22 05:36:07.339496"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.345046"], ["updated_at", "2020-04-22 05:36:07.345046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.348078"], ["updated_at", "2020-04-22 05:36:07.348078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_489196


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.350852"], ["updated_at", "2020-04-22 05:36:07.350852"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.354488"], ["updated_at", "2020-04-22 05:36:07.354488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.357871"], ["updated_at", "2020-04-22 05:36:07.357871"]]

CommentTest: test_142564


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.361033"], ["updated_at", "2020-04-22 05:36:07.361033"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.364115"], ["updated_at", "2020-04-22 05:36:07.364115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.366142"], ["updated_at", "2020-04-22 05:36:07.366142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_165664


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.369905"], ["updated_at", "2020-04-22 05:36:07.369905"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.374433"], ["updated_at", "2020-04-22 05:36:07.374433"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_129628


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.376346"], ["updated_at", "2020-04-22 05:36:07.376346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.378539"], ["updated_at", "2020-04-22 05:36:07.378539"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.380941"], ["updated_at", "2020-04-22 05:36:07.380941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.382849"], ["updated_at", "2020-04-22 05:36:07.382849"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_94485


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.389864"], ["updated_at", "2020-04-22 05:36:07.389864"]]
 (4.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_291772


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.394983"], ["updated_at", "2020-04-22 05:36:07.394983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.396952"], ["updated_at", "2020-04-22 05:36:07.396952"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.396585"], ["updated_at", "2020-04-22 05:36:07.396585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.399140"], ["updated_at", "2020-04-22 05:36:07.399140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.401633"], ["updated_at", "2020-04-22 05:36:07.401633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_339809


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.417381"], ["updated_at", "2020-04-22 05:36:07.417381"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.419094"], ["updated_at", "2020-04-22 05:36:07.419094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.422273"], ["updated_at", "2020-04-22 05:36:07.422273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_855427

Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.426426"], ["updated_at", "2020-04-22 05:36:07.426426"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.429457"], ["updated_at", "2020-04-22 05:36:07.429457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_444163


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.433046"], ["updated_at", "2020-04-22 05:36:07.433046"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.433651"], ["updated_at", "2020-04-22 05:36:07.433651"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.437710"], ["updated_at", "2020-04-22 05:36:07.437710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.440501"], ["updated_at", "2020-04-22 05:36:07.440501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_996076


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.443639"], ["updated_at", "2020-04-22 05:36:07.443639"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.446239"], ["updated_at", "2020-04-22 05:36:07.446239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.448459"], ["updated_at", "2020-04-22 05:36:07.448459"]]
 (0.1ms)  begin transaction

CommentTest: test_649610


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.450910"], ["updated_at", "2020-04-22 05:36:07.450910"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.455221"], ["updated_at", "2020-04-22 05:36:07.455221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_375824


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.457915"], ["updated_at", "2020-04-22 05:36:07.457915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.459560"], ["updated_at", "2020-04-22 05:36:07.459560"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.462492"], ["updated_at", "2020-04-22 05:36:07.462492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.465033"], ["updated_at", "2020-04-22 05:36:07.465033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_683879


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.468952"], ["updated_at", "2020-04-22 05:36:07.468952"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.472117"], ["updated_at", "2020-04-22 05:36:07.472117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.476583"], ["updated_at", "2020-04-22 05:36:07.476583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_379920

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_661611


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.491223"], ["updated_at", "2020-04-22 05:36:07.491223"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.492508"], ["updated_at", "2020-04-22 05:36:07.492508"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.494576"], ["updated_at", "2020-04-22 05:36:07.494576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.495055"], ["updated_at", "2020-04-22 05:36:07.495055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.497408"], ["updated_at", "2020-04-22 05:36:07.497408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.498059"], ["updated_at", "2020-04-22 05:36:07.498059"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_524880


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_393732


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.509758"], ["updated_at", "2020-04-22 05:36:07.509758"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.512700"], ["updated_at", "2020-04-22 05:36:07.512700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.512121"], ["updated_at", "2020-04-22 05:36:07.512121"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.514848"], ["updated_at", "2020-04-22 05:36:07.514848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.515839"], ["updated_at", "2020-04-22 05:36:07.515839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.518921"], ["updated_at", "2020-04-22 05:36:07.518921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_549009


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.524460"], ["updated_at", "2020-04-22 05:36:07.524460"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.527751"], ["updated_at", "2020-04-22 05:36:07.527751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.529599"], ["updated_at", "2020-04-22 05:36:07.529599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_128424


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.532703"], ["updated_at", "2020-04-22 05:36:07.532703"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_921819


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.535245"], ["updated_at", "2020-04-22 05:36:07.535245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.540297"], ["updated_at", "2020-04-22 05:36:07.540297"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.541322"], ["updated_at", "2020-04-22 05:36:07.541322"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.542896"], ["updated_at", "2020-04-22 05:36:07.542896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.544801"], ["updated_at", "2020-04-22 05:36:07.544801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_686712


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_319895


Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.551031"], ["updated_at", "2020-04-22 05:36:07.551031"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.553961"], ["updated_at", "2020-04-22 05:36:07.553961"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.554663"], ["updated_at", "2020-04-22 05:36:07.554663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.556288"], ["updated_at", "2020-04-22 05:36:07.556288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.558373"], ["updated_at", "2020-04-22 05:36:07.558373"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.556705"], ["updated_at", "2020-04-22 05:36:07.556705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_346321


 (2.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.571488"], ["updated_at", "2020-04-22 05:36:07.571488"]]
 (0.1ms)  begin transaction

CommentTest: test_107793


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.574737"], ["updated_at", "2020-04-22 05:36:07.574737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.576666"], ["updated_at", "2020-04-22 05:36:07.576666"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.578014"], ["updated_at", "2020-04-22 05:36:07.578014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.579745"], ["updated_at", "2020-04-22 05:36:07.579745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.582631"], ["updated_at", "2020-04-22 05:36:07.582631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_957390


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.587310"], ["updated_at", "2020-04-22 05:36:07.587310"]]
 (3.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.592055"], ["updated_at", "2020-04-22 05:36:07.592055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_732726


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.594455"], ["updated_at", "2020-04-22 05:36:07.594455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.596039"], ["updated_at", "2020-04-22 05:36:07.596039"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.598598"], ["updated_at", "2020-04-22 05:36:07.598598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.600641"], ["updated_at", "2020-04-22 05:36:07.600641"]]
 (0.3ms)  begin transaction

CommentTest: test_433983


 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.605635"], ["updated_at", "2020-04-22 05:36:07.605635"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.608952"], ["updated_at", "2020-04-22 05:36:07.608952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_156177


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.611218"], ["updated_at", "2020-04-22 05:36:07.611218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.612718"], ["updated_at", "2020-04-22 05:36:07.612718"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.614857"], ["updated_at", "2020-04-22 05:36:07.614857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.616760"], ["updated_at", "2020-04-22 05:36:07.616760"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_965779


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.619886"], ["updated_at", "2020-04-22 05:36:07.619886"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.623559"], ["updated_at", "2020-04-22 05:36:07.623559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_797182


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.627766"], ["updated_at", "2020-04-22 05:36:07.627766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.628690"], ["updated_at", "2020-04-22 05:36:07.628690"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.631116"], ["updated_at", "2020-04-22 05:36:07.631116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.632756"], ["updated_at", "2020-04-22 05:36:07.632756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_567816


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.635352"], ["updated_at", "2020-04-22 05:36:07.635352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.639270"], ["updated_at", "2020-04-22 05:36:07.639270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.643070"], ["updated_at", "2020-04-22 05:36:07.643070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_61420


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.647001"], ["updated_at", "2020-04-22 05:36:07.647001"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.651400"], ["updated_at", "2020-04-22 05:36:07.651400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_321382


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.654168"], ["updated_at", "2020-04-22 05:36:07.654168"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.653776"], ["updated_at", "2020-04-22 05:36:07.653776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.661475"], ["updated_at", "2020-04-22 05:36:07.661475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.666590"], ["updated_at", "2020-04-22 05:36:07.666590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_253801


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_881303


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.673105"], ["updated_at", "2020-04-22 05:36:07.673105"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.678648"], ["updated_at", "2020-04-22 05:36:07.678648"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.679123"], ["updated_at", "2020-04-22 05:36:07.679123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.681199"], ["updated_at", "2020-04-22 05:36:07.681199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.681625"], ["updated_at", "2020-04-22 05:36:07.681625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.685493"], ["updated_at", "2020-04-22 05:36:07.685493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_666633


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_189869


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.693634"], ["updated_at", "2020-04-22 05:36:07.693634"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.696942"], ["updated_at", "2020-04-22 05:36:07.696942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.696379"], ["updated_at", "2020-04-22 05:36:07.696379"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.698697"], ["updated_at", "2020-04-22 05:36:07.698697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.700369"], ["updated_at", "2020-04-22 05:36:07.700369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.702554"], ["updated_at", "2020-04-22 05:36:07.702554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_841801


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.714921"], ["updated_at", "2020-04-22 05:36:07.714921"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.717718"], ["updated_at", "2020-04-22 05:36:07.717718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_728088


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.720677"], ["updated_at", "2020-04-22 05:36:07.720677"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.721361"], ["updated_at", "2020-04-22 05:36:07.721361"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.725624"], ["updated_at", "2020-04-22 05:36:07.725624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.728044"], ["updated_at", "2020-04-22 05:36:07.728044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_276611


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_728491


Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.736278"], ["updated_at", "2020-04-22 05:36:07.736278"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.740333"], ["updated_at", "2020-04-22 05:36:07.740333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.742434"], ["updated_at", "2020-04-22 05:36:07.742434"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.745679"], ["updated_at", "2020-04-22 05:36:07.745679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.745569"], ["updated_at", "2020-04-22 05:36:07.745569"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.747928"], ["updated_at", "2020-04-22 05:36:07.747928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_590850


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.757497"], ["updated_at", "2020-04-22 05:36:07.757497"]]
 (0.1ms)  begin transaction

CommentTest: test_347132


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.761004"], ["updated_at", "2020-04-22 05:36:07.761004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.762047"], ["updated_at", "2020-04-22 05:36:07.762047"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.763510"], ["updated_at", "2020-04-22 05:36:07.763510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.764577"], ["updated_at", "2020-04-22 05:36:07.764577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.767062"], ["updated_at", "2020-04-22 05:36:07.767062"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_351935


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_11679


Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.776488"], ["updated_at", "2020-04-22 05:36:07.776488"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.783933"], ["updated_at", "2020-04-22 05:36:07.783933"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.785253"], ["updated_at", "2020-04-22 05:36:07.785253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.787542"], ["updated_at", "2020-04-22 05:36:07.787542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.790161"], ["updated_at", "2020-04-22 05:36:07.790161"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.790729"], ["updated_at", "2020-04-22 05:36:07.790729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_710471



CommentTest: test_12398


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.802512"], ["updated_at", "2020-04-22 05:36:07.802512"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.802819"], ["updated_at", "2020-04-22 05:36:07.802819"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.805219"], ["updated_at", "2020-04-22 05:36:07.805219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.805703"], ["updated_at", "2020-04-22 05:36:07.805703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.807730"], ["updated_at", "2020-04-22 05:36:07.807730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.810156"], ["updated_at", "2020-04-22 05:36:07.810156"]]
 (0.1ms)  begin transaction

CommentTest: test_888837


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.818744"], ["updated_at", "2020-04-22 05:36:07.818744"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.822504"], ["updated_at", "2020-04-22 05:36:07.822504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.825939"], ["updated_at", "2020-04-22 05:36:07.825939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_168861


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.830157"], ["updated_at", "2020-04-22 05:36:07.830157"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.832894"], ["updated_at", "2020-04-22 05:36:07.832894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_621939


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.834822"], ["updated_at", "2020-04-22 05:36:07.834822"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.834702"], ["updated_at", "2020-04-22 05:36:07.834702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.838785"], ["updated_at", "2020-04-22 05:36:07.838785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.840646"], ["updated_at", "2020-04-22 05:36:07.840646"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_801830


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.847514"], ["updated_at", "2020-04-22 05:36:07.847514"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.851100"], ["updated_at", "2020-04-22 05:36:07.851100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_602842


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.853697"], ["updated_at", "2020-04-22 05:36:07.853697"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.853276"], ["updated_at", "2020-04-22 05:36:07.853276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.855768"], ["updated_at", "2020-04-22 05:36:07.855768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.860421"], ["updated_at", "2020-04-22 05:36:07.860421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_349360


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.864480"], ["updated_at", "2020-04-22 05:36:07.864480"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.867383"], ["updated_at", "2020-04-22 05:36:07.867383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.869829"], ["updated_at", "2020-04-22 05:36:07.869829"]]

CommentTest: test_139356


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.872483"], ["updated_at", "2020-04-22 05:36:07.872483"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.875498"], ["updated_at", "2020-04-22 05:36:07.875498"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.877551"], ["updated_at", "2020-04-22 05:36:07.877551"]]

CommentTest: test_376133


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.879985"], ["updated_at", "2020-04-22 05:36:07.879985"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.882752"], ["updated_at", "2020-04-22 05:36:07.882752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_110114


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.884659"], ["updated_at", "2020-04-22 05:36:07.884659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.886970"], ["updated_at", "2020-04-22 05:36:07.886970"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.891911"], ["updated_at", "2020-04-22 05:36:07.891911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_536468


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.894010"], ["updated_at", "2020-04-22 05:36:07.894010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.895852"], ["updated_at", "2020-04-22 05:36:07.895852"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.898728"], ["updated_at", "2020-04-22 05:36:07.898728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.901648"], ["updated_at", "2020-04-22 05:36:07.901648"]]
 (0.1ms)  begin transaction

CommentTest: test_511485


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.905463"], ["updated_at", "2020-04-22 05:36:07.905463"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.908373"], ["updated_at", "2020-04-22 05:36:07.908373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_254925


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.910985"], ["updated_at", "2020-04-22 05:36:07.910985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.912743"], ["updated_at", "2020-04-22 05:36:07.912743"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.914943"], ["updated_at", "2020-04-22 05:36:07.914943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.917173"], ["updated_at", "2020-04-22 05:36:07.917173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_559169


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.922236"], ["updated_at", "2020-04-22 05:36:07.922236"]]
 (0.1ms)  begin transaction

CommentTest: test_172809


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.926830"], ["updated_at", "2020-04-22 05:36:07.926830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.928351"], ["updated_at", "2020-04-22 05:36:07.928351"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.929343"], ["updated_at", "2020-04-22 05:36:07.929343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.930908"], ["updated_at", "2020-04-22 05:36:07.930908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.932925"], ["updated_at", "2020-04-22 05:36:07.932925"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_3349


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.938919"], ["updated_at", "2020-04-22 05:36:07.938919"]]
 (0.1ms)  begin transaction

CommentTest: test_262789


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.941446"], ["updated_at", "2020-04-22 05:36:07.941446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.943264"], ["updated_at", "2020-04-22 05:36:07.943264"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.945062"], ["updated_at", "2020-04-22 05:36:07.945062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.946390"], ["updated_at", "2020-04-22 05:36:07.946390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.948510"], ["updated_at", "2020-04-22 05:36:07.948510"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_558015


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.954215"], ["updated_at", "2020-04-22 05:36:07.954215"]]
 (2.9ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.957388"], ["updated_at", "2020-04-22 05:36:07.957388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.959328"], ["updated_at", "2020-04-22 05:36:07.959328"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_354378


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.962945"], ["updated_at", "2020-04-22 05:36:07.962945"]]
 (0.1ms)  begin transaction

CommentTest: test_756501


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.969246"], ["updated_at", "2020-04-22 05:36:07.969246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.970264"], ["updated_at", "2020-04-22 05:36:07.970264"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.971524"], ["updated_at", "2020-04-22 05:36:07.971524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.972808"], ["updated_at", "2020-04-22 05:36:07.972808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.975105"], ["updated_at", "2020-04-22 05:36:07.975105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_338814


 (0.1ms)  begin transaction

CommentTest: test_795268


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.987462"], ["updated_at", "2020-04-22 05:36:07.987462"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:07.987594"], ["updated_at", "2020-04-22 05:36:07.987594"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.990650"], ["updated_at", "2020-04-22 05:36:07.990650"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:07.993156"], ["updated_at", "2020-04-22 05:36:07.993156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.994500"], ["updated_at", "2020-04-22 05:36:07.994500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:07.997086"], ["updated_at", "2020-04-22 05:36:07.997086"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_756776


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.005489"], ["updated_at", "2020-04-22 05:36:08.005489"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.011621"], ["updated_at", "2020-04-22 05:36:08.011621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_938523


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.014478"], ["updated_at", "2020-04-22 05:36:08.014478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.015271"], ["updated_at", "2020-04-22 05:36:08.015271"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.018146"], ["updated_at", "2020-04-22 05:36:08.018146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_858328


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.021299"], ["updated_at", "2020-04-22 05:36:08.021299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.026438"], ["updated_at", "2020-04-22 05:36:08.026438"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.029361"], ["updated_at", "2020-04-22 05:36:08.029361"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.031730"], ["updated_at", "2020-04-22 05:36:08.031730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_745782


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.039588"], ["updated_at", "2020-04-22 05:36:08.039588"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.042510"], ["updated_at", "2020-04-22 05:36:08.042510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_48325


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.044692"], ["updated_at", "2020-04-22 05:36:08.044692"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.046636"], ["updated_at", "2020-04-22 05:36:08.046636"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.049756"], ["updated_at", "2020-04-22 05:36:08.049756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.054229"], ["updated_at", "2020-04-22 05:36:08.054229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_753079


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_908636


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.062913"], ["updated_at", "2020-04-22 05:36:08.062913"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.065435"], ["updated_at", "2020-04-22 05:36:08.065435"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.066658"], ["updated_at", "2020-04-22 05:36:08.066658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.068438"], ["updated_at", "2020-04-22 05:36:08.068438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.068777"], ["updated_at", "2020-04-22 05:36:08.068777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.070645"], ["updated_at", "2020-04-22 05:36:08.070645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_237756


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_749713


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.081046"], ["updated_at", "2020-04-22 05:36:08.081046"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.082505"], ["updated_at", "2020-04-22 05:36:08.082505"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.083520"], ["updated_at", "2020-04-22 05:36:08.083520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.085044"], ["updated_at", "2020-04-22 05:36:08.085044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.085474"], ["updated_at", "2020-04-22 05:36:08.085474"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.088793"], ["updated_at", "2020-04-22 05:36:08.088793"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_697953


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.097088"], ["updated_at", "2020-04-22 05:36:08.097088"]]
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.100000"], ["updated_at", "2020-04-22 05:36:08.100000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.102375"], ["updated_at", "2020-04-22 05:36:08.102375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_564226


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.8ms)  begin transaction

CommentTest: test_970846


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.133720"], ["updated_at", "2020-04-22 05:36:08.133720"]]
Course Create (43.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.111773"], ["updated_at", "2020-04-22 05:36:08.111773"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.166670"], ["updated_at", "2020-04-22 05:36:08.166670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.188906"], ["updated_at", "2020-04-22 05:36:08.188906"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (4.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.189025"], ["updated_at", "2020-04-22 05:36:08.189025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.210645"], ["updated_at", "2020-04-22 05:36:08.210645"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_235779


 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.234230"], ["updated_at", "2020-04-22 05:36:08.234230"]]
 (6.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.246773"], ["updated_at", "2020-04-22 05:36:08.246773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_402465


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.253894"], ["updated_at", "2020-04-22 05:36:08.253894"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.254365"], ["updated_at", "2020-04-22 05:36:08.254365"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.276972"], ["updated_at", "2020-04-22 05:36:08.276972"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.287170"], ["updated_at", "2020-04-22 05:36:08.287170"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_971640


Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.301758"], ["updated_at", "2020-04-22 05:36:08.301758"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (5.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.314316"], ["updated_at", "2020-04-22 05:36:08.314316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_602990


Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.324873"], ["updated_at", "2020-04-22 05:36:08.324873"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.8ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.332981"], ["updated_at", "2020-04-22 05:36:08.332981"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.353770"], ["updated_at", "2020-04-22 05:36:08.353770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_20529


 (0.6ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.376797"], ["updated_at", "2020-04-22 05:36:08.376797"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.378583"], ["updated_at", "2020-04-22 05:36:08.378583"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.387611"], ["updated_at", "2020-04-22 05:36:08.387611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_793430


Recording Create (7.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.398524"], ["updated_at", "2020-04-22 05:36:08.398524"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.416040"], ["updated_at", "2020-04-22 05:36:08.416040"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.438613"], ["updated_at", "2020-04-22 05:36:08.438613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_531167


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.450956"], ["updated_at", "2020-04-22 05:36:08.450956"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.454801"], ["updated_at", "2020-04-22 05:36:08.454801"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.503204"], ["updated_at", "2020-04-22 05:36:08.503204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.518026"], ["updated_at", "2020-04-22 05:36:08.518026"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

 (33.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_275206


CommentTest: test_602688


 (1.8ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.633205"], ["updated_at", "2020-04-22 05:36:08.633205"]]
 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.645061"], ["updated_at", "2020-04-22 05:36:08.645061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (38.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.639279"], ["updated_at", "2020-04-22 05:36:08.639279"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.683448"], ["updated_at", "2020-04-22 05:36:08.683448"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.693670"], ["updated_at", "2020-04-22 05:36:08.693670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.707903"], ["updated_at", "2020-04-22 05:36:08.707903"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_491339


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.763593"], ["updated_at", "2020-04-22 05:36:08.763593"]]
 (11.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_780881


 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.810853"], ["updated_at", "2020-04-22 05:36:08.810853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.808403"], ["updated_at", "2020-04-22 05:36:08.808403"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.826216"], ["updated_at", "2020-04-22 05:36:08.826216"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.836578"], ["updated_at", "2020-04-22 05:36:08.836578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.851665"], ["updated_at", "2020-04-22 05:36:08.851665"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_23110


 (14.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.897817"], ["updated_at", "2020-04-22 05:36:08.897817"]]
 (0.2ms)  begin transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.909685"], ["updated_at", "2020-04-22 05:36:08.909685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_411688


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.919024"], ["updated_at", "2020-04-22 05:36:08.919024"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.920396"], ["updated_at", "2020-04-22 05:36:08.920396"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.931528"], ["updated_at", "2020-04-22 05:36:08.931528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:08.953430"], ["updated_at", "2020-04-22 05:36:08.953430"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_767853


 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:08.975726"], ["updated_at", "2020-04-22 05:36:08.975726"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:08.986303"], ["updated_at", "2020-04-22 05:36:08.986303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.3ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.000238"], ["updated_at", "2020-04-22 05:36:09.000238"]]
 (0.3ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_163306


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.016505"], ["updated_at", "2020-04-22 05:36:09.016505"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.027017"], ["updated_at", "2020-04-22 05:36:09.027017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.4ms)  rollback transaction
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.036211"], ["updated_at", "2020-04-22 05:36:09.036211"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_879228


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.053837"], ["updated_at", "2020-04-22 05:36:09.053837"]]
Comment Create (9.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.064509"], ["updated_at", "2020-04-22 05:36:09.064509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_98641


Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.071957"], ["updated_at", "2020-04-22 05:36:09.071957"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (16.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.082110"], ["updated_at", "2020-04-22 05:36:09.082110"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.110878"], ["updated_at", "2020-04-22 05:36:09.110878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.129406"], ["updated_at", "2020-04-22 05:36:09.129406"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_840721


Bucket Load (2.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (90.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.146370"], ["updated_at", "2020-04-22 05:36:09.146370"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.250837"], ["updated_at", "2020-04-22 05:36:09.250837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.260366"], ["updated_at", "2020-04-22 05:36:09.260366"]]
 (2.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (20.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_283299


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.310215"], ["updated_at", "2020-04-22 05:36:09.310215"]]
 (2.4ms)  rollback transaction
 (0.5ms)  begin transaction

Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.323661"], ["updated_at", "2020-04-22 05:36:09.323661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_13036


 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.332998"], ["updated_at", "2020-04-22 05:36:09.332998"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.334736"], ["updated_at", "2020-04-22 05:36:09.334736"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.343586"], ["updated_at", "2020-04-22 05:36:09.343586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (5.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.358160"], ["updated_at", "2020-04-22 05:36:09.358160"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_550449


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.385895"], ["updated_at", "2020-04-22 05:36:09.385895"]]
Bucket Create (5.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.399015"], ["updated_at", "2020-04-22 05:36:09.399015"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  begin transaction

CommentTest: test_703311


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.436507"], ["updated_at", "2020-04-22 05:36:09.436507"]]
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.425627"], ["updated_at", "2020-04-22 05:36:09.425627"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.450508"], ["updated_at", "2020-04-22 05:36:09.450508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.465560"], ["updated_at", "2020-04-22 05:36:09.465560"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (1.2ms)  begin transaction

CommentTest: test_651180


 (0.2ms)  SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.491169"], ["updated_at", "2020-04-22 05:36:09.491169"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.510709"], ["updated_at", "2020-04-22 05:36:09.510709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.8ms)  begin transaction

CommentTest: test_62379


Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.524164"], ["updated_at", "2020-04-22 05:36:09.524164"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.533511"], ["updated_at", "2020-04-22 05:36:09.533511"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.555062"], ["updated_at", "2020-04-22 05:36:09.555062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_802413


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.569518"], ["updated_at", "2020-04-22 05:36:09.569518"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.571806"], ["updated_at", "2020-04-22 05:36:09.571806"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.580902"], ["updated_at", "2020-04-22 05:36:09.580902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.589068"], ["updated_at", "2020-04-22 05:36:09.589068"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  begin transaction

CommentTest: test_243171


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.607912"], ["updated_at", "2020-04-22 05:36:09.607912"]]
 (7.0ms)  rollback transaction
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.621614"], ["updated_at", "2020-04-22 05:36:09.621614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_610165


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.633073"], ["updated_at", "2020-04-22 05:36:09.633073"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.634657"], ["updated_at", "2020-04-22 05:36:09.634657"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.653164"], ["updated_at", "2020-04-22 05:36:09.653164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.7ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.666584"], ["updated_at", "2020-04-22 05:36:09.666584"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_321822


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.696849"], ["updated_at", "2020-04-22 05:36:09.696849"]]
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.708150"], ["updated_at", "2020-04-22 05:36:09.708150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_8268


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.717659"], ["updated_at", "2020-04-22 05:36:09.717659"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.724323"], ["updated_at", "2020-04-22 05:36:09.724323"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.734118"], ["updated_at", "2020-04-22 05:36:09.734118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (14.0ms)  rollback transaction
Recording Create (16.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.751011"], ["updated_at", "2020-04-22 05:36:09.751011"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_370289


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (12.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.792711"], ["updated_at", "2020-04-22 05:36:09.792711"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Bucket Create (7.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.836755"], ["updated_at", "2020-04-22 05:36:09.836755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_873142


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (6.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.858474"], ["updated_at", "2020-04-22 05:36:09.858474"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.857556"], ["updated_at", "2020-04-22 05:36:09.857556"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.876001"], ["updated_at", "2020-04-22 05:36:09.876001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.885735"], ["updated_at", "2020-04-22 05:36:09.885735"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_793204


 (0.3ms)  SAVEPOINT active_record_1
Course Create (16.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.907649"], ["updated_at", "2020-04-22 05:36:09.907649"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.947758"], ["updated_at", "2020-04-22 05:36:09.947758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:09.959758"], ["updated_at", "2020-04-22 05:36:09.959758"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_362963


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:09.980869"], ["updated_at", "2020-04-22 05:36:09.980869"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:09.991240"], ["updated_at", "2020-04-22 05:36:09.991240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_584272


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.023527"], ["updated_at", "2020-04-22 05:36:10.023527"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.007152"], ["updated_at", "2020-04-22 05:36:10.007152"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (9.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.042200"], ["updated_at", "2020-04-22 05:36:10.042200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.064834"], ["updated_at", "2020-04-22 05:36:10.064834"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_348586


Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.091984"], ["updated_at", "2020-04-22 05:36:10.091984"]]
 (2.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.104490"], ["updated_at", "2020-04-22 05:36:10.104490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_325392


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.118846"], ["updated_at", "2020-04-22 05:36:10.118846"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.124684"], ["updated_at", "2020-04-22 05:36:10.124684"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.134776"], ["updated_at", "2020-04-22 05:36:10.134776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.239193"], ["updated_at", "2020-04-22 05:36:10.239193"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (13.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (6.6ms)  SAVEPOINT active_record_1
 (1.1ms)  begin transaction

CommentTest: test_378260


Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (14.3ms)  rollback transaction
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.302160"], ["updated_at", "2020-04-22 05:36:10.302160"]]
 (0.3ms)  begin transaction

CommentTest: test_35857


Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.325821"], ["updated_at", "2020-04-22 05:36:10.325821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.330279"], ["updated_at", "2020-04-22 05:36:10.330279"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.339916"], ["updated_at", "2020-04-22 05:36:10.339916"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.396206"], ["updated_at", "2020-04-22 05:36:10.396206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.414928"], ["updated_at", "2020-04-22 05:36:10.414928"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_455904


 (1.0ms)  SAVEPOINT active_record_1
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.439089"], ["updated_at", "2020-04-22 05:36:10.439089"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_672386


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.453617"], ["updated_at", "2020-04-22 05:36:10.453617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (7.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.488851"], ["updated_at", "2020-04-22 05:36:10.488851"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.513172"], ["updated_at", "2020-04-22 05:36:10.513172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.518269"], ["updated_at", "2020-04-22 05:36:10.518269"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.551117"], ["updated_at", "2020-04-22 05:36:10.551117"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (22.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_854492


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_251323


 (0.3ms)  SAVEPOINT active_record_1
Course Create (23.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.609202"], ["updated_at", "2020-04-22 05:36:10.609202"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.745069"], ["updated_at", "2020-04-22 05:36:10.745069"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.787572"], ["updated_at", "2020-04-22 05:36:10.787572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.789374"], ["updated_at", "2020-04-22 05:36:10.789374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.808354"], ["updated_at", "2020-04-22 05:36:10.808354"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.808616"], ["updated_at", "2020-04-22 05:36:10.808616"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (15.0ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_109849


 (0.3ms)  SAVEPOINT active_record_1
Course Create (16.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.862085"], ["updated_at", "2020-04-22 05:36:10.862085"]]
 (0.2ms)  begin transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.895015"], ["updated_at", "2020-04-22 05:36:10.895015"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_417912


Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.905648"], ["updated_at", "2020-04-22 05:36:10.905648"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_450180


Course Create (13.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.920636"], ["updated_at", "2020-04-22 05:36:10.920636"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.959440"], ["updated_at", "2020-04-22 05:36:10.959440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:10.954440"], ["updated_at", "2020-04-22 05:36:10.954440"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:10.970986"], ["updated_at", "2020-04-22 05:36:10.970986"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (1.1ms)  begin transaction

CommentTest: test_588252


 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (6.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:10.981538"], ["updated_at", "2020-04-22 05:36:10.981538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.026126"], ["updated_at", "2020-04-22 05:36:11.026126"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.034310"], ["updated_at", "2020-04-22 05:36:11.034310"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.041848"], ["updated_at", "2020-04-22 05:36:11.041848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.066020"], ["updated_at", "2020-04-22 05:36:11.066020"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (31.5ms)  rollback transaction
 (4.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_235574


 (8.2ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.8ms)  SAVEPOINT active_record_1

CommentTest: test_577433


Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.135082"], ["updated_at", "2020-04-22 05:36:11.135082"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.147066"], ["updated_at", "2020-04-22 05:36:11.147066"]]
Bucket Create (7.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.182214"], ["updated_at", "2020-04-22 05:36:11.182214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.204938"], ["updated_at", "2020-04-22 05:36:11.204938"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.206399"], ["updated_at", "2020-04-22 05:36:11.206399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.226919"], ["updated_at", "2020-04-22 05:36:11.226919"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (5.3ms)  begin transaction

CommentTest: test_346647


 (37.3ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_924512


 (0.9ms)  SAVEPOINT active_record_1
Course Create (16.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.276584"], ["updated_at", "2020-04-22 05:36:11.276584"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.289724"], ["updated_at", "2020-04-22 05:36:11.289724"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.308251"], ["updated_at", "2020-04-22 05:36:11.308251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.308251"], ["updated_at", "2020-04-22 05:36:11.308251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.318548"], ["updated_at", "2020-04-22 05:36:11.318548"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.324576"], ["updated_at", "2020-04-22 05:36:11.324576"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (26.1ms)  rollback transaction
Comment Create (21.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  begin transaction

CommentTest: test_134978


 (5.0ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.414811"], ["updated_at", "2020-04-22 05:36:11.414811"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.437720"], ["updated_at", "2020-04-22 05:36:11.437720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.449640"], ["updated_at", "2020-04-22 05:36:11.449640"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (26.9ms)  rollback transaction
Bucket Load (7.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_424190


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (14.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.491914"], ["updated_at", "2020-04-22 05:36:11.491914"]]
 (10.4ms)  rollback transaction
 (0.7ms)  begin transaction
Bucket Create (5.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.516758"], ["updated_at", "2020-04-22 05:36:11.516758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_380005


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.532206"], ["updated_at", "2020-04-22 05:36:11.532206"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:11.530369"], ["updated_at", "2020-04-22 05:36:11.530369"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (6.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:11.555148"], ["updated_at", "2020-04-22 05:36:11.555148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:11.576467"], ["updated_at", "2020-04-22 05:36:11.576467"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_986107


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_393208


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.138161"], ["updated_at", "2020-04-22 05:36:14.138161"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.140263"], ["updated_at", "2020-04-22 05:36:14.140263"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.141197"], ["updated_at", "2020-04-22 05:36:14.141197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.143507"], ["updated_at", "2020-04-22 05:36:14.143507"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.143378"], ["updated_at", "2020-04-22 05:36:14.143378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.145500"], ["updated_at", "2020-04-22 05:36:14.145500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (8.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_196254


 (0.1ms)  begin transaction

CommentTest: test_718120


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.161612"], ["updated_at", "2020-04-22 05:36:14.161612"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.163208"], ["updated_at", "2020-04-22 05:36:14.163208"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.164883"], ["updated_at", "2020-04-22 05:36:14.164883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.166331"], ["updated_at", "2020-04-22 05:36:14.166331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.166839"], ["updated_at", "2020-04-22 05:36:14.166839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.168985"], ["updated_at", "2020-04-22 05:36:14.168985"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_478815


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.179745"], ["updated_at", "2020-04-22 05:36:14.179745"]]
 (0.1ms)  begin transaction

CommentTest: test_447173


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.183248"], ["updated_at", "2020-04-22 05:36:14.183248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.185286"], ["updated_at", "2020-04-22 05:36:14.185286"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.184971"], ["updated_at", "2020-04-22 05:36:14.184971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.188473"], ["updated_at", "2020-04-22 05:36:14.188473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.190902"], ["updated_at", "2020-04-22 05:36:14.190902"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_709488


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.196381"], ["updated_at", "2020-04-22 05:36:14.196381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.200505"], ["updated_at", "2020-04-22 05:36:14.200505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.203301"], ["updated_at", "2020-04-22 05:36:14.203301"]]

CommentTest: test_469393


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.206994"], ["updated_at", "2020-04-22 05:36:14.206994"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.210068"], ["updated_at", "2020-04-22 05:36:14.210068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.211848"], ["updated_at", "2020-04-22 05:36:14.211848"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_137461


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.215306"], ["updated_at", "2020-04-22 05:36:14.215306"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.218786"], ["updated_at", "2020-04-22 05:36:14.218786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.221494"], ["updated_at", "2020-04-22 05:36:14.221494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_963495


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.224423"], ["updated_at", "2020-04-22 05:36:14.224423"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.228155"], ["updated_at", "2020-04-22 05:36:14.228155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_696503


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.230074"], ["updated_at", "2020-04-22 05:36:14.230074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.231187"], ["updated_at", "2020-04-22 05:36:14.231187"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.233145"], ["updated_at", "2020-04-22 05:36:14.233145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.234671"], ["updated_at", "2020-04-22 05:36:14.234671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_21468


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.242978"], ["updated_at", "2020-04-22 05:36:14.242978"]]

CommentTest: test_840759


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.245755"], ["updated_at", "2020-04-22 05:36:14.245755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.245535"], ["updated_at", "2020-04-22 05:36:14.245535"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.247925"], ["updated_at", "2020-04-22 05:36:14.247925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.248711"], ["updated_at", "2020-04-22 05:36:14.248711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.250795"], ["updated_at", "2020-04-22 05:36:14.250795"]]
 (0.1ms)  begin transaction

CommentTest: test_418017


 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.261566"], ["updated_at", "2020-04-22 05:36:14.261566"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.265762"], ["updated_at", "2020-04-22 05:36:14.265762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.268477"], ["updated_at", "2020-04-22 05:36:14.268477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_854347


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.273382"], ["updated_at", "2020-04-22 05:36:14.273382"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_330030


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.276057"], ["updated_at", "2020-04-22 05:36:14.276057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.278140"], ["updated_at", "2020-04-22 05:36:14.278140"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.277767"], ["updated_at", "2020-04-22 05:36:14.277767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.281343"], ["updated_at", "2020-04-22 05:36:14.281343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.282762"], ["updated_at", "2020-04-22 05:36:14.282762"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_816796


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_546045


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.288121"], ["updated_at", "2020-04-22 05:36:14.288121"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.292831"], ["updated_at", "2020-04-22 05:36:14.292831"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.293872"], ["updated_at", "2020-04-22 05:36:14.293872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.294729"], ["updated_at", "2020-04-22 05:36:14.294729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.295951"], ["updated_at", "2020-04-22 05:36:14.295951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.296381"], ["updated_at", "2020-04-22 05:36:14.296381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_663603


CommentTest: test_372235



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.305872"], ["updated_at", "2020-04-22 05:36:14.305872"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.306028"], ["updated_at", "2020-04-22 05:36:14.306028"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.308514"], ["updated_at", "2020-04-22 05:36:14.308514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.308739"], ["updated_at", "2020-04-22 05:36:14.308739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.310370"], ["updated_at", "2020-04-22 05:36:14.310370"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.310771"], ["updated_at", "2020-04-22 05:36:14.310771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_430965


 (0.1ms)  begin transaction

CommentTest: test_928784


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.319052"], ["updated_at", "2020-04-22 05:36:14.319052"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.319527"], ["updated_at", "2020-04-22 05:36:14.319527"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.326489"], ["updated_at", "2020-04-22 05:36:14.326489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.327389"], ["updated_at", "2020-04-22 05:36:14.327389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.329066"], ["updated_at", "2020-04-22 05:36:14.329066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.330633"], ["updated_at", "2020-04-22 05:36:14.330633"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_539990


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.337462"], ["updated_at", "2020-04-22 05:36:14.337462"]]
 (0.1ms)  begin transaction

CommentTest: test_367597


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.339936"], ["updated_at", "2020-04-22 05:36:14.339936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.340110"], ["updated_at", "2020-04-22 05:36:14.340110"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.342072"], ["updated_at", "2020-04-22 05:36:14.342072"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.342276"], ["updated_at", "2020-04-22 05:36:14.342276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.345157"], ["updated_at", "2020-04-22 05:36:14.345157"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_564467


 (0.1ms)  begin transaction

CommentTest: test_538980


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.354788"], ["updated_at", "2020-04-22 05:36:14.354788"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.356251"], ["updated_at", "2020-04-22 05:36:14.356251"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.358283"], ["updated_at", "2020-04-22 05:36:14.358283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.358716"], ["updated_at", "2020-04-22 05:36:14.358716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.360232"], ["updated_at", "2020-04-22 05:36:14.360232"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.360314"], ["updated_at", "2020-04-22 05:36:14.360314"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.0ms)  begin transaction


CommentTest: test_729904 CommentTest: test_901026



 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.369845"], ["updated_at", "2020-04-22 05:36:14.369845"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.370259"], ["updated_at", "2020-04-22 05:36:14.370259"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.373745"], ["updated_at", "2020-04-22 05:36:14.373745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.374299"], ["updated_at", "2020-04-22 05:36:14.374299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.375613"], ["updated_at", "2020-04-22 05:36:14.375613"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.376122"], ["updated_at", "2020-04-22 05:36:14.376122"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_348269


 (0.1ms)  begin transaction

CommentTest: test_900813


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.383656"], ["updated_at", "2020-04-22 05:36:14.383656"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.384462"], ["updated_at", "2020-04-22 05:36:14.384462"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.386968"], ["updated_at", "2020-04-22 05:36:14.386968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.387711"], ["updated_at", "2020-04-22 05:36:14.387711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.389684"], ["updated_at", "2020-04-22 05:36:14.389684"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.390227"], ["updated_at", "2020-04-22 05:36:14.390227"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_354776


CommentTest: test_471789



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.398996"], ["updated_at", "2020-04-22 05:36:14.398996"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.398912"], ["updated_at", "2020-04-22 05:36:14.398912"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.401117"], ["updated_at", "2020-04-22 05:36:14.401117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.401843"], ["updated_at", "2020-04-22 05:36:14.401843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.403162"], ["updated_at", "2020-04-22 05:36:14.403162"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.406750"], ["updated_at", "2020-04-22 05:36:14.406750"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_619449


 (0.1ms)  begin transaction

CommentTest: test_941107


 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.420345"], ["updated_at", "2020-04-22 05:36:14.420345"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.420582"], ["updated_at", "2020-04-22 05:36:14.420582"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.423652"], ["updated_at", "2020-04-22 05:36:14.423652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.425536"], ["updated_at", "2020-04-22 05:36:14.425536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.424545"], ["updated_at", "2020-04-22 05:36:14.424545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.427897"], ["updated_at", "2020-04-22 05:36:14.427897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_372750


 (0.0ms)  begin transaction

CommentTest: test_599722


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.435103"], ["updated_at", "2020-04-22 05:36:14.435103"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.435910"], ["updated_at", "2020-04-22 05:36:14.435910"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.438223"], ["updated_at", "2020-04-22 05:36:14.438223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.439392"], ["updated_at", "2020-04-22 05:36:14.439392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.440694"], ["updated_at", "2020-04-22 05:36:14.440694"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.441301"], ["updated_at", "2020-04-22 05:36:14.441301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_619232


 (0.1ms)  begin transaction

CommentTest: test_370858


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.449517"], ["updated_at", "2020-04-22 05:36:14.449517"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.450830"], ["updated_at", "2020-04-22 05:36:14.450830"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.452252"], ["updated_at", "2020-04-22 05:36:14.452252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.453514"], ["updated_at", "2020-04-22 05:36:14.453514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.455855"], ["updated_at", "2020-04-22 05:36:14.455855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.458182"], ["updated_at", "2020-04-22 05:36:14.458182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_526612


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_953171


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.465168"], ["updated_at", "2020-04-22 05:36:14.465168"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.467086"], ["updated_at", "2020-04-22 05:36:14.467086"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.470090"], ["updated_at", "2020-04-22 05:36:14.470090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.470367"], ["updated_at", "2020-04-22 05:36:14.470367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.474873"], ["updated_at", "2020-04-22 05:36:14.474873"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.474538"], ["updated_at", "2020-04-22 05:36:14.474538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_845364


 (0.1ms)  begin transaction

CommentTest: test_191310


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.485335"], ["updated_at", "2020-04-22 05:36:14.485335"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.485905"], ["updated_at", "2020-04-22 05:36:14.485905"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.489256"], ["updated_at", "2020-04-22 05:36:14.489256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.489286"], ["updated_at", "2020-04-22 05:36:14.489286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.491002"], ["updated_at", "2020-04-22 05:36:14.491002"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.491288"], ["updated_at", "2020-04-22 05:36:14.491288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_384406



CommentTest: test_772423


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.500248"], ["updated_at", "2020-04-22 05:36:14.500248"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.500489"], ["updated_at", "2020-04-22 05:36:14.500489"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.502998"], ["updated_at", "2020-04-22 05:36:14.502998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.502998"], ["updated_at", "2020-04-22 05:36:14.502998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.505068"], ["updated_at", "2020-04-22 05:36:14.505068"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.505372"], ["updated_at", "2020-04-22 05:36:14.505372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (4.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_297145


 (0.1ms)  begin transaction

CommentTest: test_492698


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.520914"], ["updated_at", "2020-04-22 05:36:14.520914"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.520674"], ["updated_at", "2020-04-22 05:36:14.520674"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.523919"], ["updated_at", "2020-04-22 05:36:14.523919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.523919"], ["updated_at", "2020-04-22 05:36:14.523919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.525776"], ["updated_at", "2020-04-22 05:36:14.525776"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.525864"], ["updated_at", "2020-04-22 05:36:14.525864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_388315


 (0.1ms)  begin transaction

CommentTest: test_654096


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.538190"], ["updated_at", "2020-04-22 05:36:14.538190"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.539590"], ["updated_at", "2020-04-22 05:36:14.539590"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.541685"], ["updated_at", "2020-04-22 05:36:14.541685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.541396"], ["updated_at", "2020-04-22 05:36:14.541396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.543385"], ["updated_at", "2020-04-22 05:36:14.543385"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.543821"], ["updated_at", "2020-04-22 05:36:14.543821"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_311379


 (0.1ms)  begin transaction

CommentTest: test_946182


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.552535"], ["updated_at", "2020-04-22 05:36:14.552535"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.552903"], ["updated_at", "2020-04-22 05:36:14.552903"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.556657"], ["updated_at", "2020-04-22 05:36:14.556657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.557308"], ["updated_at", "2020-04-22 05:36:14.557308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.558729"], ["updated_at", "2020-04-22 05:36:14.558729"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.559501"], ["updated_at", "2020-04-22 05:36:14.559501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_848191


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.569849"], ["updated_at", "2020-04-22 05:36:14.569849"]]
 (0.1ms)  begin transaction

CommentTest: test_873906


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.574473"], ["updated_at", "2020-04-22 05:36:14.574473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.574905"], ["updated_at", "2020-04-22 05:36:14.574905"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.576856"], ["updated_at", "2020-04-22 05:36:14.576856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.576454"], ["updated_at", "2020-04-22 05:36:14.576454"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.578356"], ["updated_at", "2020-04-22 05:36:14.578356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_101120


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.584208"], ["updated_at", "2020-04-22 05:36:14.584208"]]
 (0.1ms)  begin transaction

CommentTest: test_658338


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.586599"], ["updated_at", "2020-04-22 05:36:14.586599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.587841"], ["updated_at", "2020-04-22 05:36:14.587841"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.589845"], ["updated_at", "2020-04-22 05:36:14.589845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.590859"], ["updated_at", "2020-04-22 05:36:14.590859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.592548"], ["updated_at", "2020-04-22 05:36:14.592548"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_672186


 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.598690"], ["updated_at", "2020-04-22 05:36:14.598690"]]
 (0.1ms)  begin transaction

CommentTest: test_840835


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.601658"], ["updated_at", "2020-04-22 05:36:14.601658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.601710"], ["updated_at", "2020-04-22 05:36:14.601710"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.603477"], ["updated_at", "2020-04-22 05:36:14.603477"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.604945"], ["updated_at", "2020-04-22 05:36:14.604945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.607773"], ["updated_at", "2020-04-22 05:36:14.607773"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_443416


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.627070"], ["updated_at", "2020-04-22 05:36:14.627070"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_54350


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.630014"], ["updated_at", "2020-04-22 05:36:14.630014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.632329"], ["updated_at", "2020-04-22 05:36:14.632329"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.631950"], ["updated_at", "2020-04-22 05:36:14.631950"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.634366"], ["updated_at", "2020-04-22 05:36:14.634366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.636711"], ["updated_at", "2020-04-22 05:36:14.636711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_773481


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.641955"], ["updated_at", "2020-04-22 05:36:14.641955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.644478"], ["updated_at", "2020-04-22 05:36:14.644478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_968188


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.646088"], ["updated_at", "2020-04-22 05:36:14.646088"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.647818"], ["updated_at", "2020-04-22 05:36:14.647818"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.650083"], ["updated_at", "2020-04-22 05:36:14.650083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.651718"], ["updated_at", "2020-04-22 05:36:14.651718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_675678


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.656021"], ["updated_at", "2020-04-22 05:36:14.656021"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.659992"], ["updated_at", "2020-04-22 05:36:14.659992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_603690


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.662217"], ["updated_at", "2020-04-22 05:36:14.662217"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.662944"], ["updated_at", "2020-04-22 05:36:14.662944"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.666395"], ["updated_at", "2020-04-22 05:36:14.666395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.668658"], ["updated_at", "2020-04-22 05:36:14.668658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_511817


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.673696"], ["updated_at", "2020-04-22 05:36:14.673696"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.676213"], ["updated_at", "2020-04-22 05:36:14.676213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_417549


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.677784"], ["updated_at", "2020-04-22 05:36:14.677784"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.678118"], ["updated_at", "2020-04-22 05:36:14.678118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.679864"], ["updated_at", "2020-04-22 05:36:14.679864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.681787"], ["updated_at", "2020-04-22 05:36:14.681787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_322199


 (0.2ms)  begin transaction

CommentTest: test_98398


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.698750"], ["updated_at", "2020-04-22 05:36:14.698750"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.699336"], ["updated_at", "2020-04-22 05:36:14.699336"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.701235"], ["updated_at", "2020-04-22 05:36:14.701235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.702254"], ["updated_at", "2020-04-22 05:36:14.702254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.703351"], ["updated_at", "2020-04-22 05:36:14.703351"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.705477"], ["updated_at", "2020-04-22 05:36:14.705477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_627593


 (0.4ms)  begin transaction

CommentTest: test_455504


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.716119"], ["updated_at", "2020-04-22 05:36:14.716119"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.716143"], ["updated_at", "2020-04-22 05:36:14.716143"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.718308"], ["updated_at", "2020-04-22 05:36:14.718308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.718743"], ["updated_at", "2020-04-22 05:36:14.718743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.720998"], ["updated_at", "2020-04-22 05:36:14.720998"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.720868"], ["updated_at", "2020-04-22 05:36:14.720868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_576899


 (0.1ms)  begin transaction

CommentTest: test_319173


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.730052"], ["updated_at", "2020-04-22 05:36:14.730052"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.730569"], ["updated_at", "2020-04-22 05:36:14.730569"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.732595"], ["updated_at", "2020-04-22 05:36:14.732595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.733608"], ["updated_at", "2020-04-22 05:36:14.733608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.734313"], ["updated_at", "2020-04-22 05:36:14.734313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.735535"], ["updated_at", "2020-04-22 05:36:14.735535"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_45802


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_444509


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.743687"], ["updated_at", "2020-04-22 05:36:14.743687"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.745870"], ["updated_at", "2020-04-22 05:36:14.745870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.745688"], ["updated_at", "2020-04-22 05:36:14.745688"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.748428"], ["updated_at", "2020-04-22 05:36:14.748428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.754040"], ["updated_at", "2020-04-22 05:36:14.754040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.758780"], ["updated_at", "2020-04-22 05:36:14.758780"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_408965


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.764268"], ["updated_at", "2020-04-22 05:36:14.764268"]]
 (0.2ms)  begin transaction

CommentTest: test_861984


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.767917"], ["updated_at", "2020-04-22 05:36:14.767917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.769964"], ["updated_at", "2020-04-22 05:36:14.769964"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.773336"], ["updated_at", "2020-04-22 05:36:14.773336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.774520"], ["updated_at", "2020-04-22 05:36:14.774520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.776447"], ["updated_at", "2020-04-22 05:36:14.776447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_247744


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.780876"], ["updated_at", "2020-04-22 05:36:14.780876"]]
 (0.1ms)  begin transaction

CommentTest: test_553276


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.784385"], ["updated_at", "2020-04-22 05:36:14.784385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.785333"], ["updated_at", "2020-04-22 05:36:14.785333"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.786550"], ["updated_at", "2020-04-22 05:36:14.786550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.789304"], ["updated_at", "2020-04-22 05:36:14.789304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.791439"], ["updated_at", "2020-04-22 05:36:14.791439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_633600


 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_798406


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.799456"], ["updated_at", "2020-04-22 05:36:14.799456"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.801217"], ["updated_at", "2020-04-22 05:36:14.801217"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.802435"], ["updated_at", "2020-04-22 05:36:14.802435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.804542"], ["updated_at", "2020-04-22 05:36:14.804542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.808488"], ["updated_at", "2020-04-22 05:36:14.808488"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.810278"], ["updated_at", "2020-04-22 05:36:14.810278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_752686


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_352950


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.820336"], ["updated_at", "2020-04-22 05:36:14.820336"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.823842"], ["updated_at", "2020-04-22 05:36:14.823842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.825355"], ["updated_at", "2020-04-22 05:36:14.825355"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.823565"], ["updated_at", "2020-04-22 05:36:14.823565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.827496"], ["updated_at", "2020-04-22 05:36:14.827496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.829448"], ["updated_at", "2020-04-22 05:36:14.829448"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_199853


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.833197"], ["updated_at", "2020-04-22 05:36:14.833197"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.836089"], ["updated_at", "2020-04-22 05:36:14.836089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_772912


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.838391"], ["updated_at", "2020-04-22 05:36:14.838391"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.840960"], ["updated_at", "2020-04-22 05:36:14.840960"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.843804"], ["updated_at", "2020-04-22 05:36:14.843804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.845276"], ["updated_at", "2020-04-22 05:36:14.845276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_20488


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.848332"], ["updated_at", "2020-04-22 05:36:14.848332"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.851458"], ["updated_at", "2020-04-22 05:36:14.851458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_544161


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.854324"], ["updated_at", "2020-04-22 05:36:14.854324"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.854760"], ["updated_at", "2020-04-22 05:36:14.854760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.858155"], ["updated_at", "2020-04-22 05:36:14.858155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.859874"], ["updated_at", "2020-04-22 05:36:14.859874"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_708588


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.865667"], ["updated_at", "2020-04-22 05:36:14.865667"]]
 (0.6ms)  begin transaction

CommentTest: test_623784


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.872388"], ["updated_at", "2020-04-22 05:36:14.872388"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.872631"], ["updated_at", "2020-04-22 05:36:14.872631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.877584"], ["updated_at", "2020-04-22 05:36:14.877584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.878020"], ["updated_at", "2020-04-22 05:36:14.878020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.879875"], ["updated_at", "2020-04-22 05:36:14.879875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_719715


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.887039"], ["updated_at", "2020-04-22 05:36:14.887039"]]

CommentTest: test_454852


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.890697"], ["updated_at", "2020-04-22 05:36:14.890697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.890076"], ["updated_at", "2020-04-22 05:36:14.890076"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.892327"], ["updated_at", "2020-04-22 05:36:14.892327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.893057"], ["updated_at", "2020-04-22 05:36:14.893057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.894954"], ["updated_at", "2020-04-22 05:36:14.894954"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_156992


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_166844


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.900776"], ["updated_at", "2020-04-22 05:36:14.900776"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.903207"], ["updated_at", "2020-04-22 05:36:14.903207"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.906396"], ["updated_at", "2020-04-22 05:36:14.906396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.907617"], ["updated_at", "2020-04-22 05:36:14.907617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.909448"], ["updated_at", "2020-04-22 05:36:14.909448"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.910458"], ["updated_at", "2020-04-22 05:36:14.910458"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_576195


 (0.1ms)  begin transaction

CommentTest: test_5040


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.919000"], ["updated_at", "2020-04-22 05:36:14.919000"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.918990"], ["updated_at", "2020-04-22 05:36:14.918990"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.922630"], ["updated_at", "2020-04-22 05:36:14.922630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.923392"], ["updated_at", "2020-04-22 05:36:14.923392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.924898"], ["updated_at", "2020-04-22 05:36:14.924898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.925283"], ["updated_at", "2020-04-22 05:36:14.925283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_422535


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.936943"], ["updated_at", "2020-04-22 05:36:14.936943"]]
 (0.1ms)  begin transaction

CommentTest: test_627873


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.941173"], ["updated_at", "2020-04-22 05:36:14.941173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.942037"], ["updated_at", "2020-04-22 05:36:14.942037"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.943742"], ["updated_at", "2020-04-22 05:36:14.943742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.945404"], ["updated_at", "2020-04-22 05:36:14.945404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.948272"], ["updated_at", "2020-04-22 05:36:14.948272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_612973


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.957330"], ["updated_at", "2020-04-22 05:36:14.957330"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.960837"], ["updated_at", "2020-04-22 05:36:14.960837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.964305"], ["updated_at", "2020-04-22 05:36:14.964305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_468745


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.968289"], ["updated_at", "2020-04-22 05:36:14.968289"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_863975


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.975727"], ["updated_at", "2020-04-22 05:36:14.975727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.977598"], ["updated_at", "2020-04-22 05:36:14.977598"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.977356"], ["updated_at", "2020-04-22 05:36:14.977356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.979610"], ["updated_at", "2020-04-22 05:36:14.979610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.981571"], ["updated_at", "2020-04-22 05:36:14.981571"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_778


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.986716"], ["updated_at", "2020-04-22 05:36:14.986716"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.990463"], ["updated_at", "2020-04-22 05:36:14.990463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_117841


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.992155"], ["updated_at", "2020-04-22 05:36:14.992155"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:14.992402"], ["updated_at", "2020-04-22 05:36:14.992402"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:14.994983"], ["updated_at", "2020-04-22 05:36:14.994983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:14.996886"], ["updated_at", "2020-04-22 05:36:14.996886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_341628


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.000081"], ["updated_at", "2020-04-22 05:36:15.000081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.002827"], ["updated_at", "2020-04-22 05:36:15.002827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_495679


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.005654"], ["updated_at", "2020-04-22 05:36:15.005654"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.007325"], ["updated_at", "2020-04-22 05:36:15.007325"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.009152"], ["updated_at", "2020-04-22 05:36:15.009152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.011361"], ["updated_at", "2020-04-22 05:36:15.011361"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_756233


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.016344"], ["updated_at", "2020-04-22 05:36:15.016344"]]
 (0.1ms)  begin transaction

CommentTest: test_622247


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (5.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.018534"], ["updated_at", "2020-04-22 05:36:15.018534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.020920"], ["updated_at", "2020-04-22 05:36:15.020920"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.025406"], ["updated_at", "2020-04-22 05:36:15.025406"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.025483"], ["updated_at", "2020-04-22 05:36:15.025483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.029044"], ["updated_at", "2020-04-22 05:36:15.029044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_881805


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.035354"], ["updated_at", "2020-04-22 05:36:15.035354"]]
 (0.1ms)  begin transaction

CommentTest: test_900568


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.040992"], ["updated_at", "2020-04-22 05:36:15.040992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.043212"], ["updated_at", "2020-04-22 05:36:15.043212"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.042620"], ["updated_at", "2020-04-22 05:36:15.042620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.045499"], ["updated_at", "2020-04-22 05:36:15.045499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.049106"], ["updated_at", "2020-04-22 05:36:15.049106"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_806668


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.051843"], ["updated_at", "2020-04-22 05:36:15.051843"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.054246"], ["updated_at", "2020-04-22 05:36:15.054246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.056909"], ["updated_at", "2020-04-22 05:36:15.056909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_411384


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.060214"], ["updated_at", "2020-04-22 05:36:15.060214"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_309300


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.063765"], ["updated_at", "2020-04-22 05:36:15.063765"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.065895"], ["updated_at", "2020-04-22 05:36:15.065895"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.065516"], ["updated_at", "2020-04-22 05:36:15.065516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.068315"], ["updated_at", "2020-04-22 05:36:15.068315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.072068"], ["updated_at", "2020-04-22 05:36:15.072068"]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_156792


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.076525"], ["updated_at", "2020-04-22 05:36:15.076525"]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_205572


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.079181"], ["updated_at", "2020-04-22 05:36:15.079181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.081336"], ["updated_at", "2020-04-22 05:36:15.081336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.080890"], ["updated_at", "2020-04-22 05:36:15.080890"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.083756"], ["updated_at", "2020-04-22 05:36:15.083756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.085202"], ["updated_at", "2020-04-22 05:36:15.085202"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_188532


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_279430


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.095611"], ["updated_at", "2020-04-22 05:36:15.095611"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.097902"], ["updated_at", "2020-04-22 05:36:15.097902"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.098629"], ["updated_at", "2020-04-22 05:36:15.098629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.099913"], ["updated_at", "2020-04-22 05:36:15.099913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.100652"], ["updated_at", "2020-04-22 05:36:15.100652"]]
Recording Create (0.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.101366"], ["updated_at", "2020-04-22 05:36:15.101366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_808568 CommentTest: test_562064



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.110591"], ["updated_at", "2020-04-22 05:36:15.110591"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.110649"], ["updated_at", "2020-04-22 05:36:15.110649"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.113480"], ["updated_at", "2020-04-22 05:36:15.113480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.113846"], ["updated_at", "2020-04-22 05:36:15.113846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.115754"], ["updated_at", "2020-04-22 05:36:15.115754"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.115552"], ["updated_at", "2020-04-22 05:36:15.115552"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_116921


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.125259"], ["updated_at", "2020-04-22 05:36:15.125259"]]

CommentTest: test_823137


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.127362"], ["updated_at", "2020-04-22 05:36:15.127362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.127371"], ["updated_at", "2020-04-22 05:36:15.127371"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.128885"], ["updated_at", "2020-04-22 05:36:15.128885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.129824"], ["updated_at", "2020-04-22 05:36:15.129824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.131342"], ["updated_at", "2020-04-22 05:36:15.131342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_25729


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_895479


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.142773"], ["updated_at", "2020-04-22 05:36:15.142773"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.145783"], ["updated_at", "2020-04-22 05:36:15.145783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.144743"], ["updated_at", "2020-04-22 05:36:15.144743"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.148593"], ["updated_at", "2020-04-22 05:36:15.148593"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.148625"], ["updated_at", "2020-04-22 05:36:15.148625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.152268"], ["updated_at", "2020-04-22 05:36:15.152268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_39952


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.161476"], ["updated_at", "2020-04-22 05:36:15.161476"]]
 (0.2ms)  begin transaction

CommentTest: test_629956


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.163931"], ["updated_at", "2020-04-22 05:36:15.163931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.164869"], ["updated_at", "2020-04-22 05:36:15.164869"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.166347"], ["updated_at", "2020-04-22 05:36:15.166347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.167550"], ["updated_at", "2020-04-22 05:36:15.167550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.170165"], ["updated_at", "2020-04-22 05:36:15.170165"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_972421


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_117007


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.178914"], ["updated_at", "2020-04-22 05:36:15.178914"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.180787"], ["updated_at", "2020-04-22 05:36:15.180787"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.181169"], ["updated_at", "2020-04-22 05:36:15.181169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.182957"], ["updated_at", "2020-04-22 05:36:15.182957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.183184"], ["updated_at", "2020-04-22 05:36:15.183184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.184368"], ["updated_at", "2020-04-22 05:36:15.184368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_600531



CommentTest: test_725637


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.193721"], ["updated_at", "2020-04-22 05:36:15.193721"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.193970"], ["updated_at", "2020-04-22 05:36:15.193970"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.196025"], ["updated_at", "2020-04-22 05:36:15.196025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.196440"], ["updated_at", "2020-04-22 05:36:15.196440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.198397"], ["updated_at", "2020-04-22 05:36:15.198397"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.198703"], ["updated_at", "2020-04-22 05:36:15.198703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_214210



CommentTest: test_615399


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.215180"], ["updated_at", "2020-04-22 05:36:15.215180"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.215211"], ["updated_at", "2020-04-22 05:36:15.215211"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.217146"], ["updated_at", "2020-04-22 05:36:15.217146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.217797"], ["updated_at", "2020-04-22 05:36:15.217797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.219403"], ["updated_at", "2020-04-22 05:36:15.219403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.221046"], ["updated_at", "2020-04-22 05:36:15.221046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_372462


 (0.1ms)  begin transaction

CommentTest: test_478747


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.230646"], ["updated_at", "2020-04-22 05:36:15.230646"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.231457"], ["updated_at", "2020-04-22 05:36:15.231457"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.232902"], ["updated_at", "2020-04-22 05:36:15.232902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.234441"], ["updated_at", "2020-04-22 05:36:15.234441"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.234154"], ["updated_at", "2020-04-22 05:36:15.234154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.236930"], ["updated_at", "2020-04-22 05:36:15.236930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_280269


 (0.1ms)  begin transaction

CommentTest: test_198929


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.248467"], ["updated_at", "2020-04-22 05:36:15.248467"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.249791"], ["updated_at", "2020-04-22 05:36:15.249791"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.253362"], ["updated_at", "2020-04-22 05:36:15.253362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.253175"], ["updated_at", "2020-04-22 05:36:15.253175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.256226"], ["updated_at", "2020-04-22 05:36:15.256226"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.257942"], ["updated_at", "2020-04-22 05:36:15.257942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_894021


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.269109"], ["updated_at", "2020-04-22 05:36:15.269109"]]
 (0.4ms)  begin transaction

CommentTest: test_11103


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.275010"], ["updated_at", "2020-04-22 05:36:15.275010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.275042"], ["updated_at", "2020-04-22 05:36:15.275042"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.277394"], ["updated_at", "2020-04-22 05:36:15.277394"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.278223"], ["updated_at", "2020-04-22 05:36:15.278223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.280474"], ["updated_at", "2020-04-22 05:36:15.280474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_935850


 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_834584


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.287021"], ["updated_at", "2020-04-22 05:36:15.287021"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.290641"], ["updated_at", "2020-04-22 05:36:15.290641"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.291610"], ["updated_at", "2020-04-22 05:36:15.291610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.292861"], ["updated_at", "2020-04-22 05:36:15.292861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.293631"], ["updated_at", "2020-04-22 05:36:15.293631"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.294266"], ["updated_at", "2020-04-22 05:36:15.294266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_915323



CommentTest: test_440941


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.304503"], ["updated_at", "2020-04-22 05:36:15.304503"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.304357"], ["updated_at", "2020-04-22 05:36:15.304357"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.307619"], ["updated_at", "2020-04-22 05:36:15.307619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.307681"], ["updated_at", "2020-04-22 05:36:15.307681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.309653"], ["updated_at", "2020-04-22 05:36:15.309653"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.309624"], ["updated_at", "2020-04-22 05:36:15.309624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_269146


 (0.1ms)  begin transaction

CommentTest: test_62880


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.319846"], ["updated_at", "2020-04-22 05:36:15.319846"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.322330"], ["updated_at", "2020-04-22 05:36:15.322330"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.325629"], ["updated_at", "2020-04-22 05:36:15.325629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.326554"], ["updated_at", "2020-04-22 05:36:15.326554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.328142"], ["updated_at", "2020-04-22 05:36:15.328142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.329059"], ["updated_at", "2020-04-22 05:36:15.329059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_8735



CommentTest: test_180050


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.337527"], ["updated_at", "2020-04-22 05:36:15.337527"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.338755"], ["updated_at", "2020-04-22 05:36:15.338755"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.340651"], ["updated_at", "2020-04-22 05:36:15.340651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.342592"], ["updated_at", "2020-04-22 05:36:15.342592"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.342662"], ["updated_at", "2020-04-22 05:36:15.342662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.344526"], ["updated_at", "2020-04-22 05:36:15.344526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_828394



CommentTest: test_165304


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.353362"], ["updated_at", "2020-04-22 05:36:15.353362"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.353556"], ["updated_at", "2020-04-22 05:36:15.353556"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.355883"], ["updated_at", "2020-04-22 05:36:15.355883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.357117"], ["updated_at", "2020-04-22 05:36:15.357117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.358543"], ["updated_at", "2020-04-22 05:36:15.358543"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.359506"], ["updated_at", "2020-04-22 05:36:15.359506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_770458


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_801596


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.367726"], ["updated_at", "2020-04-22 05:36:15.367726"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.369069"], ["updated_at", "2020-04-22 05:36:15.369069"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.372496"], ["updated_at", "2020-04-22 05:36:15.372496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.371779"], ["updated_at", "2020-04-22 05:36:15.371779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.375045"], ["updated_at", "2020-04-22 05:36:15.375045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.375954"], ["updated_at", "2020-04-22 05:36:15.375954"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_237863


Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.384846"], ["updated_at", "2020-04-22 05:36:15.384846"]]
 (0.1ms)  begin transaction

CommentTest: test_171794


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.390985"], ["updated_at", "2020-04-22 05:36:15.390985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.393762"], ["updated_at", "2020-04-22 05:36:15.393762"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.393289"], ["updated_at", "2020-04-22 05:36:15.393289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.395915"], ["updated_at", "2020-04-22 05:36:15.395915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.397699"], ["updated_at", "2020-04-22 05:36:15.397699"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_658765


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.401667"], ["updated_at", "2020-04-22 05:36:15.401667"]]
 (0.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_356972


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.405397"], ["updated_at", "2020-04-22 05:36:15.405397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.407170"], ["updated_at", "2020-04-22 05:36:15.407170"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.409027"], ["updated_at", "2020-04-22 05:36:15.409027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.410638"], ["updated_at", "2020-04-22 05:36:15.410638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.412500"], ["updated_at", "2020-04-22 05:36:15.412500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_354987


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_223349


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.419047"], ["updated_at", "2020-04-22 05:36:15.419047"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.421328"], ["updated_at", "2020-04-22 05:36:15.421328"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.423541"], ["updated_at", "2020-04-22 05:36:15.423541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.424399"], ["updated_at", "2020-04-22 05:36:15.424399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.425875"], ["updated_at", "2020-04-22 05:36:15.425875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.426590"], ["updated_at", "2020-04-22 05:36:15.426590"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_34961


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.433830"], ["updated_at", "2020-04-22 05:36:15.433830"]]
 (0.1ms)  begin transaction

CommentTest: test_319085


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.436592"], ["updated_at", "2020-04-22 05:36:15.436592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.437065"], ["updated_at", "2020-04-22 05:36:15.437065"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.438786"], ["updated_at", "2020-04-22 05:36:15.438786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.440082"], ["updated_at", "2020-04-22 05:36:15.440082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.442449"], ["updated_at", "2020-04-22 05:36:15.442449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_211063


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.449878"], ["updated_at", "2020-04-22 05:36:15.449878"]]
 (0.1ms)  begin transaction

CommentTest: test_400116


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.455408"], ["updated_at", "2020-04-22 05:36:15.455408"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.456713"], ["updated_at", "2020-04-22 05:36:15.456713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.459831"], ["updated_at", "2020-04-22 05:36:15.459831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.460726"], ["updated_at", "2020-04-22 05:36:15.460726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.462726"], ["updated_at", "2020-04-22 05:36:15.462726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.8ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_581187


 (0.1ms)  begin transaction

CommentTest: test_675295


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.478395"], ["updated_at", "2020-04-22 05:36:15.478395"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.479671"], ["updated_at", "2020-04-22 05:36:15.479671"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.481278"], ["updated_at", "2020-04-22 05:36:15.481278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.483582"], ["updated_at", "2020-04-22 05:36:15.483582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (5.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.483548"], ["updated_at", "2020-04-22 05:36:15.483548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.491650"], ["updated_at", "2020-04-22 05:36:15.491650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_710490


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.501469"], ["updated_at", "2020-04-22 05:36:15.501469"]]
 (0.2ms)  begin transaction

CommentTest: test_963449


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.509700"], ["updated_at", "2020-04-22 05:36:15.509700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.510924"], ["updated_at", "2020-04-22 05:36:15.510924"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.512393"], ["updated_at", "2020-04-22 05:36:15.512393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.513853"], ["updated_at", "2020-04-22 05:36:15.513853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.516343"], ["updated_at", "2020-04-22 05:36:15.516343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_196959


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.522221"], ["updated_at", "2020-04-22 05:36:15.522221"]]
 (0.1ms)  begin transaction

CommentTest: test_44133


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.526309"], ["updated_at", "2020-04-22 05:36:15.526309"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.526535"], ["updated_at", "2020-04-22 05:36:15.526535"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.528383"], ["updated_at", "2020-04-22 05:36:15.528383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.528868"], ["updated_at", "2020-04-22 05:36:15.528868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.530755"], ["updated_at", "2020-04-22 05:36:15.530755"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_49656


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.534782"], ["updated_at", "2020-04-22 05:36:15.534782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.537370"], ["updated_at", "2020-04-22 05:36:15.537370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_975262


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.541324"], ["updated_at", "2020-04-22 05:36:15.541324"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.543784"], ["updated_at", "2020-04-22 05:36:15.543784"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.546338"], ["updated_at", "2020-04-22 05:36:15.546338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.548100"], ["updated_at", "2020-04-22 05:36:15.548100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_904565


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.551975"], ["updated_at", "2020-04-22 05:36:15.551975"]]
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_842678


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.556450"], ["updated_at", "2020-04-22 05:36:15.556450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.557870"], ["updated_at", "2020-04-22 05:36:15.557870"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.559209"], ["updated_at", "2020-04-22 05:36:15.559209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.563470"], ["updated_at", "2020-04-22 05:36:15.563470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.568312"], ["updated_at", "2020-04-22 05:36:15.568312"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_313099


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.576289"], ["updated_at", "2020-04-22 05:36:15.576289"]]
 (0.1ms)  begin transaction

CommentTest: test_185890


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.578858"], ["updated_at", "2020-04-22 05:36:15.578858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.579380"], ["updated_at", "2020-04-22 05:36:15.579380"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.581211"], ["updated_at", "2020-04-22 05:36:15.581211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.582213"], ["updated_at", "2020-04-22 05:36:15.582213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.584216"], ["updated_at", "2020-04-22 05:36:15.584216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_745317


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.592740"], ["updated_at", "2020-04-22 05:36:15.592740"]]
 (0.1ms)  begin transaction

CommentTest: test_976359


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.595083"], ["updated_at", "2020-04-22 05:36:15.595083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.597069"], ["updated_at", "2020-04-22 05:36:15.597069"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.596778"], ["updated_at", "2020-04-22 05:36:15.596778"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.599608"], ["updated_at", "2020-04-22 05:36:15.599608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.601725"], ["updated_at", "2020-04-22 05:36:15.601725"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_931009


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.607556"], ["updated_at", "2020-04-22 05:36:15.607556"]]
 (0.1ms)  begin transaction

CommentTest: test_432225


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.610331"], ["updated_at", "2020-04-22 05:36:15.610331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.612282"], ["updated_at", "2020-04-22 05:36:15.612282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.612072"], ["updated_at", "2020-04-22 05:36:15.612072"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.615119"], ["updated_at", "2020-04-22 05:36:15.615119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.617232"], ["updated_at", "2020-04-22 05:36:15.617232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_182520


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.622788"], ["updated_at", "2020-04-22 05:36:15.622788"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.627824"], ["updated_at", "2020-04-22 05:36:15.627824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.630318"], ["updated_at", "2020-04-22 05:36:15.630318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_455807


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.634331"], ["updated_at", "2020-04-22 05:36:15.634331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.637654"], ["updated_at", "2020-04-22 05:36:15.637654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_548544


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.640292"], ["updated_at", "2020-04-22 05:36:15.640292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.640323"], ["updated_at", "2020-04-22 05:36:15.640323"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.643090"], ["updated_at", "2020-04-22 05:36:15.643090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.645476"], ["updated_at", "2020-04-22 05:36:15.645476"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_159201


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.650851"], ["updated_at", "2020-04-22 05:36:15.650851"]]
 (1.1ms)  begin transaction

CommentTest: test_167028


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.653788"], ["updated_at", "2020-04-22 05:36:15.653788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.656006"], ["updated_at", "2020-04-22 05:36:15.656006"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.657623"], ["updated_at", "2020-04-22 05:36:15.657623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.658819"], ["updated_at", "2020-04-22 05:36:15.658819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.660455"], ["updated_at", "2020-04-22 05:36:15.660455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_419052


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.666026"], ["updated_at", "2020-04-22 05:36:15.666026"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.668744"], ["updated_at", "2020-04-22 05:36:15.668744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_211421


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.670819"], ["updated_at", "2020-04-22 05:36:15.670819"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.670847"], ["updated_at", "2020-04-22 05:36:15.670847"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.673657"], ["updated_at", "2020-04-22 05:36:15.673657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.676441"], ["updated_at", "2020-04-22 05:36:15.676441"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_251662


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_673398

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.694639"], ["updated_at", "2020-04-22 05:36:15.694639"]]

 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.697764"], ["updated_at", "2020-04-22 05:36:15.697764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.697490"], ["updated_at", "2020-04-22 05:36:15.697490"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.700022"], ["updated_at", "2020-04-22 05:36:15.700022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.700916"], ["updated_at", "2020-04-22 05:36:15.700916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.703456"], ["updated_at", "2020-04-22 05:36:15.703456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_130072


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_223475


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.713545"], ["updated_at", "2020-04-22 05:36:15.713545"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.715993"], ["updated_at", "2020-04-22 05:36:15.715993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.715598"], ["updated_at", "2020-04-22 05:36:15.715598"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.717449"], ["updated_at", "2020-04-22 05:36:15.717449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.718206"], ["updated_at", "2020-04-22 05:36:15.718206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.720463"], ["updated_at", "2020-04-22 05:36:15.720463"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_394427


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.727670"], ["updated_at", "2020-04-22 05:36:15.727670"]]
 (0.1ms)  begin transaction

CommentTest: test_368884


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.730457"], ["updated_at", "2020-04-22 05:36:15.730457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.731198"], ["updated_at", "2020-04-22 05:36:15.731198"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.732793"], ["updated_at", "2020-04-22 05:36:15.732793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.733563"], ["updated_at", "2020-04-22 05:36:15.733563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.735472"], ["updated_at", "2020-04-22 05:36:15.735472"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_454447


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.742277"], ["updated_at", "2020-04-22 05:36:15.742277"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.744656"], ["updated_at", "2020-04-22 05:36:15.744656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_347150


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.746673"], ["updated_at", "2020-04-22 05:36:15.746673"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.746619"], ["updated_at", "2020-04-22 05:36:15.746619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.749870"], ["updated_at", "2020-04-22 05:36:15.749870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.756961"], ["updated_at", "2020-04-22 05:36:15.756961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_334352


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.771532"], ["updated_at", "2020-04-22 05:36:15.771532"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.776723"], ["updated_at", "2020-04-22 05:36:15.776723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_141757


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.784186"], ["updated_at", "2020-04-22 05:36:15.784186"]]
 (0.1ms)  SAVEPOINT active_record_1
 (12.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (23.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.785711"], ["updated_at", "2020-04-22 05:36:15.785711"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.812377"], ["updated_at", "2020-04-22 05:36:15.812377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_90225


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.822802"], ["updated_at", "2020-04-22 05:36:15.822802"]]
Recording Create (11.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.817596"], ["updated_at", "2020-04-22 05:36:15.817596"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.828828"], ["updated_at", "2020-04-22 05:36:15.828828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.832233"], ["updated_at", "2020-04-22 05:36:15.832233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_874665


 (0.1ms)  begin transaction

CommentTest: test_399735


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.851501"], ["updated_at", "2020-04-22 05:36:15.851501"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.852671"], ["updated_at", "2020-04-22 05:36:15.852671"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.854047"], ["updated_at", "2020-04-22 05:36:15.854047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.855627"], ["updated_at", "2020-04-22 05:36:15.855627"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.855931"], ["updated_at", "2020-04-22 05:36:15.855931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.859251"], ["updated_at", "2020-04-22 05:36:15.859251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_988698


 (0.1ms)  begin transaction

CommentTest: test_210468


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.867440"], ["updated_at", "2020-04-22 05:36:15.867440"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.868093"], ["updated_at", "2020-04-22 05:36:15.868093"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.870227"], ["updated_at", "2020-04-22 05:36:15.870227"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.870895"], ["updated_at", "2020-04-22 05:36:15.870895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.873169"], ["updated_at", "2020-04-22 05:36:15.873169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.873435"], ["updated_at", "2020-04-22 05:36:15.873435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_41910


 (0.1ms)  begin transaction

CommentTest: test_574770


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.884885"], ["updated_at", "2020-04-22 05:36:15.884885"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.885222"], ["updated_at", "2020-04-22 05:36:15.885222"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.888000"], ["updated_at", "2020-04-22 05:36:15.888000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.889366"], ["updated_at", "2020-04-22 05:36:15.889366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.891285"], ["updated_at", "2020-04-22 05:36:15.891285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.892380"], ["updated_at", "2020-04-22 05:36:15.892380"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
 (0.7ms)  rollback transaction

CommentTest: test_936982


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.902712"], ["updated_at", "2020-04-22 05:36:15.902712"]]

CommentTest: test_476608


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.908967"], ["updated_at", "2020-04-22 05:36:15.908967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.908823"], ["updated_at", "2020-04-22 05:36:15.908823"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.911067"], ["updated_at", "2020-04-22 05:36:15.911067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.912107"], ["updated_at", "2020-04-22 05:36:15.912107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.914761"], ["updated_at", "2020-04-22 05:36:15.914761"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_576993


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.919641"], ["updated_at", "2020-04-22 05:36:15.919641"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.923021"], ["updated_at", "2020-04-22 05:36:15.923021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_385020


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.926044"], ["updated_at", "2020-04-22 05:36:15.926044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.927002"], ["updated_at", "2020-04-22 05:36:15.927002"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.929724"], ["updated_at", "2020-04-22 05:36:15.929724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.932217"], ["updated_at", "2020-04-22 05:36:15.932217"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_381080


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.934829"], ["updated_at", "2020-04-22 05:36:15.934829"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.937859"], ["updated_at", "2020-04-22 05:36:15.937859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_470950


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.940866"], ["updated_at", "2020-04-22 05:36:15.940866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.941729"], ["updated_at", "2020-04-22 05:36:15.941729"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.944948"], ["updated_at", "2020-04-22 05:36:15.944948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.947103"], ["updated_at", "2020-04-22 05:36:15.947103"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_624822


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.951712"], ["updated_at", "2020-04-22 05:36:15.951712"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_283143


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.959509"], ["updated_at", "2020-04-22 05:36:15.959509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.960850"], ["updated_at", "2020-04-22 05:36:15.960850"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.962917"], ["updated_at", "2020-04-22 05:36:15.962917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.963996"], ["updated_at", "2020-04-22 05:36:15.963996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.967395"], ["updated_at", "2020-04-22 05:36:15.967395"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_504312


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.976039"], ["updated_at", "2020-04-22 05:36:15.976039"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.979430"], ["updated_at", "2020-04-22 05:36:15.979430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_698643


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.982148"], ["updated_at", "2020-04-22 05:36:15.982148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.984498"], ["updated_at", "2020-04-22 05:36:15.984498"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.988204"], ["updated_at", "2020-04-22 05:36:15.988204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_987004


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.990844"], ["updated_at", "2020-04-22 05:36:15.990844"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:15.992177"], ["updated_at", "2020-04-22 05:36:15.992177"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:15.994677"], ["updated_at", "2020-04-22 05:36:15.994677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:15.997507"], ["updated_at", "2020-04-22 05:36:15.997507"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_200983


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.003804"], ["updated_at", "2020-04-22 05:36:16.003804"]]
 (0.1ms)  begin transaction

CommentTest: test_423468


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.008691"], ["updated_at", "2020-04-22 05:36:16.008691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.010269"], ["updated_at", "2020-04-22 05:36:16.010269"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.010862"], ["updated_at", "2020-04-22 05:36:16.010862"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.012979"], ["updated_at", "2020-04-22 05:36:16.012979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.019068"], ["updated_at", "2020-04-22 05:36:16.019068"]]
 (0.1ms)  begin transaction

CommentTest: test_103917


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.022777"], ["updated_at", "2020-04-22 05:36:16.022777"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.026452"], ["updated_at", "2020-04-22 05:36:16.026452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.028492"], ["updated_at", "2020-04-22 05:36:16.028492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_447981


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.035488"], ["updated_at", "2020-04-22 05:36:16.035488"]]
Comment Create (4.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.040450"], ["updated_at", "2020-04-22 05:36:16.040450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_316590


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.044492"], ["updated_at", "2020-04-22 05:36:16.044492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.047310"], ["updated_at", "2020-04-22 05:36:16.047310"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.050276"], ["updated_at", "2020-04-22 05:36:16.050276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.053688"], ["updated_at", "2020-04-22 05:36:16.053688"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_54952


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.059207"], ["updated_at", "2020-04-22 05:36:16.059207"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_728339


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.062104"], ["updated_at", "2020-04-22 05:36:16.062104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.062947"], ["updated_at", "2020-04-22 05:36:16.062947"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.063982"], ["updated_at", "2020-04-22 05:36:16.063982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.065471"], ["updated_at", "2020-04-22 05:36:16.065471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.068159"], ["updated_at", "2020-04-22 05:36:16.068159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_809436

 (0.4ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_278257


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.077667"], ["updated_at", "2020-04-22 05:36:16.077667"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.079188"], ["updated_at", "2020-04-22 05:36:16.079188"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.080208"], ["updated_at", "2020-04-22 05:36:16.080208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.082333"], ["updated_at", "2020-04-22 05:36:16.082333"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.082370"], ["updated_at", "2020-04-22 05:36:16.082370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.084298"], ["updated_at", "2020-04-22 05:36:16.084298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_317047


 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.095629"], ["updated_at", "2020-04-22 05:36:16.095629"]]
 (0.1ms)  begin transaction

CommentTest: test_27307


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.099901"], ["updated_at", "2020-04-22 05:36:16.099901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.103281"], ["updated_at", "2020-04-22 05:36:16.103281"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.101694"], ["updated_at", "2020-04-22 05:36:16.101694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.107380"], ["updated_at", "2020-04-22 05:36:16.107380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.110318"], ["updated_at", "2020-04-22 05:36:16.110318"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_326632


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.116862"], ["updated_at", "2020-04-22 05:36:16.116862"]]
 (0.1ms)  begin transaction

CommentTest: test_602864


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.123072"], ["updated_at", "2020-04-22 05:36:16.123072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.124450"], ["updated_at", "2020-04-22 05:36:16.124450"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.125987"], ["updated_at", "2020-04-22 05:36:16.125987"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.126764"], ["updated_at", "2020-04-22 05:36:16.126764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.128948"], ["updated_at", "2020-04-22 05:36:16.128948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_410097


 (0.1ms)  begin transaction

CommentTest: test_641783


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.137047"], ["updated_at", "2020-04-22 05:36:16.137047"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.137397"], ["updated_at", "2020-04-22 05:36:16.137397"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.139915"], ["updated_at", "2020-04-22 05:36:16.139915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.141344"], ["updated_at", "2020-04-22 05:36:16.141344"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.142738"], ["updated_at", "2020-04-22 05:36:16.142738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.143872"], ["updated_at", "2020-04-22 05:36:16.143872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_838491


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.152956"], ["updated_at", "2020-04-22 05:36:16.152956"]]

CommentTest: test_877306


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.161288"], ["updated_at", "2020-04-22 05:36:16.161288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.164779"], ["updated_at", "2020-04-22 05:36:16.164779"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.166698"], ["updated_at", "2020-04-22 05:36:16.166698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.169293"], ["updated_at", "2020-04-22 05:36:16.169293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.172729"], ["updated_at", "2020-04-22 05:36:16.172729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_710253


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.183977"], ["updated_at", "2020-04-22 05:36:16.183977"]]
 (0.1ms)  begin transaction

CommentTest: test_662883


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.186434"], ["updated_at", "2020-04-22 05:36:16.186434"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.189035"], ["updated_at", "2020-04-22 05:36:16.189035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.190255"], ["updated_at", "2020-04-22 05:36:16.190255"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.193904"], ["updated_at", "2020-04-22 05:36:16.193904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.195928"], ["updated_at", "2020-04-22 05:36:16.195928"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_775045


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.201514"], ["updated_at", "2020-04-22 05:36:16.201514"]]
 (2.4ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_243752


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.207402"], ["updated_at", "2020-04-22 05:36:16.207402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.212069"], ["updated_at", "2020-04-22 05:36:16.212069"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.211164"], ["updated_at", "2020-04-22 05:36:16.211164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.214716"], ["updated_at", "2020-04-22 05:36:16.214716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.216921"], ["updated_at", "2020-04-22 05:36:16.216921"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_119013


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.223819"], ["updated_at", "2020-04-22 05:36:16.223819"]]
 (0.1ms)  begin transaction

CommentTest: test_538059


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.228267"], ["updated_at", "2020-04-22 05:36:16.228267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.227474"], ["updated_at", "2020-04-22 05:36:16.227474"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.230200"], ["updated_at", "2020-04-22 05:36:16.230200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.232835"], ["updated_at", "2020-04-22 05:36:16.232835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.235527"], ["updated_at", "2020-04-22 05:36:16.235527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_225743


 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.246138"], ["updated_at", "2020-04-22 05:36:16.246138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.249119"], ["updated_at", "2020-04-22 05:36:16.249119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_195254


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.251087"], ["updated_at", "2020-04-22 05:36:16.251087"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.251035"], ["updated_at", "2020-04-22 05:36:16.251035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.254307"], ["updated_at", "2020-04-22 05:36:16.254307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.256307"], ["updated_at", "2020-04-22 05:36:16.256307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_106774


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.262667"], ["updated_at", "2020-04-22 05:36:16.262667"]]
 (0.1ms)  begin transaction

CommentTest: test_751276


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.266915"], ["updated_at", "2020-04-22 05:36:16.266915"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.266071"], ["updated_at", "2020-04-22 05:36:16.266071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.269054"], ["updated_at", "2020-04-22 05:36:16.269054"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.268856"], ["updated_at", "2020-04-22 05:36:16.268856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.271135"], ["updated_at", "2020-04-22 05:36:16.271135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_521351



CommentTest: test_523144


 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.285191"], ["updated_at", "2020-04-22 05:36:16.285191"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.285111"], ["updated_at", "2020-04-22 05:36:16.285111"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.288949"], ["updated_at", "2020-04-22 05:36:16.288949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.289827"], ["updated_at", "2020-04-22 05:36:16.289827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.294045"], ["updated_at", "2020-04-22 05:36:16.294045"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.292822"], ["updated_at", "2020-04-22 05:36:16.292822"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_315381


 (0.1ms)  begin transaction

CommentTest: test_591087


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.303078"], ["updated_at", "2020-04-22 05:36:16.303078"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.303510"], ["updated_at", "2020-04-22 05:36:16.303510"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.307281"], ["updated_at", "2020-04-22 05:36:16.307281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.307364"], ["updated_at", "2020-04-22 05:36:16.307364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.310235"], ["updated_at", "2020-04-22 05:36:16.310235"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.310272"], ["updated_at", "2020-04-22 05:36:16.310272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_500949


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.322961"], ["updated_at", "2020-04-22 05:36:16.322961"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.325036"], ["updated_at", "2020-04-22 05:36:16.325036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.326808"], ["updated_at", "2020-04-22 05:36:16.326808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_681605


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.345385"], ["updated_at", "2020-04-22 05:36:16.345385"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.349467"], ["updated_at", "2020-04-22 05:36:16.349467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.351771"], ["updated_at", "2020-04-22 05:36:16.351771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_662551


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.363250"], ["updated_at", "2020-04-22 05:36:16.363250"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.366351"], ["updated_at", "2020-04-22 05:36:16.366351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.369226"], ["updated_at", "2020-04-22 05:36:16.369226"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_453790


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.384041"], ["updated_at", "2020-04-22 05:36:16.384041"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.387179"], ["updated_at", "2020-04-22 05:36:16.387179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.389742"], ["updated_at", "2020-04-22 05:36:16.389742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_342292


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.407455"], ["updated_at", "2020-04-22 05:36:16.407455"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.411173"], ["updated_at", "2020-04-22 05:36:16.411173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.413763"], ["updated_at", "2020-04-22 05:36:16.413763"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_724423


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.426974"], ["updated_at", "2020-04-22 05:36:16.426974"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.430868"], ["updated_at", "2020-04-22 05:36:16.430868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.433467"], ["updated_at", "2020-04-22 05:36:16.433467"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_190330



CommentTest: test_865755


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.446344"], ["updated_at", "2020-04-22 05:36:16.446344"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.447696"], ["updated_at", "2020-04-22 05:36:16.447696"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.449893"], ["updated_at", "2020-04-22 05:36:16.449893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.450322"], ["updated_at", "2020-04-22 05:36:16.450322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.452123"], ["updated_at", "2020-04-22 05:36:16.452123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.455052"], ["updated_at", "2020-04-22 05:36:16.455052"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_154014


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_32902


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.467967"], ["updated_at", "2020-04-22 05:36:16.467967"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.470591"], ["updated_at", "2020-04-22 05:36:16.470591"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.471094"], ["updated_at", "2020-04-22 05:36:16.471094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.472883"], ["updated_at", "2020-04-22 05:36:16.472883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.473897"], ["updated_at", "2020-04-22 05:36:16.473897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.475940"], ["updated_at", "2020-04-22 05:36:16.475940"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_922082


 (0.1ms)  begin transaction

CommentTest: test_225968


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.485555"], ["updated_at", "2020-04-22 05:36:16.485555"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.485469"], ["updated_at", "2020-04-22 05:36:16.485469"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.488400"], ["updated_at", "2020-04-22 05:36:16.488400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.488741"], ["updated_at", "2020-04-22 05:36:16.488741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.490594"], ["updated_at", "2020-04-22 05:36:16.490594"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.490914"], ["updated_at", "2020-04-22 05:36:16.490914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_186831


 (0.1ms)  begin transaction

CommentTest: test_12647


 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.500540"], ["updated_at", "2020-04-22 05:36:16.500540"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.501149"], ["updated_at", "2020-04-22 05:36:16.501149"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.504297"], ["updated_at", "2020-04-22 05:36:16.504297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.504380"], ["updated_at", "2020-04-22 05:36:16.504380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.506167"], ["updated_at", "2020-04-22 05:36:16.506167"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.507271"], ["updated_at", "2020-04-22 05:36:16.507271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_414767


 (0.1ms)  begin transaction

CommentTest: test_430286


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.525691"], ["updated_at", "2020-04-22 05:36:16.525691"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.526431"], ["updated_at", "2020-04-22 05:36:16.526431"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.528916"], ["updated_at", "2020-04-22 05:36:16.528916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.528397"], ["updated_at", "2020-04-22 05:36:16.528397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.530613"], ["updated_at", "2020-04-22 05:36:16.530613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.531186"], ["updated_at", "2020-04-22 05:36:16.531186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.8ms)  rollback transaction

CommentTest: test_241638


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_883314


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.549078"], ["updated_at", "2020-04-22 05:36:16.549078"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.552391"], ["updated_at", "2020-04-22 05:36:16.552391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.551802"], ["updated_at", "2020-04-22 05:36:16.551802"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.555835"], ["updated_at", "2020-04-22 05:36:16.555835"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_822689


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.572542"], ["updated_at", "2020-04-22 05:36:16.572542"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.578124"], ["updated_at", "2020-04-22 05:36:16.578124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.582676"], ["updated_at", "2020-04-22 05:36:16.582676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_444325


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.599571"], ["updated_at", "2020-04-22 05:36:16.599571"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.602414"], ["updated_at", "2020-04-22 05:36:16.602414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.611965"], ["updated_at", "2020-04-22 05:36:16.611965"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_338666


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.639408"], ["updated_at", "2020-04-22 05:36:16.639408"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.643167"], ["updated_at", "2020-04-22 05:36:16.643167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.645030"], ["updated_at", "2020-04-22 05:36:16.645030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (2.5ms)  begin transaction

CommentTest: test_345044


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.658002"], ["updated_at", "2020-04-22 05:36:16.658002"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.660836"], ["updated_at", "2020-04-22 05:36:16.660836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.662883"], ["updated_at", "2020-04-22 05:36:16.662883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_349457


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.675400"], ["updated_at", "2020-04-22 05:36:16.675400"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.677905"], ["updated_at", "2020-04-22 05:36:16.677905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.679607"], ["updated_at", "2020-04-22 05:36:16.679607"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_516964


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.691857"], ["updated_at", "2020-04-22 05:36:16.691857"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.694878"], ["updated_at", "2020-04-22 05:36:16.694878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.697084"], ["updated_at", "2020-04-22 05:36:16.697084"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_170958


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.705322"], ["updated_at", "2020-04-22 05:36:16.705322"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.710469"], ["updated_at", "2020-04-22 05:36:16.710469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.710844"], ["updated_at", "2020-04-22 05:36:16.710844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.713746"], ["updated_at", "2020-04-22 05:36:16.713746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.713932"], ["updated_at", "2020-04-22 05:36:16.713932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_452939


 (0.1ms)  begin transaction

CommentTest: test_132429


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.727567"], ["updated_at", "2020-04-22 05:36:16.727567"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.727455"], ["updated_at", "2020-04-22 05:36:16.727455"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.730853"], ["updated_at", "2020-04-22 05:36:16.730853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.731801"], ["updated_at", "2020-04-22 05:36:16.731801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.733497"], ["updated_at", "2020-04-22 05:36:16.733497"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.737229"], ["updated_at", "2020-04-22 05:36:16.737229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_866249


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.746684"], ["updated_at", "2020-04-22 05:36:16.746684"]]
 (0.1ms)  begin transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.749454"], ["updated_at", "2020-04-22 05:36:16.749454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_851870


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.751123"], ["updated_at", "2020-04-22 05:36:16.751123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.751191"], ["updated_at", "2020-04-22 05:36:16.751191"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.754456"], ["updated_at", "2020-04-22 05:36:16.754456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.757610"], ["updated_at", "2020-04-22 05:36:16.757610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_499560


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.761602"], ["updated_at", "2020-04-22 05:36:16.761602"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.764526"], ["updated_at", "2020-04-22 05:36:16.764526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_479974


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.766367"], ["updated_at", "2020-04-22 05:36:16.766367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.767704"], ["updated_at", "2020-04-22 05:36:16.767704"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.771001"], ["updated_at", "2020-04-22 05:36:16.771001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.776762"], ["updated_at", "2020-04-22 05:36:16.776762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_848229


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.781025"], ["updated_at", "2020-04-22 05:36:16.781025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.784230"], ["updated_at", "2020-04-22 05:36:16.784230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_211972


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.786056"], ["updated_at", "2020-04-22 05:36:16.786056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.787656"], ["updated_at", "2020-04-22 05:36:16.787656"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.794459"], ["updated_at", "2020-04-22 05:36:16.794459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.798623"], ["updated_at", "2020-04-22 05:36:16.798623"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_519837


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.803397"], ["updated_at", "2020-04-22 05:36:16.803397"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.809819"], ["updated_at", "2020-04-22 05:36:16.809819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.812130"], ["updated_at", "2020-04-22 05:36:16.812130"]]
 (0.1ms)  begin transaction

 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_267713


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.814517"], ["updated_at", "2020-04-22 05:36:16.814517"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.817764"], ["updated_at", "2020-04-22 05:36:16.817764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_656095


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.820253"], ["updated_at", "2020-04-22 05:36:16.820253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.820475"], ["updated_at", "2020-04-22 05:36:16.820475"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.825118"], ["updated_at", "2020-04-22 05:36:16.825118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.827573"], ["updated_at", "2020-04-22 05:36:16.827573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_821343


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.832627"], ["updated_at", "2020-04-22 05:36:16.832627"]]
 (0.1ms)  begin transaction

CommentTest: test_159600


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.835053"], ["updated_at", "2020-04-22 05:36:16.835053"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.837406"], ["updated_at", "2020-04-22 05:36:16.837406"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.836544"], ["updated_at", "2020-04-22 05:36:16.836544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.839957"], ["updated_at", "2020-04-22 05:36:16.839957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.842641"], ["updated_at", "2020-04-22 05:36:16.842641"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_533791


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.854102"], ["updated_at", "2020-04-22 05:36:16.854102"]]
 (0.1ms)  begin transaction

CommentTest: test_606308


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.860001"], ["updated_at", "2020-04-22 05:36:16.860001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.859794"], ["updated_at", "2020-04-22 05:36:16.859794"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.862970"], ["updated_at", "2020-04-22 05:36:16.862970"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.866077"], ["updated_at", "2020-04-22 05:36:16.866077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.870271"], ["updated_at", "2020-04-22 05:36:16.870271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_933924


 (0.6ms)  begin transaction

CommentTest: test_406281


 (0.9ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.888706"], ["updated_at", "2020-04-22 05:36:16.888706"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.888576"], ["updated_at", "2020-04-22 05:36:16.888576"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.893668"], ["updated_at", "2020-04-22 05:36:16.893668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.894075"], ["updated_at", "2020-04-22 05:36:16.894075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.896608"], ["updated_at", "2020-04-22 05:36:16.896608"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.896032"], ["updated_at", "2020-04-22 05:36:16.896032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_542591


 (0.2ms)  begin transaction

CommentTest: test_225481


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.920287"], ["updated_at", "2020-04-22 05:36:16.920287"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.920054"], ["updated_at", "2020-04-22 05:36:16.920054"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.925161"], ["updated_at", "2020-04-22 05:36:16.925161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.925927"], ["updated_at", "2020-04-22 05:36:16.925927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.927827"], ["updated_at", "2020-04-22 05:36:16.927827"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.928322"], ["updated_at", "2020-04-22 05:36:16.928322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_738828


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_442977


Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.937206"], ["updated_at", "2020-04-22 05:36:16.937206"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.940856"], ["updated_at", "2020-04-22 05:36:16.940856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.941232"], ["updated_at", "2020-04-22 05:36:16.941232"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.944122"], ["updated_at", "2020-04-22 05:36:16.944122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.944645"], ["updated_at", "2020-04-22 05:36:16.944645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.947228"], ["updated_at", "2020-04-22 05:36:16.947228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_196810


 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_781339


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.955069"], ["updated_at", "2020-04-22 05:36:16.955069"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.957877"], ["updated_at", "2020-04-22 05:36:16.957877"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.960284"], ["updated_at", "2020-04-22 05:36:16.960284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.961079"], ["updated_at", "2020-04-22 05:36:16.961079"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.962092"], ["updated_at", "2020-04-22 05:36:16.962092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.963586"], ["updated_at", "2020-04-22 05:36:16.963586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_967845


 (0.1ms)  begin transaction

CommentTest: test_2537


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.977190"], ["updated_at", "2020-04-22 05:36:16.977190"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.976915"], ["updated_at", "2020-04-22 05:36:16.976915"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.980975"], ["updated_at", "2020-04-22 05:36:16.980975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.980402"], ["updated_at", "2020-04-22 05:36:16.980402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.983075"], ["updated_at", "2020-04-22 05:36:16.983075"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.984307"], ["updated_at", "2020-04-22 05:36:16.984307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_9046


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.994429"], ["updated_at", "2020-04-22 05:36:16.994429"]]
 (0.1ms)  begin transaction

CommentTest: test_644505


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:16.997022"], ["updated_at", "2020-04-22 05:36:16.997022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:16.998609"], ["updated_at", "2020-04-22 05:36:16.998609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:16.998026"], ["updated_at", "2020-04-22 05:36:16.998026"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.002816"], ["updated_at", "2020-04-22 05:36:17.002816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_661448


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.005357"], ["updated_at", "2020-04-22 05:36:17.005357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.007345"], ["updated_at", "2020-04-22 05:36:17.007345"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.014397"], ["updated_at", "2020-04-22 05:36:17.014397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_109329


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.016703"], ["updated_at", "2020-04-22 05:36:17.016703"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.017381"], ["updated_at", "2020-04-22 05:36:17.017381"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.020603"], ["updated_at", "2020-04-22 05:36:17.020603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.022445"], ["updated_at", "2020-04-22 05:36:17.022445"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_984105


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.027761"], ["updated_at", "2020-04-22 05:36:17.027761"]]
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.030979"], ["updated_at", "2020-04-22 05:36:17.030979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_717594


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.034169"], ["updated_at", "2020-04-22 05:36:17.034169"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.040583"], ["updated_at", "2020-04-22 05:36:17.040583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.039360"], ["updated_at", "2020-04-22 05:36:17.039360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.045327"], ["updated_at", "2020-04-22 05:36:17.045327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_511526


 (0.1ms)  begin transaction

CommentTest: test_19402


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.056313"], ["updated_at", "2020-04-22 05:36:17.056313"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.055528"], ["updated_at", "2020-04-22 05:36:17.055528"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.059719"], ["updated_at", "2020-04-22 05:36:17.059719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.059645"], ["updated_at", "2020-04-22 05:36:17.059645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.061300"], ["updated_at", "2020-04-22 05:36:17.061300"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.061410"], ["updated_at", "2020-04-22 05:36:17.061410"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_98076


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.073462"], ["updated_at", "2020-04-22 05:36:17.073462"]]
 (0.1ms)  begin transaction

CommentTest: test_205838


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.076950"], ["updated_at", "2020-04-22 05:36:17.076950"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.076713"], ["updated_at", "2020-04-22 05:36:17.076713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.079438"], ["updated_at", "2020-04-22 05:36:17.079438"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.079514"], ["updated_at", "2020-04-22 05:36:17.079514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.082672"], ["updated_at", "2020-04-22 05:36:17.082672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_400360


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.091400"], ["updated_at", "2020-04-22 05:36:17.091400"]]
 (0.1ms)  begin transaction

CommentTest: test_113677


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.094193"], ["updated_at", "2020-04-22 05:36:17.094193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.096900"], ["updated_at", "2020-04-22 05:36:17.096900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.096127"], ["updated_at", "2020-04-22 05:36:17.096127"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.099659"], ["updated_at", "2020-04-22 05:36:17.099659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.102507"], ["updated_at", "2020-04-22 05:36:17.102507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_914897


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_239752


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.116097"], ["updated_at", "2020-04-22 05:36:17.116097"]]
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.121348"], ["updated_at", "2020-04-22 05:36:17.121348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.127613"], ["updated_at", "2020-04-22 05:36:17.127613"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.126875"], ["updated_at", "2020-04-22 05:36:17.126875"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.130419"], ["updated_at", "2020-04-22 05:36:17.130419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.132829"], ["updated_at", "2020-04-22 05:36:17.132829"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_189332


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.142592"], ["updated_at", "2020-04-22 05:36:17.142592"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_525852


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.145499"], ["updated_at", "2020-04-22 05:36:17.145499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.147709"], ["updated_at", "2020-04-22 05:36:17.147709"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.146819"], ["updated_at", "2020-04-22 05:36:17.146819"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.149994"], ["updated_at", "2020-04-22 05:36:17.149994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.153178"], ["updated_at", "2020-04-22 05:36:17.153178"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_263629


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.159442"], ["updated_at", "2020-04-22 05:36:17.159442"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.162545"], ["updated_at", "2020-04-22 05:36:17.162545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.164873"], ["updated_at", "2020-04-22 05:36:17.164873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_290628


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.168042"], ["updated_at", "2020-04-22 05:36:17.168042"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.171502"], ["updated_at", "2020-04-22 05:36:17.171502"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_403534


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.174185"], ["updated_at", "2020-04-22 05:36:17.174185"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.174439"], ["updated_at", "2020-04-22 05:36:17.174439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.177440"], ["updated_at", "2020-04-22 05:36:17.177440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.179252"], ["updated_at", "2020-04-22 05:36:17.179252"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_22789


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.188637"], ["updated_at", "2020-04-22 05:36:17.188637"]]
 (0.1ms)  begin transaction

CommentTest: test_715119


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.192335"], ["updated_at", "2020-04-22 05:36:17.192335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.193044"], ["updated_at", "2020-04-22 05:36:17.193044"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.194140"], ["updated_at", "2020-04-22 05:36:17.194140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.195905"], ["updated_at", "2020-04-22 05:36:17.195905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.197654"], ["updated_at", "2020-04-22 05:36:17.197654"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_751986


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.205624"], ["updated_at", "2020-04-22 05:36:17.205624"]]

CommentTest: test_552117


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.208879"], ["updated_at", "2020-04-22 05:36:17.208879"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.211067"], ["updated_at", "2020-04-22 05:36:17.211067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.212662"], ["updated_at", "2020-04-22 05:36:17.212662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.213827"], ["updated_at", "2020-04-22 05:36:17.213827"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.214297"], ["updated_at", "2020-04-22 05:36:17.214297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_626629


CommentTest: test_796954


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.225989"], ["updated_at", "2020-04-22 05:36:17.225989"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.226023"], ["updated_at", "2020-04-22 05:36:17.226023"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.228349"], ["updated_at", "2020-04-22 05:36:17.228349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.228516"], ["updated_at", "2020-04-22 05:36:17.228516"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.230373"], ["updated_at", "2020-04-22 05:36:17.230373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.230884"], ["updated_at", "2020-04-22 05:36:17.230884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_34531


 (0.1ms)  begin transaction

CommentTest: test_798240


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.241173"], ["updated_at", "2020-04-22 05:36:17.241173"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.241026"], ["updated_at", "2020-04-22 05:36:17.241026"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.244307"], ["updated_at", "2020-04-22 05:36:17.244307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.247526"], ["updated_at", "2020-04-22 05:36:17.247526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.247443"], ["updated_at", "2020-04-22 05:36:17.247443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.252202"], ["updated_at", "2020-04-22 05:36:17.252202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_136257


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.260367"], ["updated_at", "2020-04-22 05:36:17.260367"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.263112"], ["updated_at", "2020-04-22 05:36:17.263112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_605646


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.265806"], ["updated_at", "2020-04-22 05:36:17.265806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.265068"], ["updated_at", "2020-04-22 05:36:17.265068"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.268777"], ["updated_at", "2020-04-22 05:36:17.268777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.271400"], ["updated_at", "2020-04-22 05:36:17.271400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_247274


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.275645"], ["updated_at", "2020-04-22 05:36:17.275645"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.278691"], ["updated_at", "2020-04-22 05:36:17.278691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_928337


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.280791"], ["updated_at", "2020-04-22 05:36:17.280791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.281345"], ["updated_at", "2020-04-22 05:36:17.281345"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.283948"], ["updated_at", "2020-04-22 05:36:17.283948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.285621"], ["updated_at", "2020-04-22 05:36:17.285621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_252011


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.291848"], ["updated_at", "2020-04-22 05:36:17.291848"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380039


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.295603"], ["updated_at", "2020-04-22 05:36:17.295603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.297847"], ["updated_at", "2020-04-22 05:36:17.297847"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.297123"], ["updated_at", "2020-04-22 05:36:17.297123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.300466"], ["updated_at", "2020-04-22 05:36:17.300466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.303936"], ["updated_at", "2020-04-22 05:36:17.303936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_716177


 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.313209"], ["updated_at", "2020-04-22 05:36:17.313209"]]
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.317964"], ["updated_at", "2020-04-22 05:36:17.317964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_326867


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.321953"], ["updated_at", "2020-04-22 05:36:17.321953"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.324216"], ["updated_at", "2020-04-22 05:36:17.324216"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.327712"], ["updated_at", "2020-04-22 05:36:17.327712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.331748"], ["updated_at", "2020-04-22 05:36:17.331748"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_411517


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.335260"], ["updated_at", "2020-04-22 05:36:17.335260"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.341345"], ["updated_at", "2020-04-22 05:36:17.341345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.344169"], ["updated_at", "2020-04-22 05:36:17.344169"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_14642


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.350971"], ["updated_at", "2020-04-22 05:36:17.350971"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.354228"], ["updated_at", "2020-04-22 05:36:17.354228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_615238


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.356711"], ["updated_at", "2020-04-22 05:36:17.356711"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.356701"], ["updated_at", "2020-04-22 05:36:17.356701"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.360930"], ["updated_at", "2020-04-22 05:36:17.360930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.363840"], ["updated_at", "2020-04-22 05:36:17.363840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_529827


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.366604"], ["updated_at", "2020-04-22 05:36:17.366604"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.369181"], ["updated_at", "2020-04-22 05:36:17.369181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.374933"], ["updated_at", "2020-04-22 05:36:17.374933"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_512165


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.378044"], ["updated_at", "2020-04-22 05:36:17.378044"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.380473"], ["updated_at", "2020-04-22 05:36:17.380473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.382779"], ["updated_at", "2020-04-22 05:36:17.382779"]]
 (0.0ms)  begin transaction

CommentTest: test_714435


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.385133"], ["updated_at", "2020-04-22 05:36:17.385133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.391835"], ["updated_at", "2020-04-22 05:36:17.391835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_731999


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.395584"], ["updated_at", "2020-04-22 05:36:17.395584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.397318"], ["updated_at", "2020-04-22 05:36:17.397318"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.399833"], ["updated_at", "2020-04-22 05:36:17.399833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.402389"], ["updated_at", "2020-04-22 05:36:17.402389"]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_463533


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.408584"], ["updated_at", "2020-04-22 05:36:17.408584"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.412418"], ["updated_at", "2020-04-22 05:36:17.412418"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.414108"], ["updated_at", "2020-04-22 05:36:17.414108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_419985


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.418103"], ["updated_at", "2020-04-22 05:36:17.418103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_784636


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.421964"], ["updated_at", "2020-04-22 05:36:17.421964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.423571"], ["updated_at", "2020-04-22 05:36:17.423571"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.426026"], ["updated_at", "2020-04-22 05:36:17.426026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.428091"], ["updated_at", "2020-04-22 05:36:17.428091"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.429912"], ["updated_at", "2020-04-22 05:36:17.429912"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_661783


CommentTest: test_123818


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.442511"], ["updated_at", "2020-04-22 05:36:17.442511"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.443221"], ["updated_at", "2020-04-22 05:36:17.443221"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.445449"], ["updated_at", "2020-04-22 05:36:17.445449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.445453"], ["updated_at", "2020-04-22 05:36:17.445453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.449063"], ["updated_at", "2020-04-22 05:36:17.449063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.450156"], ["updated_at", "2020-04-22 05:36:17.450156"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_799463


 (5.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.466224"], ["updated_at", "2020-04-22 05:36:17.466224"]]
 (0.1ms)  begin transaction

CommentTest: test_284079


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.469764"], ["updated_at", "2020-04-22 05:36:17.469764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.476037"], ["updated_at", "2020-04-22 05:36:17.476037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.473791"], ["updated_at", "2020-04-22 05:36:17.473791"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.480613"], ["updated_at", "2020-04-22 05:36:17.480613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.491251"], ["updated_at", "2020-04-22 05:36:17.491251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_61023


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.499516"], ["updated_at", "2020-04-22 05:36:17.499516"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.502671"], ["updated_at", "2020-04-22 05:36:17.502671"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_436682


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.510935"], ["updated_at", "2020-04-22 05:36:17.510935"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.513306"], ["updated_at", "2020-04-22 05:36:17.513306"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.517308"], ["updated_at", "2020-04-22 05:36:17.517308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.521481"], ["updated_at", "2020-04-22 05:36:17.521481"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_181683


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.529168"], ["updated_at", "2020-04-22 05:36:17.529168"]]
 (0.1ms)  begin transaction

CommentTest: test_971830


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.531864"], ["updated_at", "2020-04-22 05:36:17.531864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.533120"], ["updated_at", "2020-04-22 05:36:17.533120"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.534702"], ["updated_at", "2020-04-22 05:36:17.534702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.535917"], ["updated_at", "2020-04-22 05:36:17.535917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.540036"], ["updated_at", "2020-04-22 05:36:17.540036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_186149


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_856039


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.548532"], ["updated_at", "2020-04-22 05:36:17.548532"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.550377"], ["updated_at", "2020-04-22 05:36:17.550377"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.552162"], ["updated_at", "2020-04-22 05:36:17.552162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.553282"], ["updated_at", "2020-04-22 05:36:17.553282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.554224"], ["updated_at", "2020-04-22 05:36:17.554224"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.555169"], ["updated_at", "2020-04-22 05:36:17.555169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_641635


 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_563504


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.570577"], ["updated_at", "2020-04-22 05:36:17.570577"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.575017"], ["updated_at", "2020-04-22 05:36:17.575017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.574543"], ["updated_at", "2020-04-22 05:36:17.574543"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.578133"], ["updated_at", "2020-04-22 05:36:17.578133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.578253"], ["updated_at", "2020-04-22 05:36:17.578253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.583401"], ["updated_at", "2020-04-22 05:36:17.583401"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_51749


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.595210"], ["updated_at", "2020-04-22 05:36:17.595210"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.598837"], ["updated_at", "2020-04-22 05:36:17.598837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_608601


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.601535"], ["updated_at", "2020-04-22 05:36:17.601535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.603303"], ["updated_at", "2020-04-22 05:36:17.603303"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.606975"], ["updated_at", "2020-04-22 05:36:17.606975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.612141"], ["updated_at", "2020-04-22 05:36:17.612141"]]
 (0.1ms)  begin transaction

CommentTest: test_422619


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.614395"], ["updated_at", "2020-04-22 05:36:17.614395"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.618056"], ["updated_at", "2020-04-22 05:36:17.618056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.621575"], ["updated_at", "2020-04-22 05:36:17.621575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_22867


 (0.1ms)  begin transaction

CommentTest: test_912266


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.639435"], ["updated_at", "2020-04-22 05:36:17.639435"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.637454"], ["updated_at", "2020-04-22 05:36:17.637454"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.645162"], ["updated_at", "2020-04-22 05:36:17.645162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.646401"], ["updated_at", "2020-04-22 05:36:17.646401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.647294"], ["updated_at", "2020-04-22 05:36:17.647294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.649596"], ["updated_at", "2020-04-22 05:36:17.649596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_211114


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.662933"], ["updated_at", "2020-04-22 05:36:17.662933"]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.666353"], ["updated_at", "2020-04-22 05:36:17.666353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_437844


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.668879"], ["updated_at", "2020-04-22 05:36:17.668879"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.669139"], ["updated_at", "2020-04-22 05:36:17.669139"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.673403"], ["updated_at", "2020-04-22 05:36:17.673403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.677554"], ["updated_at", "2020-04-22 05:36:17.677554"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_396820

 (0.8ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_4096


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.693948"], ["updated_at", "2020-04-22 05:36:17.693948"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.695560"], ["updated_at", "2020-04-22 05:36:17.695560"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.697249"], ["updated_at", "2020-04-22 05:36:17.697249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.698200"], ["updated_at", "2020-04-22 05:36:17.698200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.699299"], ["updated_at", "2020-04-22 05:36:17.699299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.702599"], ["updated_at", "2020-04-22 05:36:17.702599"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_452031


Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.712150"], ["updated_at", "2020-04-22 05:36:17.712150"]]
 (0.1ms)  begin transaction

CommentTest: test_406538


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.715576"], ["updated_at", "2020-04-22 05:36:17.715576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.717584"], ["updated_at", "2020-04-22 05:36:17.717584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.718632"], ["updated_at", "2020-04-22 05:36:17.718632"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.721456"], ["updated_at", "2020-04-22 05:36:17.721456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_624846


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.727578"], ["updated_at", "2020-04-22 05:36:17.727578"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.725920"], ["updated_at", "2020-04-22 05:36:17.725920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.729818"], ["updated_at", "2020-04-22 05:36:17.729818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.732188"], ["updated_at", "2020-04-22 05:36:17.732188"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_889924


 (0.1ms)  SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.741633"], ["updated_at", "2020-04-22 05:36:17.741633"]]
 (0.1ms)  begin transaction

CommentTest: test_52873


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.745936"], ["updated_at", "2020-04-22 05:36:17.745936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.747082"], ["updated_at", "2020-04-22 05:36:17.747082"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.749710"], ["updated_at", "2020-04-22 05:36:17.749710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.751554"], ["updated_at", "2020-04-22 05:36:17.751554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.756161"], ["updated_at", "2020-04-22 05:36:17.756161"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_17206


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.764804"], ["updated_at", "2020-04-22 05:36:17.764804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.769233"], ["updated_at", "2020-04-22 05:36:17.769233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_554533


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.772530"], ["updated_at", "2020-04-22 05:36:17.772530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.773737"], ["updated_at", "2020-04-22 05:36:17.773737"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.777689"], ["updated_at", "2020-04-22 05:36:17.777689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.780533"], ["updated_at", "2020-04-22 05:36:17.780533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_953522

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.784030"], ["updated_at", "2020-04-22 05:36:17.784030"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.790985"], ["updated_at", "2020-04-22 05:36:17.790985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.795157"], ["updated_at", "2020-04-22 05:36:17.795157"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_126514


 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.799095"], ["updated_at", "2020-04-22 05:36:17.799095"]]
 (0.1ms)  begin transaction

CommentTest: test_134047

Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.803674"], ["updated_at", "2020-04-22 05:36:17.803674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.806028"], ["updated_at", "2020-04-22 05:36:17.806028"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.813400"], ["updated_at", "2020-04-22 05:36:17.813400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.812901"], ["updated_at", "2020-04-22 05:36:17.812901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.815261"], ["updated_at", "2020-04-22 05:36:17.815261"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_1918


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.830940"], ["updated_at", "2020-04-22 05:36:17.830940"]]
 (0.1ms)  begin transaction

CommentTest: test_376038


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.834548"], ["updated_at", "2020-04-22 05:36:17.834548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.838037"], ["updated_at", "2020-04-22 05:36:17.838037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.847600"], ["updated_at", "2020-04-22 05:36:17.847600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_156059


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.860762"], ["updated_at", "2020-04-22 05:36:17.860762"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.851305"], ["updated_at", "2020-04-22 05:36:17.851305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.866070"], ["updated_at", "2020-04-22 05:36:17.866070"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.866333"], ["updated_at", "2020-04-22 05:36:17.866333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.868435"], ["updated_at", "2020-04-22 05:36:17.868435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_751412


 (0.1ms)  begin transaction

CommentTest: test_266842


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.885767"], ["updated_at", "2020-04-22 05:36:17.885767"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.890753"], ["updated_at", "2020-04-22 05:36:17.890753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.888429"], ["updated_at", "2020-04-22 05:36:17.888429"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.896735"], ["updated_at", "2020-04-22 05:36:17.896735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.900008"], ["updated_at", "2020-04-22 05:36:17.900008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.910659"], ["updated_at", "2020-04-22 05:36:17.910659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_409602


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.917725"], ["updated_at", "2020-04-22 05:36:17.917725"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_506794


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.921172"], ["updated_at", "2020-04-22 05:36:17.921172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.923195"], ["updated_at", "2020-04-22 05:36:17.923195"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.923164"], ["updated_at", "2020-04-22 05:36:17.923164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.926432"], ["updated_at", "2020-04-22 05:36:17.926432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.929227"], ["updated_at", "2020-04-22 05:36:17.929227"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_66260


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.934795"], ["updated_at", "2020-04-22 05:36:17.934795"]]
 (0.1ms)  begin transaction

CommentTest: test_583543


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.937663"], ["updated_at", "2020-04-22 05:36:17.937663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.938336"], ["updated_at", "2020-04-22 05:36:17.938336"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.940128"], ["updated_at", "2020-04-22 05:36:17.940128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.942181"], ["updated_at", "2020-04-22 05:36:17.942181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.945245"], ["updated_at", "2020-04-22 05:36:17.945245"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_640520


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.950440"], ["updated_at", "2020-04-22 05:36:17.950440"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_905929

Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.953454"], ["updated_at", "2020-04-22 05:36:17.953454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.960482"], ["updated_at", "2020-04-22 05:36:17.960482"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.962112"], ["updated_at", "2020-04-22 05:36:17.962112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.963832"], ["updated_at", "2020-04-22 05:36:17.963832"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.966496"], ["updated_at", "2020-04-22 05:36:17.966496"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_478059


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.973275"], ["updated_at", "2020-04-22 05:36:17.973275"]]
 (0.1ms)  begin transaction

CommentTest: test_398938


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:17.983544"], ["updated_at", "2020-04-22 05:36:17.983544"]]
Bucket Create (4.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.984859"], ["updated_at", "2020-04-22 05:36:17.984859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:17.987248"], ["updated_at", "2020-04-22 05:36:17.987248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.992010"], ["updated_at", "2020-04-22 05:36:17.992010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:17.993126"], ["updated_at", "2020-04-22 05:36:17.993126"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_219522


 (0.1ms)  begin transaction

CommentTest: test_525216


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.002975"], ["updated_at", "2020-04-22 05:36:18.002975"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.003952"], ["updated_at", "2020-04-22 05:36:18.003952"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.005114"], ["updated_at", "2020-04-22 05:36:18.005114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.006687"], ["updated_at", "2020-04-22 05:36:18.006687"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.006888"], ["updated_at", "2020-04-22 05:36:18.006888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.011097"], ["updated_at", "2020-04-22 05:36:18.011097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_780500


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.016789"], ["updated_at", "2020-04-22 05:36:18.016789"]]
 (0.1ms)  begin transaction

CommentTest: test_111077


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.020828"], ["updated_at", "2020-04-22 05:36:18.020828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.023102"], ["updated_at", "2020-04-22 05:36:18.023102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.022398"], ["updated_at", "2020-04-22 05:36:18.022398"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.026701"], ["updated_at", "2020-04-22 05:36:18.026701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.029750"], ["updated_at", "2020-04-22 05:36:18.029750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_825049


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.032967"], ["updated_at", "2020-04-22 05:36:18.032967"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.035893"], ["updated_at", "2020-04-22 05:36:18.035893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_542106


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.039846"], ["updated_at", "2020-04-22 05:36:18.039846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.043554"], ["updated_at", "2020-04-22 05:36:18.043554"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.046211"], ["updated_at", "2020-04-22 05:36:18.046211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_752891


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.049697"], ["updated_at", "2020-04-22 05:36:18.049697"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.048727"], ["updated_at", "2020-04-22 05:36:18.048727"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.055259"], ["updated_at", "2020-04-22 05:36:18.055259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.059518"], ["updated_at", "2020-04-22 05:36:18.059518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_533037


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_453106


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.068661"], ["updated_at", "2020-04-22 05:36:18.068661"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.072564"], ["updated_at", "2020-04-22 05:36:18.072564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.071314"], ["updated_at", "2020-04-22 05:36:18.071314"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.074484"], ["updated_at", "2020-04-22 05:36:18.074484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.074485"], ["updated_at", "2020-04-22 05:36:18.074485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.076547"], ["updated_at", "2020-04-22 05:36:18.076547"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_665046


 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_239296


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.086416"], ["updated_at", "2020-04-22 05:36:18.086416"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.088492"], ["updated_at", "2020-04-22 05:36:18.088492"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.089399"], ["updated_at", "2020-04-22 05:36:18.089399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.092279"], ["updated_at", "2020-04-22 05:36:18.092279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.090779"], ["updated_at", "2020-04-22 05:36:18.090779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.095183"], ["updated_at", "2020-04-22 05:36:18.095183"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_928967


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.101653"], ["updated_at", "2020-04-22 05:36:18.101653"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.104232"], ["updated_at", "2020-04-22 05:36:18.104232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.105941"], ["updated_at", "2020-04-22 05:36:18.105941"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_195250


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_419022


 (0.1ms)  SAVEPOINT active_record_1
Course Create (6.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.111466"], ["updated_at", "2020-04-22 05:36:18.111466"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.116521"], ["updated_at", "2020-04-22 05:36:18.116521"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.119138"], ["updated_at", "2020-04-22 05:36:18.119138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.120739"], ["updated_at", "2020-04-22 05:36:18.120739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.123799"], ["updated_at", "2020-04-22 05:36:18.123799"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.124349"], ["updated_at", "2020-04-22 05:36:18.124349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_503704


 (0.1ms)  begin transaction

CommentTest: test_814094


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.135352"], ["updated_at", "2020-04-22 05:36:18.135352"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.137941"], ["updated_at", "2020-04-22 05:36:18.137941"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.139729"], ["updated_at", "2020-04-22 05:36:18.139729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.138319"], ["updated_at", "2020-04-22 05:36:18.138319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.147199"], ["updated_at", "2020-04-22 05:36:18.147199"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.147526"], ["updated_at", "2020-04-22 05:36:18.147526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_452198


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.166099"], ["updated_at", "2020-04-22 05:36:18.166099"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.173543"], ["updated_at", "2020-04-22 05:36:18.173543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_125680


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.179748"], ["updated_at", "2020-04-22 05:36:18.179748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.181181"], ["updated_at", "2020-04-22 05:36:18.181181"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.187906"], ["updated_at", "2020-04-22 05:36:18.187906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_672920


 (1.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.189443"], ["updated_at", "2020-04-22 05:36:18.189443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.190415"], ["updated_at", "2020-04-22 05:36:18.190415"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.194817"], ["updated_at", "2020-04-22 05:36:18.194817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.198046"], ["updated_at", "2020-04-22 05:36:18.198046"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (7.6ms)  rollback transaction
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_26312


 (0.1ms)  begin transaction

CommentTest: test_428100


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.212275"], ["updated_at", "2020-04-22 05:36:18.212275"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.213366"], ["updated_at", "2020-04-22 05:36:18.213366"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.215535"], ["updated_at", "2020-04-22 05:36:18.215535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.215144"], ["updated_at", "2020-04-22 05:36:18.215144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.217889"], ["updated_at", "2020-04-22 05:36:18.217889"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.218070"], ["updated_at", "2020-04-22 05:36:18.218070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  begin transaction
 (1.6ms)  rollback transaction

CommentTest: test_303734


 (0.5ms)  begin transaction

CommentTest: test_138520


 (2.6ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.230638"], ["updated_at", "2020-04-22 05:36:18.230638"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.234327"], ["updated_at", "2020-04-22 05:36:18.234327"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.238491"], ["updated_at", "2020-04-22 05:36:18.238491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.238558"], ["updated_at", "2020-04-22 05:36:18.238558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.241570"], ["updated_at", "2020-04-22 05:36:18.241570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.241570"], ["updated_at", "2020-04-22 05:36:18.241570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_670135


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.251539"], ["updated_at", "2020-04-22 05:36:18.251539"]]
 (0.9ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.254467"], ["updated_at", "2020-04-22 05:36:18.254467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_542947


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.256418"], ["updated_at", "2020-04-22 05:36:18.256418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.257179"], ["updated_at", "2020-04-22 05:36:18.257179"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.262327"], ["updated_at", "2020-04-22 05:36:18.262327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.264993"], ["updated_at", "2020-04-22 05:36:18.264993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_479468


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.269536"], ["updated_at", "2020-04-22 05:36:18.269536"]]
 (0.1ms)  begin transaction

CommentTest: test_367867


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.272857"], ["updated_at", "2020-04-22 05:36:18.272857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.274424"], ["updated_at", "2020-04-22 05:36:18.274424"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.275243"], ["updated_at", "2020-04-22 05:36:18.275243"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.278597"], ["updated_at", "2020-04-22 05:36:18.278597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.280530"], ["updated_at", "2020-04-22 05:36:18.280530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_420756


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.285242"], ["updated_at", "2020-04-22 05:36:18.285242"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_341810


Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.289929"], ["updated_at", "2020-04-22 05:36:18.289929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.292487"], ["updated_at", "2020-04-22 05:36:18.292487"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.300875"], ["updated_at", "2020-04-22 05:36:18.300875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.299913"], ["updated_at", "2020-04-22 05:36:18.299913"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.303390"], ["updated_at", "2020-04-22 05:36:18.303390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_390001


 (0.1ms)  begin transaction

CommentTest: test_31172


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.318860"], ["updated_at", "2020-04-22 05:36:18.318860"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.323078"], ["updated_at", "2020-04-22 05:36:18.323078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.323181"], ["updated_at", "2020-04-22 05:36:18.323181"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.325293"], ["updated_at", "2020-04-22 05:36:18.325293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.326469"], ["updated_at", "2020-04-22 05:36:18.326469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_123371


Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.334986"], ["updated_at", "2020-04-22 05:36:18.334986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.338111"], ["updated_at", "2020-04-22 05:36:18.338111"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.344776"], ["updated_at", "2020-04-22 05:36:18.344776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.349716"], ["updated_at", "2020-04-22 05:36:18.349716"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_915456


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.357692"], ["updated_at", "2020-04-22 05:36:18.357692"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.362043"], ["updated_at", "2020-04-22 05:36:18.362043"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.364151"], ["updated_at", "2020-04-22 05:36:18.364151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_190549


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.368477"], ["updated_at", "2020-04-22 05:36:18.368477"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_86409


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.373384"], ["updated_at", "2020-04-22 05:36:18.373384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.374748"], ["updated_at", "2020-04-22 05:36:18.374748"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.376689"], ["updated_at", "2020-04-22 05:36:18.376689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.379070"], ["updated_at", "2020-04-22 05:36:18.379070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.381582"], ["updated_at", "2020-04-22 05:36:18.381582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_750084



CommentTest: test_587399


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.393821"], ["updated_at", "2020-04-22 05:36:18.393821"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.393489"], ["updated_at", "2020-04-22 05:36:18.393489"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.397753"], ["updated_at", "2020-04-22 05:36:18.397753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.398061"], ["updated_at", "2020-04-22 05:36:18.398061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.399265"], ["updated_at", "2020-04-22 05:36:18.399265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.411300"], ["updated_at", "2020-04-22 05:36:18.411300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_33303


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.9ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.414858"], ["updated_at", "2020-04-22 05:36:18.414858"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.426431"], ["updated_at", "2020-04-22 05:36:18.426431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.429244"], ["updated_at", "2020-04-22 05:36:18.429244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_387421


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.433445"], ["updated_at", "2020-04-22 05:36:18.433445"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.437230"], ["updated_at", "2020-04-22 05:36:18.437230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_736602


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.440662"], ["updated_at", "2020-04-22 05:36:18.440662"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.440720"], ["updated_at", "2020-04-22 05:36:18.440720"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.445913"], ["updated_at", "2020-04-22 05:36:18.445913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.448133"], ["updated_at", "2020-04-22 05:36:18.448133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_29938


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.452850"], ["updated_at", "2020-04-22 05:36:18.452850"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.462755"], ["updated_at", "2020-04-22 05:36:18.462755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.467379"], ["updated_at", "2020-04-22 05:36:18.467379"]]
 (6.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_221227


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.477468"], ["updated_at", "2020-04-22 05:36:18.477468"]]
 (1.6ms)  begin transaction

CommentTest: test_463953


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.483437"], ["updated_at", "2020-04-22 05:36:18.483437"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.486510"], ["updated_at", "2020-04-22 05:36:18.486510"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.491804"], ["updated_at", "2020-04-22 05:36:18.491804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.493276"], ["updated_at", "2020-04-22 05:36:18.493276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.496699"], ["updated_at", "2020-04-22 05:36:18.496699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_194589


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_774651


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.510509"], ["updated_at", "2020-04-22 05:36:18.510509"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.514337"], ["updated_at", "2020-04-22 05:36:18.514337"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.517327"], ["updated_at", "2020-04-22 05:36:18.517327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.519829"], ["updated_at", "2020-04-22 05:36:18.519829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.520896"], ["updated_at", "2020-04-22 05:36:18.520896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.525381"], ["updated_at", "2020-04-22 05:36:18.525381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_106317


 (12.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.543740"], ["updated_at", "2020-04-22 05:36:18.543740"]]
 (0.1ms)  begin transaction

CommentTest: test_252478


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.547635"], ["updated_at", "2020-04-22 05:36:18.547635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.550475"], ["updated_at", "2020-04-22 05:36:18.550475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.550032"], ["updated_at", "2020-04-22 05:36:18.550032"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.553476"], ["updated_at", "2020-04-22 05:36:18.553476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.556196"], ["updated_at", "2020-04-22 05:36:18.556196"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_659945


 (3.6ms)  begin transaction

CommentTest: test_198401


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.568100"], ["updated_at", "2020-04-22 05:36:18.568100"]]
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.567264"], ["updated_at", "2020-04-22 05:36:18.567264"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.573781"], ["updated_at", "2020-04-22 05:36:18.573781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.574322"], ["updated_at", "2020-04-22 05:36:18.574322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.575866"], ["updated_at", "2020-04-22 05:36:18.575866"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.575785"], ["updated_at", "2020-04-22 05:36:18.575785"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_352869


 (0.1ms)  begin transaction

CommentTest: test_657129


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.586697"], ["updated_at", "2020-04-22 05:36:18.586697"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.586406"], ["updated_at", "2020-04-22 05:36:18.586406"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.590205"], ["updated_at", "2020-04-22 05:36:18.590205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.590067"], ["updated_at", "2020-04-22 05:36:18.590067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.592947"], ["updated_at", "2020-04-22 05:36:18.592947"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.592947"], ["updated_at", "2020-04-22 05:36:18.592947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_38150


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.600872"], ["updated_at", "2020-04-22 05:36:18.600872"]]
Bucket Create (7.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.605689"], ["updated_at", "2020-04-22 05:36:18.605689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.617965"], ["updated_at", "2020-04-22 05:36:18.617965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_864849


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_540181


 (4.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.622306"], ["updated_at", "2020-04-22 05:36:18.622306"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.635448"], ["updated_at", "2020-04-22 05:36:18.635448"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.638283"], ["updated_at", "2020-04-22 05:36:18.638283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.639295"], ["updated_at", "2020-04-22 05:36:18.639295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.640637"], ["updated_at", "2020-04-22 05:36:18.640637"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.641010"], ["updated_at", "2020-04-22 05:36:18.641010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_406745


 (0.1ms)  begin transaction

CommentTest: test_661529


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.652166"], ["updated_at", "2020-04-22 05:36:18.652166"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.656315"], ["updated_at", "2020-04-22 05:36:18.656315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.655890"], ["updated_at", "2020-04-22 05:36:18.655890"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.658892"], ["updated_at", "2020-04-22 05:36:18.658892"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.659126"], ["updated_at", "2020-04-22 05:36:18.659126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.661420"], ["updated_at", "2020-04-22 05:36:18.661420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_512166


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.668329"], ["updated_at", "2020-04-22 05:36:18.668329"]]

CommentTest: test_482


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.671428"], ["updated_at", "2020-04-22 05:36:18.671428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.671140"], ["updated_at", "2020-04-22 05:36:18.671140"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.674044"], ["updated_at", "2020-04-22 05:36:18.674044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.675660"], ["updated_at", "2020-04-22 05:36:18.675660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.680263"], ["updated_at", "2020-04-22 05:36:18.680263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_430332


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.685315"], ["updated_at", "2020-04-22 05:36:18.685315"]]
 (0.4ms)  begin transaction

CommentTest: test_413115


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.691684"], ["updated_at", "2020-04-22 05:36:18.691684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.695859"], ["updated_at", "2020-04-22 05:36:18.695859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.694834"], ["updated_at", "2020-04-22 05:36:18.694834"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.698590"], ["updated_at", "2020-04-22 05:36:18.698590"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.701161"], ["updated_at", "2020-04-22 05:36:18.701161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_407929

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.707654"], ["updated_at", "2020-04-22 05:36:18.707654"]]
 (2.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.710820"], ["updated_at", "2020-04-22 05:36:18.710820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.713055"], ["updated_at", "2020-04-22 05:36:18.713055"]]
 (0.1ms)  begin transaction

CommentTest: test_18875

 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.719348"], ["updated_at", "2020-04-22 05:36:18.719348"]]
 (0.1ms)  begin transaction

CommentTest: test_980857


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.723297"], ["updated_at", "2020-04-22 05:36:18.723297"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.728596"], ["updated_at", "2020-04-22 05:36:18.728596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.730590"], ["updated_at", "2020-04-22 05:36:18.730590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.729969"], ["updated_at", "2020-04-22 05:36:18.729969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.734960"], ["updated_at", "2020-04-22 05:36:18.734960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_689943


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.746326"], ["updated_at", "2020-04-22 05:36:18.746326"]]
 (3.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.750281"], ["updated_at", "2020-04-22 05:36:18.750281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.753468"], ["updated_at", "2020-04-22 05:36:18.753468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction

CommentTest: test_255234


 (0.1ms)  begin transaction

CommentTest: test_357390


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.774884"], ["updated_at", "2020-04-22 05:36:18.774884"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.773985"], ["updated_at", "2020-04-22 05:36:18.773985"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.779112"], ["updated_at", "2020-04-22 05:36:18.779112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.781087"], ["updated_at", "2020-04-22 05:36:18.781087"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.782440"], ["updated_at", "2020-04-22 05:36:18.782440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (11.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.785318"], ["updated_at", "2020-04-22 05:36:18.785318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_537160


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.805503"], ["updated_at", "2020-04-22 05:36:18.805503"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.811857"], ["updated_at", "2020-04-22 05:36:18.811857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.816067"], ["updated_at", "2020-04-22 05:36:18.816067"]]
 (0.1ms)  begin transaction

CommentTest: test_245237


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.818829"], ["updated_at", "2020-04-22 05:36:18.818829"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.826004"], ["updated_at", "2020-04-22 05:36:18.826004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_699799


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.828392"], ["updated_at", "2020-04-22 05:36:18.828392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.830011"], ["updated_at", "2020-04-22 05:36:18.830011"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.833012"], ["updated_at", "2020-04-22 05:36:18.833012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.834429"], ["updated_at", "2020-04-22 05:36:18.834429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_8170


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.841452"], ["updated_at", "2020-04-22 05:36:18.841452"]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_918956


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.846436"], ["updated_at", "2020-04-22 05:36:18.846436"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.847235"], ["updated_at", "2020-04-22 05:36:18.847235"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.848756"], ["updated_at", "2020-04-22 05:36:18.848756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.849688"], ["updated_at", "2020-04-22 05:36:18.849688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.852424"], ["updated_at", "2020-04-22 05:36:18.852424"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_363877


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.861253"], ["updated_at", "2020-04-22 05:36:18.861253"]]
 (0.1ms)  begin transaction

CommentTest: test_415675


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.863635"], ["updated_at", "2020-04-22 05:36:18.863635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.867344"], ["updated_at", "2020-04-22 05:36:18.867344"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.866176"], ["updated_at", "2020-04-22 05:36:18.866176"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.872247"], ["updated_at", "2020-04-22 05:36:18.872247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.874660"], ["updated_at", "2020-04-22 05:36:18.874660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_818336


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.883386"], ["updated_at", "2020-04-22 05:36:18.883386"]]
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.886190"], ["updated_at", "2020-04-22 05:36:18.886190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_411421


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.890915"], ["updated_at", "2020-04-22 05:36:18.890915"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.891010"], ["updated_at", "2020-04-22 05:36:18.891010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.893357"], ["updated_at", "2020-04-22 05:36:18.893357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.896157"], ["updated_at", "2020-04-22 05:36:18.896157"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_818468


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.902446"], ["updated_at", "2020-04-22 05:36:18.902446"]]
 (0.1ms)  begin transaction

CommentTest: test_103190


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.908777"], ["updated_at", "2020-04-22 05:36:18.908777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.910552"], ["updated_at", "2020-04-22 05:36:18.910552"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.911810"], ["updated_at", "2020-04-22 05:36:18.911810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.913621"], ["updated_at", "2020-04-22 05:36:18.913621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.915836"], ["updated_at", "2020-04-22 05:36:18.915836"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_722512


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_791703


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.922847"], ["updated_at", "2020-04-22 05:36:18.922847"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.925356"], ["updated_at", "2020-04-22 05:36:18.925356"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.924930"], ["updated_at", "2020-04-22 05:36:18.924930"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.928041"], ["updated_at", "2020-04-22 05:36:18.928041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.930611"], ["updated_at", "2020-04-22 05:36:18.930611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.934334"], ["updated_at", "2020-04-22 05:36:18.934334"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_551856


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.940879"], ["updated_at", "2020-04-22 05:36:18.940879"]]
 (1.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.944750"], ["updated_at", "2020-04-22 05:36:18.944750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_131429


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.947568"], ["updated_at", "2020-04-22 05:36:18.947568"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.948197"], ["updated_at", "2020-04-22 05:36:18.948197"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.950931"], ["updated_at", "2020-04-22 05:36:18.950931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.952882"], ["updated_at", "2020-04-22 05:36:18.952882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_969895


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.962459"], ["updated_at", "2020-04-22 05:36:18.962459"]]
 (0.1ms)  begin transaction

CommentTest: test_288267


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.965406"], ["updated_at", "2020-04-22 05:36:18.965406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.966208"], ["updated_at", "2020-04-22 05:36:18.966208"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.968115"], ["updated_at", "2020-04-22 05:36:18.968115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.968531"], ["updated_at", "2020-04-22 05:36:18.968531"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.972499"], ["updated_at", "2020-04-22 05:36:18.972499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_855777


 (3.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.982419"], ["updated_at", "2020-04-22 05:36:18.982419"]]
 (0.1ms)  begin transaction

CommentTest: test_389653


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.985767"], ["updated_at", "2020-04-22 05:36:18.985767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:18.986344"], ["updated_at", "2020-04-22 05:36:18.986344"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.988825"], ["updated_at", "2020-04-22 05:36:18.988825"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:18.989507"], ["updated_at", "2020-04-22 05:36:18.989507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:18.991552"], ["updated_at", "2020-04-22 05:36:18.991552"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_151355


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.001822"], ["updated_at", "2020-04-22 05:36:19.001822"]]
 (0.1ms)  begin transaction

CommentTest: test_961678


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.011169"], ["updated_at", "2020-04-22 05:36:19.011169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.011446"], ["updated_at", "2020-04-22 05:36:19.011446"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.015194"], ["updated_at", "2020-04-22 05:36:19.015194"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.014893"], ["updated_at", "2020-04-22 05:36:19.014893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.017703"], ["updated_at", "2020-04-22 05:36:19.017703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_979540


 (0.6ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.032107"], ["updated_at", "2020-04-22 05:36:19.032107"]]
 (0.1ms)  begin transaction

CommentTest: test_961303


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.039561"], ["updated_at", "2020-04-22 05:36:19.039561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.041147"], ["updated_at", "2020-04-22 05:36:19.041147"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.043805"], ["updated_at", "2020-04-22 05:36:19.043805"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.047631"], ["updated_at", "2020-04-22 05:36:19.047631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.050210"], ["updated_at", "2020-04-22 05:36:19.050210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_930048


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.057578"], ["updated_at", "2020-04-22 05:36:19.057578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.062790"], ["updated_at", "2020-04-22 05:36:19.062790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_566789


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.067200"], ["updated_at", "2020-04-22 05:36:19.067200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.067173"], ["updated_at", "2020-04-22 05:36:19.067173"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.075838"], ["updated_at", "2020-04-22 05:36:19.075838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.079461"], ["updated_at", "2020-04-22 05:36:19.079461"]]
 (0.1ms)  begin transaction

CommentTest: test_620683


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.086026"], ["updated_at", "2020-04-22 05:36:19.086026"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.089322"], ["updated_at", "2020-04-22 05:36:19.089322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.092650"], ["updated_at", "2020-04-22 05:36:19.092650"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_805019


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.113175"], ["updated_at", "2020-04-22 05:36:19.113175"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.119535"], ["updated_at", "2020-04-22 05:36:19.119535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_948612


Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.124219"], ["updated_at", "2020-04-22 05:36:19.124219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.131089"], ["updated_at", "2020-04-22 05:36:19.131089"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (4.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.139904"], ["updated_at", "2020-04-22 05:36:19.139904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.149090"], ["updated_at", "2020-04-22 05:36:19.149090"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_208257



CommentTest: test_31860


 (1.0ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.239603"], ["updated_at", "2020-04-22 05:36:19.239603"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.241154"], ["updated_at", "2020-04-22 05:36:19.241154"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.243889"], ["updated_at", "2020-04-22 05:36:19.243889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.243910"], ["updated_at", "2020-04-22 05:36:19.243910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.246280"], ["updated_at", "2020-04-22 05:36:19.246280"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.246756"], ["updated_at", "2020-04-22 05:36:19.246756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_124872


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_993430

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.256411"], ["updated_at", "2020-04-22 05:36:19.256411"]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.258672"], ["updated_at", "2020-04-22 05:36:19.258672"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.259282"], ["updated_at", "2020-04-22 05:36:19.259282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.262710"], ["updated_at", "2020-04-22 05:36:19.262710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.263164"], ["updated_at", "2020-04-22 05:36:19.263164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.264898"], ["updated_at", "2020-04-22 05:36:19.264898"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_108011


 (0.1ms)  begin transaction

CommentTest: test_42614


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.272498"], ["updated_at", "2020-04-22 05:36:19.272498"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.274328"], ["updated_at", "2020-04-22 05:36:19.274328"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.275871"], ["updated_at", "2020-04-22 05:36:19.275871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.279233"], ["updated_at", "2020-04-22 05:36:19.279233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.280572"], ["updated_at", "2020-04-22 05:36:19.280572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.281836"], ["updated_at", "2020-04-22 05:36:19.281836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_109692


 (0.1ms)  begin transaction

CommentTest: test_638128


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.296013"], ["updated_at", "2020-04-22 05:36:19.296013"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.296468"], ["updated_at", "2020-04-22 05:36:19.296468"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.297956"], ["updated_at", "2020-04-22 05:36:19.297956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.299577"], ["updated_at", "2020-04-22 05:36:19.299577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.299258"], ["updated_at", "2020-04-22 05:36:19.299258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.301381"], ["updated_at", "2020-04-22 05:36:19.301381"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_711682


 (0.1ms)  begin transaction

CommentTest: test_125356


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.313548"], ["updated_at", "2020-04-22 05:36:19.313548"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.314660"], ["updated_at", "2020-04-22 05:36:19.314660"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.317151"], ["updated_at", "2020-04-22 05:36:19.317151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.318048"], ["updated_at", "2020-04-22 05:36:19.318048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.318799"], ["updated_at", "2020-04-22 05:36:19.318799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.320864"], ["updated_at", "2020-04-22 05:36:19.320864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_702709


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.328643"], ["updated_at", "2020-04-22 05:36:19.328643"]]
 (0.1ms)  begin transaction

CommentTest: test_864827


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.331238"], ["updated_at", "2020-04-22 05:36:19.331238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.332909"], ["updated_at", "2020-04-22 05:36:19.332909"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.335017"], ["updated_at", "2020-04-22 05:36:19.335017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.335990"], ["updated_at", "2020-04-22 05:36:19.335990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.339624"], ["updated_at", "2020-04-22 05:36:19.339624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_207775


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.350283"], ["updated_at", "2020-04-22 05:36:19.350283"]]
 (0.1ms)  begin transaction

CommentTest: test_282299


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.353507"], ["updated_at", "2020-04-22 05:36:19.353507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.355998"], ["updated_at", "2020-04-22 05:36:19.355998"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.359903"], ["updated_at", "2020-04-22 05:36:19.359903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.362098"], ["updated_at", "2020-04-22 05:36:19.362098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.364613"], ["updated_at", "2020-04-22 05:36:19.364613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_253360


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.374643"], ["updated_at", "2020-04-22 05:36:19.374643"]]
 (0.1ms)  begin transaction

CommentTest: test_813754


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.380359"], ["updated_at", "2020-04-22 05:36:19.380359"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.381406"], ["updated_at", "2020-04-22 05:36:19.381406"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.383581"], ["updated_at", "2020-04-22 05:36:19.383581"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.414501"], ["updated_at", "2020-04-22 05:36:19.414501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (6.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.428861"], ["updated_at", "2020-04-22 05:36:19.428861"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (7.2ms)  begin transaction

CommentTest: test_839644


 (1.3ms)  begin transaction

CommentTest: test_698133


 (2.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.537792"], ["updated_at", "2020-04-22 05:36:19.537792"]]
Course Create (18.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.521903"], ["updated_at", "2020-04-22 05:36:19.521903"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.580733"], ["updated_at", "2020-04-22 05:36:19.580733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.587626"], ["updated_at", "2020-04-22 05:36:19.587626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.611002"], ["updated_at", "2020-04-22 05:36:19.611002"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.618574"], ["updated_at", "2020-04-22 05:36:19.618574"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (16.4ms)  rollback transaction
 (14.6ms)  rollback transaction
 (3.0ms)  begin transaction

CommentTest: test_3393


 (0.3ms)  begin transaction

CommentTest: test_128012


 (2.9ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.700588"], ["updated_at", "2020-04-22 05:36:19.700588"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (21.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.707984"], ["updated_at", "2020-04-22 05:36:19.707984"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.722640"], ["updated_at", "2020-04-22 05:36:19.722640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.746856"], ["updated_at", "2020-04-22 05:36:19.746856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.751136"], ["updated_at", "2020-04-22 05:36:19.751136"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.772918"], ["updated_at", "2020-04-22 05:36:19.772918"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (37.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (2.8ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (4.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_758552


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.905456"], ["updated_at", "2020-04-22 05:36:19.905456"]]
 (0.2ms)  begin transaction

CommentTest: test_551944


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.941615"], ["updated_at", "2020-04-22 05:36:19.941615"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:19.948581"], ["updated_at", "2020-04-22 05:36:19.948581"]]
Bucket Create (10.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:19.965670"], ["updated_at", "2020-04-22 05:36:19.965670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (24.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.958451"], ["updated_at", "2020-04-22 05:36:19.958451"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:19.995731"], ["updated_at", "2020-04-22 05:36:19.995731"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_661022


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_353163


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.065374"], ["updated_at", "2020-04-22 05:36:20.065374"]]
 (1.0ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.096828"], ["updated_at", "2020-04-22 05:36:20.096828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (6.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.098071"], ["updated_at", "2020-04-22 05:36:20.098071"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.115499"], ["updated_at", "2020-04-22 05:36:20.115499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.117767"], ["updated_at", "2020-04-22 05:36:20.117767"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.126294"], ["updated_at", "2020-04-22 05:36:20.126294"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (9.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_994050


 (0.3ms)  SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_47050


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.200145"], ["updated_at", "2020-04-22 05:36:20.200145"]]
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.216281"], ["updated_at", "2020-04-22 05:36:20.216281"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.231511"], ["updated_at", "2020-04-22 05:36:20.231511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.245803"], ["updated_at", "2020-04-22 05:36:20.245803"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.252316"], ["updated_at", "2020-04-22 05:36:20.252316"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.260784"], ["updated_at", "2020-04-22 05:36:20.260784"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (19.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.1ms)  rollback transaction
 (8.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_227879


 (0.3ms)  begin transaction

CommentTest: test_34921


 (0.5ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.370488"], ["updated_at", "2020-04-22 05:36:20.370488"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.391805"], ["updated_at", "2020-04-22 05:36:20.391805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.389477"], ["updated_at", "2020-04-22 05:36:20.389477"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.402081"], ["updated_at", "2020-04-22 05:36:20.402081"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.399616"], ["updated_at", "2020-04-22 05:36:20.399616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (10.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.426989"], ["updated_at", "2020-04-22 05:36:20.426989"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (17.9ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_497593

 (0.2ms)  begin transaction


CommentTest: test_115346


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.545567"], ["updated_at", "2020-04-22 05:36:20.545567"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.546120"], ["updated_at", "2020-04-22 05:36:20.546120"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.566411"], ["updated_at", "2020-04-22 05:36:20.566411"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:20.571335"], ["updated_at", "2020-04-22 05:36:20.571335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.603471"], ["updated_at", "2020-04-22 05:36:20.603471"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:20.765737"], ["updated_at", "2020-04-22 05:36:20.765737"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
 (31.2ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_529057


 (2.8ms)  rollback transaction
 (1.1ms)  begin transaction

CommentTest: test_696671


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.946216"], ["updated_at", "2020-04-22 05:36:20.946216"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (25.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:20.963636"], ["updated_at", "2020-04-22 05:36:20.963636"]]
Bucket Create (6.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.004646"], ["updated_at", "2020-04-22 05:36:21.004646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.038219"], ["updated_at", "2020-04-22 05:36:21.038219"]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.047786"], ["updated_at", "2020-04-22 05:36:21.047786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.055735"], ["updated_at", "2020-04-22 05:36:21.055735"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_771559


 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.147088"], ["updated_at", "2020-04-22 05:36:21.147088"]]
 (1.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.175798"], ["updated_at", "2020-04-22 05:36:21.175798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.182581"], ["updated_at", "2020-04-22 05:36:21.182581"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_668418


 (4.0ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.207184"], ["updated_at", "2020-04-22 05:36:21.207184"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.224703"], ["updated_at", "2020-04-22 05:36:21.224703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.245848"], ["updated_at", "2020-04-22 05:36:21.245848"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_734518


 (4.0ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.313017"], ["updated_at", "2020-04-22 05:36:21.313017"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_523416


Bucket Create (35.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.330013"], ["updated_at", "2020-04-22 05:36:21.330013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.378843"], ["updated_at", "2020-04-22 05:36:21.378843"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.376152"], ["updated_at", "2020-04-22 05:36:21.376152"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.395774"], ["updated_at", "2020-04-22 05:36:21.395774"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_54909


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.443697"], ["updated_at", "2020-04-22 05:36:21.443697"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.500155"], ["updated_at", "2020-04-22 05:36:21.500155"]]
Bucket Create (4.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.514010"], ["updated_at", "2020-04-22 05:36:21.514010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_628926


 (0.7ms)  SAVEPOINT active_record_1
Recording Create (14.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.545492"], ["updated_at", "2020-04-22 05:36:21.545492"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.558996"], ["updated_at", "2020-04-22 05:36:21.558996"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.579786"], ["updated_at", "2020-04-22 05:36:21.579786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (16.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.595052"], ["updated_at", "2020-04-22 05:36:21.595052"]]
 (5.3ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_978652


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (29.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.648473"], ["updated_at", "2020-04-22 05:36:21.648473"]]
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (10.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.717094"], ["updated_at", "2020-04-22 05:36:21.717094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (12.1ms)  rollback transaction
Recording Create (14.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.736966"], ["updated_at", "2020-04-22 05:36:21.736966"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_171726


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.777041"], ["updated_at", "2020-04-22 05:36:21.777041"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.799777"], ["updated_at", "2020-04-22 05:36:21.799777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (20.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.812837"], ["updated_at", "2020-04-22 05:36:21.812837"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_333932


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.838198"], ["updated_at", "2020-04-22 05:36:21.838198"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.862362"], ["updated_at", "2020-04-22 05:36:21.862362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.882963"], ["updated_at", "2020-04-22 05:36:21.882963"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_894158


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.898277"], ["updated_at", "2020-04-22 05:36:21.898277"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.918941"], ["updated_at", "2020-04-22 05:36:21.918941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.7ms)  RELEASE SAVEPOINT active_record_1
 (7.9ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:21.954800"], ["updated_at", "2020-04-22 05:36:21.954800"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_257405


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:21.973102"], ["updated_at", "2020-04-22 05:36:21.973102"]]
 (3.0ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:21.990500"], ["updated_at", "2020-04-22 05:36:21.990500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.004795"], ["updated_at", "2020-04-22 05:36:22.004795"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_633237


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.030350"], ["updated_at", "2020-04-22 05:36:22.030350"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.042741"], ["updated_at", "2020-04-22 05:36:22.042741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_449708


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.056817"], ["updated_at", "2020-04-22 05:36:22.056817"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.063467"], ["updated_at", "2020-04-22 05:36:22.063467"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.079454"], ["updated_at", "2020-04-22 05:36:22.079454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.9ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.087741"], ["updated_at", "2020-04-22 05:36:22.087741"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.7ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_762774


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.122490"], ["updated_at", "2020-04-22 05:36:22.122490"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (7.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.134621"], ["updated_at", "2020-04-22 05:36:22.134621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.148819"], ["updated_at", "2020-04-22 05:36:22.148819"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_738869


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.163233"], ["updated_at", "2020-04-22 05:36:22.163233"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.228322"], ["updated_at", "2020-04-22 05:36:22.228322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.246446"], ["updated_at", "2020-04-22 05:36:22.246446"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (14.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.7ms)  rollback transaction
Comment Create (9.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_992338


 (0.3ms)  SAVEPOINT active_record_1
 (8.3ms)  begin transaction

CommentTest: test_755964


Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.304069"], ["updated_at", "2020-04-22 05:36:22.304069"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.326830"], ["updated_at", "2020-04-22 05:36:22.326830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.321660"], ["updated_at", "2020-04-22 05:36:22.321660"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.344988"], ["updated_at", "2020-04-22 05:36:22.344988"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.360951"], ["updated_at", "2020-04-22 05:36:22.360951"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.382415"], ["updated_at", "2020-04-22 05:36:22.382415"]]
 (1.7ms)  rollback transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_227537


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.418614"], ["updated_at", "2020-04-22 05:36:22.418614"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_547075


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.458028"], ["updated_at", "2020-04-22 05:36:22.458028"]]
Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.460608"], ["updated_at", "2020-04-22 05:36:22.460608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (29.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.471572"], ["updated_at", "2020-04-22 05:36:22.471572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.509886"], ["updated_at", "2020-04-22 05:36:22.509886"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.520878"], ["updated_at", "2020-04-22 05:36:22.520878"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (13.2ms)  rollback transaction
 (14.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_509208


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_283210


Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.572555"], ["updated_at", "2020-04-22 05:36:22.572555"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.580126"], ["updated_at", "2020-04-22 05:36:22.580126"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.584727"], ["updated_at", "2020-04-22 05:36:22.584727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.598274"], ["updated_at", "2020-04-22 05:36:22.598274"]]
Bucket Create (11.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.608634"], ["updated_at", "2020-04-22 05:36:22.608634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.712199"], ["updated_at", "2020-04-22 05:36:22.712199"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.3ms)  rollback transaction
 (7.0ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_636965


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_64747


Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.829869"], ["updated_at", "2020-04-22 05:36:22.829869"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.845175"], ["updated_at", "2020-04-22 05:36:22.845175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (8.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:22.843392"], ["updated_at", "2020-04-22 05:36:22.843392"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:22.862576"], ["updated_at", "2020-04-22 05:36:22.862576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.880006"], ["updated_at", "2020-04-22 05:36:22.880006"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:22.883270"], ["updated_at", "2020-04-22 05:36:22.883270"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (2.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (31.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

 (1.8ms)  rollback transaction

CommentTest: test_106414


 (0.6ms)  begin transaction

CommentTest: test_110735


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (15.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.007330"], ["updated_at", "2020-04-22 05:36:23.007330"]]
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.007892"], ["updated_at", "2020-04-22 05:36:23.007892"]]
Bucket Create (7.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.036923"], ["updated_at", "2020-04-22 05:36:23.036923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.051380"], ["updated_at", "2020-04-22 05:36:23.051380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.073941"], ["updated_at", "2020-04-22 05:36:23.073941"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.075125"], ["updated_at", "2020-04-22 05:36:23.075125"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (18.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_158577


 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.147981"], ["updated_at", "2020-04-22 05:36:23.147981"]]
 (1.0ms)  begin transaction

CommentTest: test_341187


Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.178628"], ["updated_at", "2020-04-22 05:36:23.178628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.189442"], ["updated_at", "2020-04-22 05:36:23.189442"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.194503"], ["updated_at", "2020-04-22 05:36:23.194503"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.206378"], ["updated_at", "2020-04-22 05:36:23.206378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.214916"], ["updated_at", "2020-04-22 05:36:23.214916"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (12.9ms)  rollback transaction
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.0ms)  begin transaction

CommentTest: test_918779


 (9.9ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_243911


Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.292329"], ["updated_at", "2020-04-22 05:36:23.292329"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.300937"], ["updated_at", "2020-04-22 05:36:23.300937"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.304303"], ["updated_at", "2020-04-22 05:36:23.304303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.327846"], ["updated_at", "2020-04-22 05:36:23.327846"]]
 (2.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.343357"], ["updated_at", "2020-04-22 05:36:23.343357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.353255"], ["updated_at", "2020-04-22 05:36:23.353255"]]
 (3.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_625515


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (25.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (6.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.408513"], ["updated_at", "2020-04-22 05:36:23.408513"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_653432


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.425536"], ["updated_at", "2020-04-22 05:36:23.425536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.444826"], ["updated_at", "2020-04-22 05:36:23.444826"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.459476"], ["updated_at", "2020-04-22 05:36:23.459476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.458698"], ["updated_at", "2020-04-22 05:36:23.458698"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.469162"], ["updated_at", "2020-04-22 05:36:23.469162"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_283364

 (0.5ms)  rollback transaction

 (0.1ms)  begin transaction

CommentTest: test_733873


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.490925"], ["updated_at", "2020-04-22 05:36:23.490925"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.492470"], ["updated_at", "2020-04-22 05:36:23.492470"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.493483"], ["updated_at", "2020-04-22 05:36:23.493483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.495334"], ["updated_at", "2020-04-22 05:36:23.495334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.496684"], ["updated_at", "2020-04-22 05:36:23.496684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.500498"], ["updated_at", "2020-04-22 05:36:23.500498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_549085


 (0.1ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.514885"], ["updated_at", "2020-04-22 05:36:23.514885"]]
 (0.1ms)  begin transaction

CommentTest: test_16368


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.521073"], ["updated_at", "2020-04-22 05:36:23.521073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.521764"], ["updated_at", "2020-04-22 05:36:23.521764"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.523093"], ["updated_at", "2020-04-22 05:36:23.523093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.525250"], ["updated_at", "2020-04-22 05:36:23.525250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.528222"], ["updated_at", "2020-04-22 05:36:23.528222"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_925589


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.535853"], ["updated_at", "2020-04-22 05:36:23.535853"]]
 (0.1ms)  begin transaction

CommentTest: test_827129


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.541374"], ["updated_at", "2020-04-22 05:36:23.541374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.544191"], ["updated_at", "2020-04-22 05:36:23.544191"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.545683"], ["updated_at", "2020-04-22 05:36:23.545683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.547337"], ["updated_at", "2020-04-22 05:36:23.547337"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.549832"], ["updated_at", "2020-04-22 05:36:23.549832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_648215


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_661444


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.558401"], ["updated_at", "2020-04-22 05:36:23.558401"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.561023"], ["updated_at", "2020-04-22 05:36:23.561023"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.565638"], ["updated_at", "2020-04-22 05:36:23.565638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.563763"], ["updated_at", "2020-04-22 05:36:23.563763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.568590"], ["updated_at", "2020-04-22 05:36:23.568590"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.569293"], ["updated_at", "2020-04-22 05:36:23.569293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_953868


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.578974"], ["updated_at", "2020-04-22 05:36:23.578974"]]
 (0.1ms)  begin transaction

CommentTest: test_341691


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.583784"], ["updated_at", "2020-04-22 05:36:23.583784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.584620"], ["updated_at", "2020-04-22 05:36:23.584620"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.586786"], ["updated_at", "2020-04-22 05:36:23.586786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.589556"], ["updated_at", "2020-04-22 05:36:23.589556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.592296"], ["updated_at", "2020-04-22 05:36:23.592296"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_392701


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.604042"], ["updated_at", "2020-04-22 05:36:23.604042"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.608388"], ["updated_at", "2020-04-22 05:36:23.608388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_711997


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.610473"], ["updated_at", "2020-04-22 05:36:23.610473"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.612600"], ["updated_at", "2020-04-22 05:36:23.612600"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.618804"], ["updated_at", "2020-04-22 05:36:23.618804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.623541"], ["updated_at", "2020-04-22 05:36:23.623541"]]
 (0.1ms)  begin transaction

CommentTest: test_769582


 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.629254"], ["updated_at", "2020-04-22 05:36:23.629254"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.632821"], ["updated_at", "2020-04-22 05:36:23.632821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.635491"], ["updated_at", "2020-04-22 05:36:23.635491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_872480


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.641759"], ["updated_at", "2020-04-22 05:36:23.641759"]]
 (2.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.647502"], ["updated_at", "2020-04-22 05:36:23.647502"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_239272


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.651048"], ["updated_at", "2020-04-22 05:36:23.651048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.653661"], ["updated_at", "2020-04-22 05:36:23.653661"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.658663"], ["updated_at", "2020-04-22 05:36:23.658663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.660724"], ["updated_at", "2020-04-22 05:36:23.660724"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_924529


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.667027"], ["updated_at", "2020-04-22 05:36:23.667027"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.671891"], ["updated_at", "2020-04-22 05:36:23.671891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_428908


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.674509"], ["updated_at", "2020-04-22 05:36:23.674509"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.674280"], ["updated_at", "2020-04-22 05:36:23.674280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.677312"], ["updated_at", "2020-04-22 05:36:23.677312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.680818"], ["updated_at", "2020-04-22 05:36:23.680818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_386226


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.690386"], ["updated_at", "2020-04-22 05:36:23.690386"]]
 (0.7ms)  begin transaction

CommentTest: test_112794


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.693674"], ["updated_at", "2020-04-22 05:36:23.693674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.693190"], ["updated_at", "2020-04-22 05:36:23.693190"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.695919"], ["updated_at", "2020-04-22 05:36:23.695919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.697362"], ["updated_at", "2020-04-22 05:36:23.697362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.700241"], ["updated_at", "2020-04-22 05:36:23.700241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_725732


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.713513"], ["updated_at", "2020-04-22 05:36:23.713513"]]
 (0.1ms)  begin transaction

CommentTest: test_269618


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.717302"], ["updated_at", "2020-04-22 05:36:23.717302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.717277"], ["updated_at", "2020-04-22 05:36:23.717277"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.720324"], ["updated_at", "2020-04-22 05:36:23.720324"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.720787"], ["updated_at", "2020-04-22 05:36:23.720787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.723419"], ["updated_at", "2020-04-22 05:36:23.723419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  begin transaction

CommentTest: test_154586


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.730936"], ["updated_at", "2020-04-22 05:36:23.730936"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.735373"], ["updated_at", "2020-04-22 05:36:23.735373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_301449


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.738539"], ["updated_at", "2020-04-22 05:36:23.738539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.739993"], ["updated_at", "2020-04-22 05:36:23.739993"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.742778"], ["updated_at", "2020-04-22 05:36:23.742778"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.745350"], ["updated_at", "2020-04-22 05:36:23.745350"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_692566


 (1.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.751073"], ["updated_at", "2020-04-22 05:36:23.751073"]]
 (1.2ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.759657"], ["updated_at", "2020-04-22 05:36:23.759657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_632542


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.762600"], ["updated_at", "2020-04-22 05:36:23.762600"]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.762716"], ["updated_at", "2020-04-22 05:36:23.762716"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.768092"], ["updated_at", "2020-04-22 05:36:23.768092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.770994"], ["updated_at", "2020-04-22 05:36:23.770994"]]
 (0.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_478504


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.777042"], ["updated_at", "2020-04-22 05:36:23.777042"]]
 (0.1ms)  begin transaction

CommentTest: test_744792


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.783474"], ["updated_at", "2020-04-22 05:36:23.783474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.785580"], ["updated_at", "2020-04-22 05:36:23.785580"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.793735"], ["updated_at", "2020-04-22 05:36:23.793735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.797175"], ["updated_at", "2020-04-22 05:36:23.797175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.800487"], ["updated_at", "2020-04-22 05:36:23.800487"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_175553


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.806139"], ["updated_at", "2020-04-22 05:36:23.806139"]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_650446


Bucket Create (6.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.811689"], ["updated_at", "2020-04-22 05:36:23.811689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.820531"], ["updated_at", "2020-04-22 05:36:23.820531"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.818923"], ["updated_at", "2020-04-22 05:36:23.818923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.822829"], ["updated_at", "2020-04-22 05:36:23.822829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.825369"], ["updated_at", "2020-04-22 05:36:23.825369"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_423424


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.833157"], ["updated_at", "2020-04-22 05:36:23.833157"]]
 (2.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.839801"], ["updated_at", "2020-04-22 05:36:23.839801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_35217


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.842312"], ["updated_at", "2020-04-22 05:36:23.842312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.843042"], ["updated_at", "2020-04-22 05:36:23.843042"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.846207"], ["updated_at", "2020-04-22 05:36:23.846207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.853419"], ["updated_at", "2020-04-22 05:36:23.853419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_352457


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.859262"], ["updated_at", "2020-04-22 05:36:23.859262"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.862510"], ["updated_at", "2020-04-22 05:36:23.862510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.866081"], ["updated_at", "2020-04-22 05:36:23.866081"]]
 (0.1ms)  begin transaction

CommentTest: test_972399


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.869257"], ["updated_at", "2020-04-22 05:36:23.869257"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.873599"], ["updated_at", "2020-04-22 05:36:23.873599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.875698"], ["updated_at", "2020-04-22 05:36:23.875698"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_279791


Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.880468"], ["updated_at", "2020-04-22 05:36:23.880468"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.884308"], ["updated_at", "2020-04-22 05:36:23.884308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_350374


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.887355"], ["updated_at", "2020-04-22 05:36:23.887355"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.888673"], ["updated_at", "2020-04-22 05:36:23.888673"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.891935"], ["updated_at", "2020-04-22 05:36:23.891935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.894689"], ["updated_at", "2020-04-22 05:36:23.894689"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_518322


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.904151"], ["updated_at", "2020-04-22 05:36:23.904151"]]
 (0.2ms)  begin transaction

CommentTest: test_325139


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.908978"], ["updated_at", "2020-04-22 05:36:23.908978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.909982"], ["updated_at", "2020-04-22 05:36:23.909982"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.911203"], ["updated_at", "2020-04-22 05:36:23.911203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.913582"], ["updated_at", "2020-04-22 05:36:23.913582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.919370"], ["updated_at", "2020-04-22 05:36:23.919370"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_163773


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.928239"], ["updated_at", "2020-04-22 05:36:23.928239"]]
 (0.1ms)  begin transaction

CommentTest: test_31106


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.932141"], ["updated_at", "2020-04-22 05:36:23.932141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.932191"], ["updated_at", "2020-04-22 05:36:23.932191"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.934847"], ["updated_at", "2020-04-22 05:36:23.934847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.935919"], ["updated_at", "2020-04-22 05:36:23.935919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.939154"], ["updated_at", "2020-04-22 05:36:23.939154"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_834481


 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.949016"], ["updated_at", "2020-04-22 05:36:23.949016"]]
 (0.1ms)  begin transaction

CommentTest: test_879115


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.952272"], ["updated_at", "2020-04-22 05:36:23.952272"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.954961"], ["updated_at", "2020-04-22 05:36:23.954961"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.956731"], ["updated_at", "2020-04-22 05:36:23.956731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.958587"], ["updated_at", "2020-04-22 05:36:23.958587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.961696"], ["updated_at", "2020-04-22 05:36:23.961696"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_460043


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.971355"], ["updated_at", "2020-04-22 05:36:23.971355"]]
 (0.1ms)  begin transaction

CommentTest: test_232428


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.975172"], ["updated_at", "2020-04-22 05:36:23.975172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.975908"], ["updated_at", "2020-04-22 05:36:23.975908"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:23.979476"], ["updated_at", "2020-04-22 05:36:23.979476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.978490"], ["updated_at", "2020-04-22 05:36:23.978490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:23.981962"], ["updated_at", "2020-04-22 05:36:23.981962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_434969


 (0.2ms)  begin transaction

CommentTest: test_764637


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.994863"], ["updated_at", "2020-04-22 05:36:23.994863"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:23.999131"], ["updated_at", "2020-04-22 05:36:23.999131"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.000986"], ["updated_at", "2020-04-22 05:36:24.000986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.002316"], ["updated_at", "2020-04-22 05:36:24.002316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.004745"], ["updated_at", "2020-04-22 05:36:24.004745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.006508"], ["updated_at", "2020-04-22 05:36:24.006508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_589815

 (0.1ms)  begin transaction


CommentTest: test_941693


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.024346"], ["updated_at", "2020-04-22 05:36:24.024346"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.026155"], ["updated_at", "2020-04-22 05:36:24.026155"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.028033"], ["updated_at", "2020-04-22 05:36:24.028033"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.030482"], ["updated_at", "2020-04-22 05:36:24.030482"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.032530"], ["updated_at", "2020-04-22 05:36:24.032530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.033351"], ["updated_at", "2020-04-22 05:36:24.033351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_527512


 (0.1ms)  begin transaction

CommentTest: test_264748


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.047878"], ["updated_at", "2020-04-22 05:36:24.047878"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.047983"], ["updated_at", "2020-04-22 05:36:24.047983"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.051335"], ["updated_at", "2020-04-22 05:36:24.051335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.052089"], ["updated_at", "2020-04-22 05:36:24.052089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.054467"], ["updated_at", "2020-04-22 05:36:24.054467"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.054660"], ["updated_at", "2020-04-22 05:36:24.054660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (3.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_45140


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.067862"], ["updated_at", "2020-04-22 05:36:24.067862"]]
 (0.1ms)  begin transaction

CommentTest: test_740764


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.071642"], ["updated_at", "2020-04-22 05:36:24.071642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.074224"], ["updated_at", "2020-04-22 05:36:24.074224"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.074617"], ["updated_at", "2020-04-22 05:36:24.074617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.078809"], ["updated_at", "2020-04-22 05:36:24.078809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.082653"], ["updated_at", "2020-04-22 05:36:24.082653"]]

CommentTest: test_646152


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.086190"], ["updated_at", "2020-04-22 05:36:24.086190"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.090791"], ["updated_at", "2020-04-22 05:36:24.090791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.095015"], ["updated_at", "2020-04-22 05:36:24.095015"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_82251


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.102574"], ["updated_at", "2020-04-22 05:36:24.102574"]]
 (1.1ms)  rollback transaction
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.111343"], ["updated_at", "2020-04-22 05:36:24.111343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_981332


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.117012"], ["updated_at", "2020-04-22 05:36:24.117012"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.117505"], ["updated_at", "2020-04-22 05:36:24.117505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.120509"], ["updated_at", "2020-04-22 05:36:24.120509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.124128"], ["updated_at", "2020-04-22 05:36:24.124128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  begin transaction

CommentTest: test_147620

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.132233"], ["updated_at", "2020-04-22 05:36:24.132233"]]
 (0.1ms)  begin transaction

CommentTest: test_750874


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.137098"], ["updated_at", "2020-04-22 05:36:24.137098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.143283"], ["updated_at", "2020-04-22 05:36:24.143283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.137211"], ["updated_at", "2020-04-22 05:36:24.137211"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.146945"], ["updated_at", "2020-04-22 05:36:24.146945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.151619"], ["updated_at", "2020-04-22 05:36:24.151619"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_677561


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.159135"], ["updated_at", "2020-04-22 05:36:24.159135"]]
Comment Create (7.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.168199"], ["updated_at", "2020-04-22 05:36:24.168199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.173108"], ["updated_at", "2020-04-22 05:36:24.173108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_832144


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.176745"], ["updated_at", "2020-04-22 05:36:24.176745"]]
 (0.3ms)  begin transaction

CommentTest: test_517004


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.186221"], ["updated_at", "2020-04-22 05:36:24.186221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.187421"], ["updated_at", "2020-04-22 05:36:24.187421"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.190627"], ["updated_at", "2020-04-22 05:36:24.190627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.190000"], ["updated_at", "2020-04-22 05:36:24.190000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.192991"], ["updated_at", "2020-04-22 05:36:24.192991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_122477


 (0.1ms)  begin transaction

CommentTest: test_130171


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.205124"], ["updated_at", "2020-04-22 05:36:24.205124"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.206637"], ["updated_at", "2020-04-22 05:36:24.206637"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.210737"], ["updated_at", "2020-04-22 05:36:24.210737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.209940"], ["updated_at", "2020-04-22 05:36:24.209940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.213514"], ["updated_at", "2020-04-22 05:36:24.213514"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.214050"], ["updated_at", "2020-04-22 05:36:24.214050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_494425


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.229330"], ["updated_at", "2020-04-22 05:36:24.229330"]]
 (0.1ms)  begin transaction

CommentTest: test_409370


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.236478"], ["updated_at", "2020-04-22 05:36:24.236478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.240807"], ["updated_at", "2020-04-22 05:36:24.240807"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.241407"], ["updated_at", "2020-04-22 05:36:24.241407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.248068"], ["updated_at", "2020-04-22 05:36:24.248068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.250264"], ["updated_at", "2020-04-22 05:36:24.250264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_380451


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.254631"], ["updated_at", "2020-04-22 05:36:24.254631"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.259357"], ["updated_at", "2020-04-22 05:36:24.259357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.261975"], ["updated_at", "2020-04-22 05:36:24.261975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_451230


CommentTest: test_221442



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.279300"], ["updated_at", "2020-04-22 05:36:24.279300"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.280180"], ["updated_at", "2020-04-22 05:36:24.280180"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.283913"], ["updated_at", "2020-04-22 05:36:24.283913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.283309"], ["updated_at", "2020-04-22 05:36:24.283309"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.287366"], ["updated_at", "2020-04-22 05:36:24.287366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.290365"], ["updated_at", "2020-04-22 05:36:24.290365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_211039


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_882856


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.300778"], ["updated_at", "2020-04-22 05:36:24.300778"]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.302860"], ["updated_at", "2020-04-22 05:36:24.302860"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.306638"], ["updated_at", "2020-04-22 05:36:24.306638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.307388"], ["updated_at", "2020-04-22 05:36:24.307388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.310540"], ["updated_at", "2020-04-22 05:36:24.310540"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.309600"], ["updated_at", "2020-04-22 05:36:24.309600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_683396


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.322319"], ["updated_at", "2020-04-22 05:36:24.322319"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.329790"], ["updated_at", "2020-04-22 05:36:24.329790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.332847"], ["updated_at", "2020-04-22 05:36:24.332847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_320034


 (0.1ms)  begin transaction

CommentTest: test_163508


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.469027"], ["updated_at", "2020-04-22 05:36:24.469027"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.470292"], ["updated_at", "2020-04-22 05:36:24.470292"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.483652"], ["updated_at", "2020-04-22 05:36:24.483652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.486353"], ["updated_at", "2020-04-22 05:36:24.486353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.494256"], ["updated_at", "2020-04-22 05:36:24.494256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.497141"], ["updated_at", "2020-04-22 05:36:24.497141"]]
 (0.1ms)  begin transaction

CommentTest: test_660057


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.500568"], ["updated_at", "2020-04-22 05:36:24.500568"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.504663"], ["updated_at", "2020-04-22 05:36:24.504663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.509603"], ["updated_at", "2020-04-22 05:36:24.509603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_461666


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.529762"], ["updated_at", "2020-04-22 05:36:24.529762"]]
 (0.1ms)  begin transaction

CommentTest: test_295909


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.533990"], ["updated_at", "2020-04-22 05:36:24.533990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.537409"], ["updated_at", "2020-04-22 05:36:24.537409"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.534943"], ["updated_at", "2020-04-22 05:36:24.534943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.543046"], ["updated_at", "2020-04-22 05:36:24.543046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.545966"], ["updated_at", "2020-04-22 05:36:24.545966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (9.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_75650


 (2.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.563583"], ["updated_at", "2020-04-22 05:36:24.563583"]]
 (0.1ms)  begin transaction

CommentTest: test_148287


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.567427"], ["updated_at", "2020-04-22 05:36:24.567427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.571209"], ["updated_at", "2020-04-22 05:36:24.571209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.569113"], ["updated_at", "2020-04-22 05:36:24.569113"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.576378"], ["updated_at", "2020-04-22 05:36:24.576378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.579949"], ["updated_at", "2020-04-22 05:36:24.579949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (2.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_871745

 (0.6ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_497417


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.600752"], ["updated_at", "2020-04-22 05:36:24.600752"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.603396"], ["updated_at", "2020-04-22 05:36:24.603396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.603581"], ["updated_at", "2020-04-22 05:36:24.603581"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.614133"], ["updated_at", "2020-04-22 05:36:24.614133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.628989"], ["updated_at", "2020-04-22 05:36:24.628989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.635001"], ["updated_at", "2020-04-22 05:36:24.635001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_441233


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_944953


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.665576"], ["updated_at", "2020-04-22 05:36:24.665576"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.667070"], ["updated_at", "2020-04-22 05:36:24.667070"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.668864"], ["updated_at", "2020-04-22 05:36:24.668864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.674685"], ["updated_at", "2020-04-22 05:36:24.674685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.676031"], ["updated_at", "2020-04-22 05:36:24.676031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.677616"], ["updated_at", "2020-04-22 05:36:24.677616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (10.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_697255


 (0.1ms)  begin transaction

CommentTest: test_651773


 (0.1ms)  SAVEPOINT active_record_1
 (4.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.701823"], ["updated_at", "2020-04-22 05:36:24.701823"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.713608"], ["updated_at", "2020-04-22 05:36:24.713608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (13.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.702113"], ["updated_at", "2020-04-22 05:36:24.702113"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.718084"], ["updated_at", "2020-04-22 05:36:24.718084"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.719382"], ["updated_at", "2020-04-22 05:36:24.719382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.724676"], ["updated_at", "2020-04-22 05:36:24.724676"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_542512


 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.730333"], ["updated_at", "2020-04-22 05:36:24.730333"]]
 (0.5ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_270825


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.733611"], ["updated_at", "2020-04-22 05:36:24.733611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.735593"], ["updated_at", "2020-04-22 05:36:24.735593"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.738809"], ["updated_at", "2020-04-22 05:36:24.738809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.740490"], ["updated_at", "2020-04-22 05:36:24.740490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.743747"], ["updated_at", "2020-04-22 05:36:24.743747"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_997492


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.750458"], ["updated_at", "2020-04-22 05:36:24.750458"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.753375"], ["updated_at", "2020-04-22 05:36:24.753375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_150149


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.757098"], ["updated_at", "2020-04-22 05:36:24.757098"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.757339"], ["updated_at", "2020-04-22 05:36:24.757339"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.760817"], ["updated_at", "2020-04-22 05:36:24.760817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.763763"], ["updated_at", "2020-04-22 05:36:24.763763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_663511


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.768290"], ["updated_at", "2020-04-22 05:36:24.768290"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.773128"], ["updated_at", "2020-04-22 05:36:24.773128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.776534"], ["updated_at", "2020-04-22 05:36:24.776534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_16972


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.780539"], ["updated_at", "2020-04-22 05:36:24.780539"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.783983"], ["updated_at", "2020-04-22 05:36:24.783983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_804085


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.792343"], ["updated_at", "2020-04-22 05:36:24.792343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.794414"], ["updated_at", "2020-04-22 05:36:24.794414"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.796989"], ["updated_at", "2020-04-22 05:36:24.796989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.799915"], ["updated_at", "2020-04-22 05:36:24.799915"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_376716


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.813650"], ["updated_at", "2020-04-22 05:36:24.813650"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.817713"], ["updated_at", "2020-04-22 05:36:24.817713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.824938"], ["updated_at", "2020-04-22 05:36:24.824938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_921399


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.830423"], ["updated_at", "2020-04-22 05:36:24.830423"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.835489"], ["updated_at", "2020-04-22 05:36:24.835489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (16.4ms)  begin transaction

CommentTest: test_809125


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.852984"], ["updated_at", "2020-04-22 05:36:24.852984"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.859306"], ["updated_at", "2020-04-22 05:36:24.859306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.862397"], ["updated_at", "2020-04-22 05:36:24.862397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.865014"], ["updated_at", "2020-04-22 05:36:24.865014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_449461


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_65744


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.874120"], ["updated_at", "2020-04-22 05:36:24.874120"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.877855"], ["updated_at", "2020-04-22 05:36:24.877855"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.877992"], ["updated_at", "2020-04-22 05:36:24.877992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.880521"], ["updated_at", "2020-04-22 05:36:24.880521"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.880463"], ["updated_at", "2020-04-22 05:36:24.880463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.883020"], ["updated_at", "2020-04-22 05:36:24.883020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_591490


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.892334"], ["updated_at", "2020-04-22 05:36:24.892334"]]
 (0.2ms)  begin transaction

CommentTest: test_750651


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.895509"], ["updated_at", "2020-04-22 05:36:24.895509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.897314"], ["updated_at", "2020-04-22 05:36:24.897314"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.897381"], ["updated_at", "2020-04-22 05:36:24.897381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.901349"], ["updated_at", "2020-04-22 05:36:24.901349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.904341"], ["updated_at", "2020-04-22 05:36:24.904341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_446027


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_659448


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.924755"], ["updated_at", "2020-04-22 05:36:24.924755"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.928407"], ["updated_at", "2020-04-22 05:36:24.928407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.927101"], ["updated_at", "2020-04-22 05:36:24.927101"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.930486"], ["updated_at", "2020-04-22 05:36:24.930486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.931592"], ["updated_at", "2020-04-22 05:36:24.931592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.933786"], ["updated_at", "2020-04-22 05:36:24.933786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_583053


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.943964"], ["updated_at", "2020-04-22 05:36:24.943964"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.947888"], ["updated_at", "2020-04-22 05:36:24.947888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.951091"], ["updated_at", "2020-04-22 05:36:24.951091"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (13.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_907029


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_304299


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.965431"], ["updated_at", "2020-04-22 05:36:24.965431"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.967331"], ["updated_at", "2020-04-22 05:36:24.967331"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.969420"], ["updated_at", "2020-04-22 05:36:24.969420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.972452"], ["updated_at", "2020-04-22 05:36:24.972452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.973586"], ["updated_at", "2020-04-22 05:36:24.973586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.975518"], ["updated_at", "2020-04-22 05:36:24.975518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_489129


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.984561"], ["updated_at", "2020-04-22 05:36:24.984561"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:24.987955"], ["updated_at", "2020-04-22 05:36:24.987955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:24.991034"], ["updated_at", "2020-04-22 05:36:24.991034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_88603


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:24.997881"], ["updated_at", "2020-04-22 05:36:24.997881"]]
 (0.1ms)  begin transaction

CommentTest: test_407934


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.001016"], ["updated_at", "2020-04-22 05:36:25.001016"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.004525"], ["updated_at", "2020-04-22 05:36:25.004525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.003713"], ["updated_at", "2020-04-22 05:36:25.003713"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.009507"], ["updated_at", "2020-04-22 05:36:25.009507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.015612"], ["updated_at", "2020-04-22 05:36:25.015612"]]
 (0.1ms)  begin transaction

CommentTest: test_953946


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.018379"], ["updated_at", "2020-04-22 05:36:25.018379"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.026588"], ["updated_at", "2020-04-22 05:36:25.026588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_318381


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.029058"], ["updated_at", "2020-04-22 05:36:25.029058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.030407"], ["updated_at", "2020-04-22 05:36:25.030407"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.033980"], ["updated_at", "2020-04-22 05:36:25.033980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.036719"], ["updated_at", "2020-04-22 05:36:25.036719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_998760


 (0.5ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_500151


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.046911"], ["updated_at", "2020-04-22 05:36:25.046911"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.049467"], ["updated_at", "2020-04-22 05:36:25.049467"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.052325"], ["updated_at", "2020-04-22 05:36:25.052325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.051566"], ["updated_at", "2020-04-22 05:36:25.051566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.055299"], ["updated_at", "2020-04-22 05:36:25.055299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.056739"], ["updated_at", "2020-04-22 05:36:25.056739"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_152687


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.064833"], ["updated_at", "2020-04-22 05:36:25.064833"]]
 (0.1ms)  begin transaction

CommentTest: test_864593


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.068423"], ["updated_at", "2020-04-22 05:36:25.068423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.068373"], ["updated_at", "2020-04-22 05:36:25.068373"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.070998"], ["updated_at", "2020-04-22 05:36:25.070998"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.072471"], ["updated_at", "2020-04-22 05:36:25.072471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.076146"], ["updated_at", "2020-04-22 05:36:25.076146"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_465025


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.089820"], ["updated_at", "2020-04-22 05:36:25.089820"]]
 (0.1ms)  begin transaction

CommentTest: test_736759


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.094444"], ["updated_at", "2020-04-22 05:36:25.094444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.094701"], ["updated_at", "2020-04-22 05:36:25.094701"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.098398"], ["updated_at", "2020-04-22 05:36:25.098398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.100005"], ["updated_at", "2020-04-22 05:36:25.100005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.102495"], ["updated_at", "2020-04-22 05:36:25.102495"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_667644


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.113747"], ["updated_at", "2020-04-22 05:36:25.113747"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.118055"], ["updated_at", "2020-04-22 05:36:25.118055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_572410


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.122636"], ["updated_at", "2020-04-22 05:36:25.122636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.124188"], ["updated_at", "2020-04-22 05:36:25.124188"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.127094"], ["updated_at", "2020-04-22 05:36:25.127094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.129553"], ["updated_at", "2020-04-22 05:36:25.129553"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_478261


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.135810"], ["updated_at", "2020-04-22 05:36:25.135810"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_938464


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.141064"], ["updated_at", "2020-04-22 05:36:25.141064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.142311"], ["updated_at", "2020-04-22 05:36:25.142311"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.143637"], ["updated_at", "2020-04-22 05:36:25.143637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.146748"], ["updated_at", "2020-04-22 05:36:25.146748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.149873"], ["updated_at", "2020-04-22 05:36:25.149873"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_402662


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.161363"], ["updated_at", "2020-04-22 05:36:25.161363"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.164815"], ["updated_at", "2020-04-22 05:36:25.164815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_260082


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.167715"], ["updated_at", "2020-04-22 05:36:25.167715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.167793"], ["updated_at", "2020-04-22 05:36:25.167793"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.173106"], ["updated_at", "2020-04-22 05:36:25.173106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.175505"], ["updated_at", "2020-04-22 05:36:25.175505"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_417257


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.180167"], ["updated_at", "2020-04-22 05:36:25.180167"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.183617"], ["updated_at", "2020-04-22 05:36:25.183617"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_949007


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.185724"], ["updated_at", "2020-04-22 05:36:25.185724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.186126"], ["updated_at", "2020-04-22 05:36:25.186126"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.190626"], ["updated_at", "2020-04-22 05:36:25.190626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.192727"], ["updated_at", "2020-04-22 05:36:25.192727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_816678


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.198796"], ["updated_at", "2020-04-22 05:36:25.198796"]]
 (0.1ms)  begin transaction

CommentTest: test_874904


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.202222"], ["updated_at", "2020-04-22 05:36:25.202222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.204248"], ["updated_at", "2020-04-22 05:36:25.204248"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.205705"], ["updated_at", "2020-04-22 05:36:25.205705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.207882"], ["updated_at", "2020-04-22 05:36:25.207882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.210038"], ["updated_at", "2020-04-22 05:36:25.210038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_660956


Bucket Load (14.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.223310"], ["updated_at", "2020-04-22 05:36:25.223310"]]
 (0.7ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.226940"], ["updated_at", "2020-04-22 05:36:25.226940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.229543"], ["updated_at", "2020-04-22 05:36:25.229543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_848090


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.232772"], ["updated_at", "2020-04-22 05:36:25.232772"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.239367"], ["updated_at", "2020-04-22 05:36:25.239367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_124944


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.244785"], ["updated_at", "2020-04-22 05:36:25.244785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.248497"], ["updated_at", "2020-04-22 05:36:25.248497"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.253737"], ["updated_at", "2020-04-22 05:36:25.253737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.257346"], ["updated_at", "2020-04-22 05:36:25.257346"]]
 (2.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_55330


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.266146"], ["updated_at", "2020-04-22 05:36:25.266146"]]
 (1.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.270223"], ["updated_at", "2020-04-22 05:36:25.270223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.274312"], ["updated_at", "2020-04-22 05:36:25.274312"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_45988


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.280023"], ["updated_at", "2020-04-22 05:36:25.280023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_263771


Bucket Create (6.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.284458"], ["updated_at", "2020-04-22 05:36:25.284458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.292294"], ["updated_at", "2020-04-22 05:36:25.292294"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.293747"], ["updated_at", "2020-04-22 05:36:25.293747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.295048"], ["updated_at", "2020-04-22 05:36:25.295048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.297377"], ["updated_at", "2020-04-22 05:36:25.297377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_452640


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.308610"], ["updated_at", "2020-04-22 05:36:25.308610"]]
 (0.1ms)  begin transaction

CommentTest: test_50205


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.314226"], ["updated_at", "2020-04-22 05:36:25.314226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.314796"], ["updated_at", "2020-04-22 05:36:25.314796"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.316430"], ["updated_at", "2020-04-22 05:36:25.316430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.318362"], ["updated_at", "2020-04-22 05:36:25.318362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.321850"], ["updated_at", "2020-04-22 05:36:25.321850"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_918802


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.327819"], ["updated_at", "2020-04-22 05:36:25.327819"]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.331692"], ["updated_at", "2020-04-22 05:36:25.331692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_221388


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.334585"], ["updated_at", "2020-04-22 05:36:25.334585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_16567


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.337336"], ["updated_at", "2020-04-22 05:36:25.337336"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.348878"], ["updated_at", "2020-04-22 05:36:25.348878"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.353630"], ["updated_at", "2020-04-22 05:36:25.353630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.351677"], ["updated_at", "2020-04-22 05:36:25.351677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.359802"], ["updated_at", "2020-04-22 05:36:25.359802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.361070"], ["updated_at", "2020-04-22 05:36:25.361070"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_712916


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_165600


Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.375169"], ["updated_at", "2020-04-22 05:36:25.375169"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.379119"], ["updated_at", "2020-04-22 05:36:25.379119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.377954"], ["updated_at", "2020-04-22 05:36:25.377954"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.381366"], ["updated_at", "2020-04-22 05:36:25.381366"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.381445"], ["updated_at", "2020-04-22 05:36:25.381445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.384279"], ["updated_at", "2020-04-22 05:36:25.384279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_462704


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.394024"], ["updated_at", "2020-04-22 05:36:25.394024"]]
 (0.7ms)  begin transaction

CommentTest: test_885721


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.397214"], ["updated_at", "2020-04-22 05:36:25.397214"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.397072"], ["updated_at", "2020-04-22 05:36:25.397072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.399991"], ["updated_at", "2020-04-22 05:36:25.399991"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.400587"], ["updated_at", "2020-04-22 05:36:25.400587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.402916"], ["updated_at", "2020-04-22 05:36:25.402916"]]
 (2.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_121249


 (0.1ms)  begin transaction

CommentTest: test_210885


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.429971"], ["updated_at", "2020-04-22 05:36:25.429971"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.430272"], ["updated_at", "2020-04-22 05:36:25.430272"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.433206"], ["updated_at", "2020-04-22 05:36:25.433206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.433206"], ["updated_at", "2020-04-22 05:36:25.433206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.435944"], ["updated_at", "2020-04-22 05:36:25.435944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.436896"], ["updated_at", "2020-04-22 05:36:25.436896"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_670068


 (0.1ms)  begin transaction

CommentTest: test_352865


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.450537"], ["updated_at", "2020-04-22 05:36:25.450537"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.451771"], ["updated_at", "2020-04-22 05:36:25.451771"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.453940"], ["updated_at", "2020-04-22 05:36:25.453940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.456715"], ["updated_at", "2020-04-22 05:36:25.456715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.454757"], ["updated_at", "2020-04-22 05:36:25.454757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.460187"], ["updated_at", "2020-04-22 05:36:25.460187"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (8.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_861450


 (0.1ms)  begin transaction

CommentTest: test_521278

 (0.1ms)  SAVEPOINT active_record_1

Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.478201"], ["updated_at", "2020-04-22 05:36:25.478201"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.481034"], ["updated_at", "2020-04-22 05:36:25.481034"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.482422"], ["updated_at", "2020-04-22 05:36:25.482422"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.484415"], ["updated_at", "2020-04-22 05:36:25.484415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.484847"], ["updated_at", "2020-04-22 05:36:25.484847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.490135"], ["updated_at", "2020-04-22 05:36:25.490135"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_757305


 (0.1ms)  begin transaction

CommentTest: test_219878


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.502375"], ["updated_at", "2020-04-22 05:36:25.502375"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.507983"], ["updated_at", "2020-04-22 05:36:25.507983"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.508663"], ["updated_at", "2020-04-22 05:36:25.508663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.511350"], ["updated_at", "2020-04-22 05:36:25.511350"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.512040"], ["updated_at", "2020-04-22 05:36:25.512040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.517561"], ["updated_at", "2020-04-22 05:36:25.517561"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_298712


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.530697"], ["updated_at", "2020-04-22 05:36:25.530697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.536030"], ["updated_at", "2020-04-22 05:36:25.536030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.539531"], ["updated_at", "2020-04-22 05:36:25.539531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_87305


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.546709"], ["updated_at", "2020-04-22 05:36:25.546709"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.549568"], ["updated_at", "2020-04-22 05:36:25.549568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.552318"], ["updated_at", "2020-04-22 05:36:25.552318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_450841


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.559471"], ["updated_at", "2020-04-22 05:36:25.559471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.562636"], ["updated_at", "2020-04-22 05:36:25.562636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_818227


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.565929"], ["updated_at", "2020-04-22 05:36:25.565929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.567789"], ["updated_at", "2020-04-22 05:36:25.567789"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.575132"], ["updated_at", "2020-04-22 05:36:25.575132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_743902


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.577065"], ["updated_at", "2020-04-22 05:36:25.577065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.579154"], ["updated_at", "2020-04-22 05:36:25.579154"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.582483"], ["updated_at", "2020-04-22 05:36:25.582483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.585007"], ["updated_at", "2020-04-22 05:36:25.585007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_743934


 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.5ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_360178


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.593709"], ["updated_at", "2020-04-22 05:36:25.593709"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.598030"], ["updated_at", "2020-04-22 05:36:25.598030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.601270"], ["updated_at", "2020-04-22 05:36:25.601270"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.600370"], ["updated_at", "2020-04-22 05:36:25.600370"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.604036"], ["updated_at", "2020-04-22 05:36:25.604036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.613152"], ["updated_at", "2020-04-22 05:36:25.613152"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_681522

Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.617825"], ["updated_at", "2020-04-22 05:36:25.617825"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.626090"], ["updated_at", "2020-04-22 05:36:25.626090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.628513"], ["updated_at", "2020-04-22 05:36:25.628513"]]

CommentTest: test_299069


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.631572"], ["updated_at", "2020-04-22 05:36:25.631572"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.634576"], ["updated_at", "2020-04-22 05:36:25.634576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.636729"], ["updated_at", "2020-04-22 05:36:25.636729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_857441


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.643232"], ["updated_at", "2020-04-22 05:36:25.643232"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.647605"], ["updated_at", "2020-04-22 05:36:25.647605"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_508518


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.651256"], ["updated_at", "2020-04-22 05:36:25.651256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.652972"], ["updated_at", "2020-04-22 05:36:25.652972"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.660020"], ["updated_at", "2020-04-22 05:36:25.660020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_550941


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.667033"], ["updated_at", "2020-04-22 05:36:25.667033"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.666114"], ["updated_at", "2020-04-22 05:36:25.666114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.670464"], ["updated_at", "2020-04-22 05:36:25.670464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.675665"], ["updated_at", "2020-04-22 05:36:25.675665"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_702600


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.684369"], ["updated_at", "2020-04-22 05:36:25.684369"]]

CommentTest: test_727176


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.688164"], ["updated_at", "2020-04-22 05:36:25.688164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.687493"], ["updated_at", "2020-04-22 05:36:25.687493"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.692676"], ["updated_at", "2020-04-22 05:36:25.692676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.692356"], ["updated_at", "2020-04-22 05:36:25.692356"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.696130"], ["updated_at", "2020-04-22 05:36:25.696130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_268602


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_539880


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.708586"], ["updated_at", "2020-04-22 05:36:25.708586"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.711307"], ["updated_at", "2020-04-22 05:36:25.711307"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.711913"], ["updated_at", "2020-04-22 05:36:25.711913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.715143"], ["updated_at", "2020-04-22 05:36:25.715143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.716991"], ["updated_at", "2020-04-22 05:36:25.716991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.717737"], ["updated_at", "2020-04-22 05:36:25.717737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_893381


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.735528"], ["updated_at", "2020-04-22 05:36:25.735528"]]
 (0.6ms)  begin transaction

CommentTest: test_556420


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.742802"], ["updated_at", "2020-04-22 05:36:25.742802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.742184"], ["updated_at", "2020-04-22 05:36:25.742184"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.745433"], ["updated_at", "2020-04-22 05:36:25.745433"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.745117"], ["updated_at", "2020-04-22 05:36:25.745117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.747480"], ["updated_at", "2020-04-22 05:36:25.747480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (12.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_669576


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.765804"], ["updated_at", "2020-04-22 05:36:25.765804"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.768630"], ["updated_at", "2020-04-22 05:36:25.768630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.774339"], ["updated_at", "2020-04-22 05:36:25.774339"]]
 (8.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_838719


Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.783251"], ["updated_at", "2020-04-22 05:36:25.783251"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.786351"], ["updated_at", "2020-04-22 05:36:25.786351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_58877


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.792962"], ["updated_at", "2020-04-22 05:36:25.792962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.793886"], ["updated_at", "2020-04-22 05:36:25.793886"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.796908"], ["updated_at", "2020-04-22 05:36:25.796908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.799572"], ["updated_at", "2020-04-22 05:36:25.799572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_429249


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.804184"], ["updated_at", "2020-04-22 05:36:25.804184"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.808535"], ["updated_at", "2020-04-22 05:36:25.808535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.812212"], ["updated_at", "2020-04-22 05:36:25.812212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_10357


 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_292018


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.833592"], ["updated_at", "2020-04-22 05:36:25.833592"]]
 (1.0ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.836139"], ["updated_at", "2020-04-22 05:36:25.836139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.835936"], ["updated_at", "2020-04-22 05:36:25.835936"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.841573"], ["updated_at", "2020-04-22 05:36:25.841573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.842900"], ["updated_at", "2020-04-22 05:36:25.842900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.845424"], ["updated_at", "2020-04-22 05:36:25.845424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_243661


 (0.5ms)  begin transaction

CommentTest: test_243060


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.860127"], ["updated_at", "2020-04-22 05:36:25.860127"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.859476"], ["updated_at", "2020-04-22 05:36:25.859476"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.863519"], ["updated_at", "2020-04-22 05:36:25.863519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.864914"], ["updated_at", "2020-04-22 05:36:25.864914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.866045"], ["updated_at", "2020-04-22 05:36:25.866045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.868709"], ["updated_at", "2020-04-22 05:36:25.868709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_160670


 (0.1ms)  begin transaction

CommentTest: test_911128


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.879727"], ["updated_at", "2020-04-22 05:36:25.879727"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.882103"], ["updated_at", "2020-04-22 05:36:25.882103"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.885497"], ["updated_at", "2020-04-22 05:36:25.885497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.883347"], ["updated_at", "2020-04-22 05:36:25.883347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.890293"], ["updated_at", "2020-04-22 05:36:25.890293"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.890955"], ["updated_at", "2020-04-22 05:36:25.890955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_997053


 (0.1ms)  begin transaction

CommentTest: test_759638


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.902675"], ["updated_at", "2020-04-22 05:36:25.902675"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.903213"], ["updated_at", "2020-04-22 05:36:25.903213"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.911290"], ["updated_at", "2020-04-22 05:36:25.911290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.913605"], ["updated_at", "2020-04-22 05:36:25.913605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.913188"], ["updated_at", "2020-04-22 05:36:25.913188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.917009"], ["updated_at", "2020-04-22 05:36:25.917009"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_362456


 (0.1ms)  begin transaction

CommentTest: test_343176


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.931546"], ["updated_at", "2020-04-22 05:36:25.931546"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.931098"], ["updated_at", "2020-04-22 05:36:25.931098"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.934140"], ["updated_at", "2020-04-22 05:36:25.934140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.934140"], ["updated_at", "2020-04-22 05:36:25.934140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.936772"], ["updated_at", "2020-04-22 05:36:25.936772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.936772"], ["updated_at", "2020-04-22 05:36:25.936772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_629624


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.952739"], ["updated_at", "2020-04-22 05:36:25.952739"]]
 (0.1ms)  begin transaction

CommentTest: test_105522


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.958748"], ["updated_at", "2020-04-22 05:36:25.958748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.958747"], ["updated_at", "2020-04-22 05:36:25.958747"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.960871"], ["updated_at", "2020-04-22 05:36:25.960871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.962374"], ["updated_at", "2020-04-22 05:36:25.962374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.964834"], ["updated_at", "2020-04-22 05:36:25.964834"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_982305


 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.975351"], ["updated_at", "2020-04-22 05:36:25.975351"]]
 (0.1ms)  begin transaction

CommentTest: test_57637


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.979802"], ["updated_at", "2020-04-22 05:36:25.979802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.982763"], ["updated_at", "2020-04-22 05:36:25.982763"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.982193"], ["updated_at", "2020-04-22 05:36:25.982193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (5.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:25.984817"], ["updated_at", "2020-04-22 05:36:25.984817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:25.993260"], ["updated_at", "2020-04-22 05:36:25.993260"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_663235


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:25.998518"], ["updated_at", "2020-04-22 05:36:25.998518"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.001369"], ["updated_at", "2020-04-22 05:36:26.001369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.003763"], ["updated_at", "2020-04-22 05:36:26.003763"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_715306


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.008862"], ["updated_at", "2020-04-22 05:36:26.008862"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.014334"], ["updated_at", "2020-04-22 05:36:26.014334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.017026"], ["updated_at", "2020-04-22 05:36:26.017026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_591170


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.032258"], ["updated_at", "2020-04-22 05:36:26.032258"]]
 (0.3ms)  begin transaction

CommentTest: test_811073


 (1.3ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.035152"], ["updated_at", "2020-04-22 05:36:26.035152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.035460"], ["updated_at", "2020-04-22 05:36:26.035460"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.040093"], ["updated_at", "2020-04-22 05:36:26.040093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.041864"], ["updated_at", "2020-04-22 05:36:26.041864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.044359"], ["updated_at", "2020-04-22 05:36:26.044359"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_440427


 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.050120"], ["updated_at", "2020-04-22 05:36:26.050120"]]
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.053230"], ["updated_at", "2020-04-22 05:36:26.053230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_933895

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.056129"], ["updated_at", "2020-04-22 05:36:26.056129"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.058753"], ["updated_at", "2020-04-22 05:36:26.058753"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.062251"], ["updated_at", "2020-04-22 05:36:26.062251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_582928


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.064294"], ["updated_at", "2020-04-22 05:36:26.064294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.066432"], ["updated_at", "2020-04-22 05:36:26.066432"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.069133"], ["updated_at", "2020-04-22 05:36:26.069133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.072361"], ["updated_at", "2020-04-22 05:36:26.072361"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_147650


 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.086208"], ["updated_at", "2020-04-22 05:36:26.086208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.093646"], ["updated_at", "2020-04-22 05:36:26.093646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_701590


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.096627"], ["updated_at", "2020-04-22 05:36:26.096627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.097863"], ["updated_at", "2020-04-22 05:36:26.097863"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.101979"], ["updated_at", "2020-04-22 05:36:26.101979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_664667


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.109746"], ["updated_at", "2020-04-22 05:36:26.109746"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.113149"], ["updated_at", "2020-04-22 05:36:26.113149"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.115801"], ["updated_at", "2020-04-22 05:36:26.115801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.118099"], ["updated_at", "2020-04-22 05:36:26.118099"]]
 (0.1ms)  begin transaction

CommentTest: test_155565


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.121684"], ["updated_at", "2020-04-22 05:36:26.121684"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.125634"], ["updated_at", "2020-04-22 05:36:26.125634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.128128"], ["updated_at", "2020-04-22 05:36:26.128128"]]
 (0.1ms)  begin transaction

CommentTest: test_664940


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.131007"], ["updated_at", "2020-04-22 05:36:26.131007"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.133895"], ["updated_at", "2020-04-22 05:36:26.133895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.138221"], ["updated_at", "2020-04-22 05:36:26.138221"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_182541


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.145313"], ["updated_at", "2020-04-22 05:36:26.145313"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_693669


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.148387"], ["updated_at", "2020-04-22 05:36:26.148387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.150066"], ["updated_at", "2020-04-22 05:36:26.150066"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.150353"], ["updated_at", "2020-04-22 05:36:26.150353"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.153894"], ["updated_at", "2020-04-22 05:36:26.153894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.159933"], ["updated_at", "2020-04-22 05:36:26.159933"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_990417


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.167149"], ["updated_at", "2020-04-22 05:36:26.167149"]]
 (0.1ms)  begin transaction

CommentTest: test_61054


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.172003"], ["updated_at", "2020-04-22 05:36:26.172003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.175242"], ["updated_at", "2020-04-22 05:36:26.175242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.172369"], ["updated_at", "2020-04-22 05:36:26.172369"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.178402"], ["updated_at", "2020-04-22 05:36:26.178402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.180411"], ["updated_at", "2020-04-22 05:36:26.180411"]]
 (1.0ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_299895


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.185750"], ["updated_at", "2020-04-22 05:36:26.185750"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.189557"], ["updated_at", "2020-04-22 05:36:26.189557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.192716"], ["updated_at", "2020-04-22 05:36:26.192716"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_677021


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.200578"], ["updated_at", "2020-04-22 05:36:26.200578"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.210703"], ["updated_at", "2020-04-22 05:36:26.210703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_564921


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.212792"], ["updated_at", "2020-04-22 05:36:26.212792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.216553"], ["updated_at", "2020-04-22 05:36:26.216553"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.219853"], ["updated_at", "2020-04-22 05:36:26.219853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_738691


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.226222"], ["updated_at", "2020-04-22 05:36:26.226222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.228593"], ["updated_at", "2020-04-22 05:36:26.228593"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.231232"], ["updated_at", "2020-04-22 05:36:26.231232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.233877"], ["updated_at", "2020-04-22 05:36:26.233877"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_578337


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.242202"], ["updated_at", "2020-04-22 05:36:26.242202"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_783342


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.245432"], ["updated_at", "2020-04-22 05:36:26.245432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.247303"], ["updated_at", "2020-04-22 05:36:26.247303"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.247095"], ["updated_at", "2020-04-22 05:36:26.247095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.250515"], ["updated_at", "2020-04-22 05:36:26.250515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.253021"], ["updated_at", "2020-04-22 05:36:26.253021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_651830


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.260266"], ["updated_at", "2020-04-22 05:36:26.260266"]]
 (7.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.267545"], ["updated_at", "2020-04-22 05:36:26.267545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.272191"], ["updated_at", "2020-04-22 05:36:26.272191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_61484


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.279510"], ["updated_at", "2020-04-22 05:36:26.279510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.282492"], ["updated_at", "2020-04-22 05:36:26.282492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_766119


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.284416"], ["updated_at", "2020-04-22 05:36:26.284416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.285647"], ["updated_at", "2020-04-22 05:36:26.285647"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.294114"], ["updated_at", "2020-04-22 05:36:26.294114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.295949"], ["updated_at", "2020-04-22 05:36:26.295949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_959271


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.300304"], ["updated_at", "2020-04-22 05:36:26.300304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.305045"], ["updated_at", "2020-04-22 05:36:26.305045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_724310


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.309129"], ["updated_at", "2020-04-22 05:36:26.309129"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.311045"], ["updated_at", "2020-04-22 05:36:26.311045"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_776674


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.315319"], ["updated_at", "2020-04-22 05:36:26.315319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.318270"], ["updated_at", "2020-04-22 05:36:26.318270"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.320612"], ["updated_at", "2020-04-22 05:36:26.320612"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.321349"], ["updated_at", "2020-04-22 05:36:26.321349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.323662"], ["updated_at", "2020-04-22 05:36:26.323662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_232523


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.336581"], ["updated_at", "2020-04-22 05:36:26.336581"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.342890"], ["updated_at", "2020-04-22 05:36:26.342890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.345005"], ["updated_at", "2020-04-22 05:36:26.345005"]]
 (0.1ms)  begin transaction

CommentTest: test_655624


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.347859"], ["updated_at", "2020-04-22 05:36:26.347859"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.350904"], ["updated_at", "2020-04-22 05:36:26.350904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_393185


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.353206"], ["updated_at", "2020-04-22 05:36:26.353206"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.357769"], ["updated_at", "2020-04-22 05:36:26.357769"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.361714"], ["updated_at", "2020-04-22 05:36:26.361714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.364132"], ["updated_at", "2020-04-22 05:36:26.364132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_571905


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.366767"], ["updated_at", "2020-04-22 05:36:26.366767"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.369810"], ["updated_at", "2020-04-22 05:36:26.369810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788440


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.372666"], ["updated_at", "2020-04-22 05:36:26.372666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.376079"], ["updated_at", "2020-04-22 05:36:26.376079"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.379459"], ["updated_at", "2020-04-22 05:36:26.379459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.381545"], ["updated_at", "2020-04-22 05:36:26.381545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_641191


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.390200"], ["updated_at", "2020-04-22 05:36:26.390200"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.396553"], ["updated_at", "2020-04-22 05:36:26.396553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.399788"], ["updated_at", "2020-04-22 05:36:26.399788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_10332


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.412358"], ["updated_at", "2020-04-22 05:36:26.412358"]]
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.417294"], ["updated_at", "2020-04-22 05:36:26.417294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_467422


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.421186"], ["updated_at", "2020-04-22 05:36:26.421186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.423889"], ["updated_at", "2020-04-22 05:36:26.423889"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.428333"], ["updated_at", "2020-04-22 05:36:26.428333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.430446"], ["updated_at", "2020-04-22 05:36:26.430446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_945315


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.437172"], ["updated_at", "2020-04-22 05:36:26.437172"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.443782"], ["updated_at", "2020-04-22 05:36:26.443782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_351950


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.445689"], ["updated_at", "2020-04-22 05:36:26.445689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.450085"], ["updated_at", "2020-04-22 05:36:26.450085"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.455662"], ["updated_at", "2020-04-22 05:36:26.455662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_991398


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.462789"], ["updated_at", "2020-04-22 05:36:26.462789"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.470245"], ["updated_at", "2020-04-22 05:36:26.470245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.460736"], ["updated_at", "2020-04-22 05:36:26.460736"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.475420"], ["updated_at", "2020-04-22 05:36:26.475420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_305767



CommentTest: test_601869


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.489831"], ["updated_at", "2020-04-22 05:36:26.489831"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.492469"], ["updated_at", "2020-04-22 05:36:26.492469"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.493468"], ["updated_at", "2020-04-22 05:36:26.493468"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.496170"], ["updated_at", "2020-04-22 05:36:26.496170"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.496232"], ["updated_at", "2020-04-22 05:36:26.496232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.498351"], ["updated_at", "2020-04-22 05:36:26.498351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_756696


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_433204


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.509017"], ["updated_at", "2020-04-22 05:36:26.509017"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.512748"], ["updated_at", "2020-04-22 05:36:26.512748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.511678"], ["updated_at", "2020-04-22 05:36:26.511678"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.514624"], ["updated_at", "2020-04-22 05:36:26.514624"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.515565"], ["updated_at", "2020-04-22 05:36:26.515565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.517292"], ["updated_at", "2020-04-22 05:36:26.517292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_60537


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.551062"], ["updated_at", "2020-04-22 05:36:26.551062"]]
 (10.9ms)  rollback transaction
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.564675"], ["updated_at", "2020-04-22 05:36:26.564675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_505470


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.574819"], ["updated_at", "2020-04-22 05:36:26.574819"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.581410"], ["updated_at", "2020-04-22 05:36:26.581410"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.591070"], ["updated_at", "2020-04-22 05:36:26.591070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_924936


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.593523"], ["updated_at", "2020-04-22 05:36:26.593523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.595822"], ["updated_at", "2020-04-22 05:36:26.595822"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.613709"], ["updated_at", "2020-04-22 05:36:26.613709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.630072"], ["updated_at", "2020-04-22 05:36:26.630072"]]
 (0.1ms)  begin transaction

CommentTest: test_745338


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.633361"], ["updated_at", "2020-04-22 05:36:26.633361"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.636201"], ["updated_at", "2020-04-22 05:36:26.636201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.640481"], ["updated_at", "2020-04-22 05:36:26.640481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_629839


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.644374"], ["updated_at", "2020-04-22 05:36:26.644374"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.648164"], ["updated_at", "2020-04-22 05:36:26.648164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_766952


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.650811"], ["updated_at", "2020-04-22 05:36:26.650811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.652521"], ["updated_at", "2020-04-22 05:36:26.652521"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.662143"], ["updated_at", "2020-04-22 05:36:26.662143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.669094"], ["updated_at", "2020-04-22 05:36:26.669094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_5013


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.676427"], ["updated_at", "2020-04-22 05:36:26.676427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.679379"], ["updated_at", "2020-04-22 05:36:26.679379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_888781


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.682016"], ["updated_at", "2020-04-22 05:36:26.682016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.683892"], ["updated_at", "2020-04-22 05:36:26.683892"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.689713"], ["updated_at", "2020-04-22 05:36:26.689713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.692427"], ["updated_at", "2020-04-22 05:36:26.692427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_445359


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.697227"], ["updated_at", "2020-04-22 05:36:26.697227"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.700477"], ["updated_at", "2020-04-22 05:36:26.700477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_237205


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.702673"], ["updated_at", "2020-04-22 05:36:26.702673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.704133"], ["updated_at", "2020-04-22 05:36:26.704133"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.710226"], ["updated_at", "2020-04-22 05:36:26.710226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.712595"], ["updated_at", "2020-04-22 05:36:26.712595"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_64644


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.719490"], ["updated_at", "2020-04-22 05:36:26.719490"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.727254"], ["updated_at", "2020-04-22 05:36:26.727254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.731321"], ["updated_at", "2020-04-22 05:36:26.731321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_178022


 (1.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.736176"], ["updated_at", "2020-04-22 05:36:26.736176"]]
 (2.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.743354"], ["updated_at", "2020-04-22 05:36:26.743354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.745894"], ["updated_at", "2020-04-22 05:36:26.745894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_653482


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.748552"], ["updated_at", "2020-04-22 05:36:26.748552"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.752109"], ["updated_at", "2020-04-22 05:36:26.752109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.756311"], ["updated_at", "2020-04-22 05:36:26.756311"]]
 (0.2ms)  begin transaction

CommentTest: test_370350


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.760241"], ["updated_at", "2020-04-22 05:36:26.760241"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.763657"], ["updated_at", "2020-04-22 05:36:26.763657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_276336


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.766531"], ["updated_at", "2020-04-22 05:36:26.766531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.767810"], ["updated_at", "2020-04-22 05:36:26.767810"]]
Bucket Load (2.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.771671"], ["updated_at", "2020-04-22 05:36:26.771671"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.774572"], ["updated_at", "2020-04-22 05:36:26.774572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_917858


 (0.1ms)  begin transaction

CommentTest: test_644060


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.785677"], ["updated_at", "2020-04-22 05:36:26.785677"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.785306"], ["updated_at", "2020-04-22 05:36:26.785306"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.798515"], ["updated_at", "2020-04-22 05:36:26.798515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.799995"], ["updated_at", "2020-04-22 05:36:26.799995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.801162"], ["updated_at", "2020-04-22 05:36:26.801162"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.807567"], ["updated_at", "2020-04-22 05:36:26.807567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_80033

 (0.4ms)  SAVEPOINT active_record_1

Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.814896"], ["updated_at", "2020-04-22 05:36:26.814896"]]
 (0.1ms)  begin transaction

Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.818474"], ["updated_at", "2020-04-22 05:36:26.818474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_606112


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.822592"], ["updated_at", "2020-04-22 05:36:26.822592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.824641"], ["updated_at", "2020-04-22 05:36:26.824641"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.828828"], ["updated_at", "2020-04-22 05:36:26.828828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.830810"], ["updated_at", "2020-04-22 05:36:26.830810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_489064

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.834409"], ["updated_at", "2020-04-22 05:36:26.834409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_930914


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.838384"], ["updated_at", "2020-04-22 05:36:26.838384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.841968"], ["updated_at", "2020-04-22 05:36:26.841968"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.844897"], ["updated_at", "2020-04-22 05:36:26.844897"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.844873"], ["updated_at", "2020-04-22 05:36:26.844873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.850891"], ["updated_at", "2020-04-22 05:36:26.850891"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_478290


 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.868503"], ["updated_at", "2020-04-22 05:36:26.868503"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.873952"], ["updated_at", "2020-04-22 05:36:26.873952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_912402


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.877207"], ["updated_at", "2020-04-22 05:36:26.877207"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.877218"], ["updated_at", "2020-04-22 05:36:26.877218"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.880947"], ["updated_at", "2020-04-22 05:36:26.880947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.883087"], ["updated_at", "2020-04-22 05:36:26.883087"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_175612


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.889491"], ["updated_at", "2020-04-22 05:36:26.889491"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.892501"], ["updated_at", "2020-04-22 05:36:26.892501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.895043"], ["updated_at", "2020-04-22 05:36:26.895043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_56087


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.897660"], ["updated_at", "2020-04-22 05:36:26.897660"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.901214"], ["updated_at", "2020-04-22 05:36:26.901214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_187647


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.904155"], ["updated_at", "2020-04-22 05:36:26.904155"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.908786"], ["updated_at", "2020-04-22 05:36:26.908786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.912584"], ["updated_at", "2020-04-22 05:36:26.912584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.914789"], ["updated_at", "2020-04-22 05:36:26.914789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_904919


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_871993


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.925626"], ["updated_at", "2020-04-22 05:36:26.925626"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.928728"], ["updated_at", "2020-04-22 05:36:26.928728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.927371"], ["updated_at", "2020-04-22 05:36:26.927371"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.931384"], ["updated_at", "2020-04-22 05:36:26.931384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.933257"], ["updated_at", "2020-04-22 05:36:26.933257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.943194"], ["updated_at", "2020-04-22 05:36:26.943194"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_25445


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_973219


 (3.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.951496"], ["updated_at", "2020-04-22 05:36:26.951496"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.957958"], ["updated_at", "2020-04-22 05:36:26.957958"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.961591"], ["updated_at", "2020-04-22 05:36:26.961591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.962127"], ["updated_at", "2020-04-22 05:36:26.962127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.966097"], ["updated_at", "2020-04-22 05:36:26.966097"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.966689"], ["updated_at", "2020-04-22 05:36:26.966689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_645843


 (0.1ms)  begin transaction

CommentTest: test_966749


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.978487"], ["updated_at", "2020-04-22 05:36:26.978487"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:26.979217"], ["updated_at", "2020-04-22 05:36:26.979217"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.981784"], ["updated_at", "2020-04-22 05:36:26.981784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:26.983280"], ["updated_at", "2020-04-22 05:36:26.983280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.984400"], ["updated_at", "2020-04-22 05:36:26.984400"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:26.985834"], ["updated_at", "2020-04-22 05:36:26.985834"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_939025


 (0.1ms)  begin transaction

CommentTest: test_301958


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.000665"], ["updated_at", "2020-04-22 05:36:27.000665"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.000904"], ["updated_at", "2020-04-22 05:36:27.000904"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.003752"], ["updated_at", "2020-04-22 05:36:27.003752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.003662"], ["updated_at", "2020-04-22 05:36:27.003662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.007516"], ["updated_at", "2020-04-22 05:36:27.007516"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.007909"], ["updated_at", "2020-04-22 05:36:27.007909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_539540


 (0.1ms)  begin transaction

CommentTest: test_29418


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.020524"], ["updated_at", "2020-04-22 05:36:27.020524"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.022129"], ["updated_at", "2020-04-22 05:36:27.022129"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.025726"], ["updated_at", "2020-04-22 05:36:27.025726"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.025204"], ["updated_at", "2020-04-22 05:36:27.025204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.028359"], ["updated_at", "2020-04-22 05:36:27.028359"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.028766"], ["updated_at", "2020-04-22 05:36:27.028766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_392097


 (0.1ms)  begin transaction

CommentTest: test_940281


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.039290"], ["updated_at", "2020-04-22 05:36:27.039290"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.040983"], ["updated_at", "2020-04-22 05:36:27.040983"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.044391"], ["updated_at", "2020-04-22 05:36:27.044391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.044151"], ["updated_at", "2020-04-22 05:36:27.044151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.046467"], ["updated_at", "2020-04-22 05:36:27.046467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.047583"], ["updated_at", "2020-04-22 05:36:27.047583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_845734


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.059859"], ["updated_at", "2020-04-22 05:36:27.059859"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.063851"], ["updated_at", "2020-04-22 05:36:27.063851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.066343"], ["updated_at", "2020-04-22 05:36:27.066343"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_325562



CommentTest: test_547053


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.081857"], ["updated_at", "2020-04-22 05:36:27.081857"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.081936"], ["updated_at", "2020-04-22 05:36:27.081936"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.085316"], ["updated_at", "2020-04-22 05:36:27.085316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.085681"], ["updated_at", "2020-04-22 05:36:27.085681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.090136"], ["updated_at", "2020-04-22 05:36:27.090136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.092454"], ["updated_at", "2020-04-22 05:36:27.092454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_412388


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.101820"], ["updated_at", "2020-04-22 05:36:27.101820"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.105788"], ["updated_at", "2020-04-22 05:36:27.105788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_145106


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.109557"], ["updated_at", "2020-04-22 05:36:27.109557"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.110973"], ["updated_at", "2020-04-22 05:36:27.110973"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.114023"], ["updated_at", "2020-04-22 05:36:27.114023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_102201


Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.116667"], ["updated_at", "2020-04-22 05:36:27.116667"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.124660"], ["updated_at", "2020-04-22 05:36:27.124660"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.129139"], ["updated_at", "2020-04-22 05:36:27.129139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.131852"], ["updated_at", "2020-04-22 05:36:27.131852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_156487


 (0.3ms)  begin transaction

CommentTest: test_714375


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.144829"], ["updated_at", "2020-04-22 05:36:27.144829"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.143613"], ["updated_at", "2020-04-22 05:36:27.143613"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.147721"], ["updated_at", "2020-04-22 05:36:27.147721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.147783"], ["updated_at", "2020-04-22 05:36:27.147783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.150187"], ["updated_at", "2020-04-22 05:36:27.150187"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.150499"], ["updated_at", "2020-04-22 05:36:27.150499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_431426


Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.167112"], ["updated_at", "2020-04-22 05:36:27.167112"]]
 (0.1ms)  begin transaction

CommentTest: test_742502


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.170925"], ["updated_at", "2020-04-22 05:36:27.170925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.172569"], ["updated_at", "2020-04-22 05:36:27.172569"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.173661"], ["updated_at", "2020-04-22 05:36:27.173661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.176160"], ["updated_at", "2020-04-22 05:36:27.176160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.178662"], ["updated_at", "2020-04-22 05:36:27.178662"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_653761


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.184944"], ["updated_at", "2020-04-22 05:36:27.184944"]]
 (5.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.189958"], ["updated_at", "2020-04-22 05:36:27.189958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.193259"], ["updated_at", "2020-04-22 05:36:27.193259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_278447


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.198053"], ["updated_at", "2020-04-22 05:36:27.198053"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.201314"], ["updated_at", "2020-04-22 05:36:27.201314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_198822


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.209830"], ["updated_at", "2020-04-22 05:36:27.209830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.211023"], ["updated_at", "2020-04-22 05:36:27.211023"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.213788"], ["updated_at", "2020-04-22 05:36:27.213788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.215669"], ["updated_at", "2020-04-22 05:36:27.215669"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.5ms)  rollback transaction

CommentTest: test_113305


 (0.5ms)  begin transaction

CommentTest: test_740227


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.226302"], ["updated_at", "2020-04-22 05:36:27.226302"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.227751"], ["updated_at", "2020-04-22 05:36:27.227751"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.229949"], ["updated_at", "2020-04-22 05:36:27.229949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.230842"], ["updated_at", "2020-04-22 05:36:27.230842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.232036"], ["updated_at", "2020-04-22 05:36:27.232036"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.232912"], ["updated_at", "2020-04-22 05:36:27.232912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_818201


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.244699"], ["updated_at", "2020-04-22 05:36:27.244699"]]
 (0.1ms)  begin transaction

CommentTest: test_470176


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.247311"], ["updated_at", "2020-04-22 05:36:27.247311"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.247965"], ["updated_at", "2020-04-22 05:36:27.247965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.250307"], ["updated_at", "2020-04-22 05:36:27.250307"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.249638"], ["updated_at", "2020-04-22 05:36:27.249638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.253244"], ["updated_at", "2020-04-22 05:36:27.253244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_478837


 (0.1ms)  begin transaction

CommentTest: test_30723


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.275094"], ["updated_at", "2020-04-22 05:36:27.275094"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.274203"], ["updated_at", "2020-04-22 05:36:27.274203"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.279595"], ["updated_at", "2020-04-22 05:36:27.279595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.279758"], ["updated_at", "2020-04-22 05:36:27.279758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.282450"], ["updated_at", "2020-04-22 05:36:27.282450"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.282111"], ["updated_at", "2020-04-22 05:36:27.282111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_862833


 (0.1ms)  begin transaction

CommentTest: test_868274


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.295519"], ["updated_at", "2020-04-22 05:36:27.295519"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.296210"], ["updated_at", "2020-04-22 05:36:27.296210"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.298461"], ["updated_at", "2020-04-22 05:36:27.298461"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.299236"], ["updated_at", "2020-04-22 05:36:27.299236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.300581"], ["updated_at", "2020-04-22 05:36:27.300581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.301447"], ["updated_at", "2020-04-22 05:36:27.301447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_301757


 (0.1ms)  begin transaction

CommentTest: test_329471


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.314076"], ["updated_at", "2020-04-22 05:36:27.314076"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.315438"], ["updated_at", "2020-04-22 05:36:27.315438"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.318196"], ["updated_at", "2020-04-22 05:36:27.318196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.321484"], ["updated_at", "2020-04-22 05:36:27.321484"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.318651"], ["updated_at", "2020-04-22 05:36:27.318651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.324168"], ["updated_at", "2020-04-22 05:36:27.324168"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_138744


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.335406"], ["updated_at", "2020-04-22 05:36:27.335406"]]

CommentTest: test_392494


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.342341"], ["updated_at", "2020-04-22 05:36:27.342341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.342377"], ["updated_at", "2020-04-22 05:36:27.342377"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.345584"], ["updated_at", "2020-04-22 05:36:27.345584"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.345657"], ["updated_at", "2020-04-22 05:36:27.345657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.348304"], ["updated_at", "2020-04-22 05:36:27.348304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_413718


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.360825"], ["updated_at", "2020-04-22 05:36:27.360825"]]
 (0.1ms)  begin transaction

CommentTest: test_277027


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.364464"], ["updated_at", "2020-04-22 05:36:27.364464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.367212"], ["updated_at", "2020-04-22 05:36:27.367212"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.365459"], ["updated_at", "2020-04-22 05:36:27.365459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.369419"], ["updated_at", "2020-04-22 05:36:27.369419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.372460"], ["updated_at", "2020-04-22 05:36:27.372460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_301664


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.381206"], ["updated_at", "2020-04-22 05:36:27.381206"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_812982


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.384004"], ["updated_at", "2020-04-22 05:36:27.384004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.386494"], ["updated_at", "2020-04-22 05:36:27.386494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.385928"], ["updated_at", "2020-04-22 05:36:27.385928"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.393019"], ["updated_at", "2020-04-22 05:36:27.393019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.395777"], ["updated_at", "2020-04-22 05:36:27.395777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_506304


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.412107"], ["updated_at", "2020-04-22 05:36:27.412107"]]
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.414922"], ["updated_at", "2020-04-22 05:36:27.414922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.416971"], ["updated_at", "2020-04-22 05:36:27.416971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_16881


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_391626


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.430003"], ["updated_at", "2020-04-22 05:36:27.430003"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.432125"], ["updated_at", "2020-04-22 05:36:27.432125"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.432776"], ["updated_at", "2020-04-22 05:36:27.432776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.435305"], ["updated_at", "2020-04-22 05:36:27.435305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.435265"], ["updated_at", "2020-04-22 05:36:27.435265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.439118"], ["updated_at", "2020-04-22 05:36:27.439118"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_853259


 (0.1ms)  begin transaction

CommentTest: test_979461


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.451253"], ["updated_at", "2020-04-22 05:36:27.451253"]]
 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.452450"], ["updated_at", "2020-04-22 05:36:27.452450"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.454628"], ["updated_at", "2020-04-22 05:36:27.454628"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.455701"], ["updated_at", "2020-04-22 05:36:27.455701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.461090"], ["updated_at", "2020-04-22 05:36:27.461090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.457030"], ["updated_at", "2020-04-22 05:36:27.457030"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_891575


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.476156"], ["updated_at", "2020-04-22 05:36:27.476156"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.478048"], ["updated_at", "2020-04-22 05:36:27.478048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.480327"], ["updated_at", "2020-04-22 05:36:27.480327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_303870


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.490996"], ["updated_at", "2020-04-22 05:36:27.490996"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.494288"], ["updated_at", "2020-04-22 05:36:27.494288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.497060"], ["updated_at", "2020-04-22 05:36:27.497060"]]
 (0.1ms)  begin transaction

CommentTest: test_459029


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.499889"], ["updated_at", "2020-04-22 05:36:27.499889"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_846838


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.509833"], ["updated_at", "2020-04-22 05:36:27.509833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.510897"], ["updated_at", "2020-04-22 05:36:27.510897"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.519247"], ["updated_at", "2020-04-22 05:36:27.519247"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.522357"], ["updated_at", "2020-04-22 05:36:27.522357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.525081"], ["updated_at", "2020-04-22 05:36:27.525081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_368494


 (0.1ms)  SAVEPOINT active_record_1
 (1.6ms)  begin transaction

CommentTest: test_936520


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.541806"], ["updated_at", "2020-04-22 05:36:27.541806"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.544212"], ["updated_at", "2020-04-22 05:36:27.544212"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.545203"], ["updated_at", "2020-04-22 05:36:27.545203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.548006"], ["updated_at", "2020-04-22 05:36:27.548006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.548132"], ["updated_at", "2020-04-22 05:36:27.548132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.550725"], ["updated_at", "2020-04-22 05:36:27.550725"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_221994


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.560327"], ["updated_at", "2020-04-22 05:36:27.560327"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.563407"], ["updated_at", "2020-04-22 05:36:27.563407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.565738"], ["updated_at", "2020-04-22 05:36:27.565738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_468968


 (2.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_230210


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.576220"], ["updated_at", "2020-04-22 05:36:27.576220"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.578067"], ["updated_at", "2020-04-22 05:36:27.578067"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.580162"], ["updated_at", "2020-04-22 05:36:27.580162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.581454"], ["updated_at", "2020-04-22 05:36:27.581454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.582458"], ["updated_at", "2020-04-22 05:36:27.582458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.583309"], ["updated_at", "2020-04-22 05:36:27.583309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (5.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_959167


 (0.1ms)  begin transaction

CommentTest: test_432745


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.595081"], ["updated_at", "2020-04-22 05:36:27.595081"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.599174"], ["updated_at", "2020-04-22 05:36:27.599174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.597650"], ["updated_at", "2020-04-22 05:36:27.597650"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.602372"], ["updated_at", "2020-04-22 05:36:27.602372"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.603814"], ["updated_at", "2020-04-22 05:36:27.603814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.608260"], ["updated_at", "2020-04-22 05:36:27.608260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_366665


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.615998"], ["updated_at", "2020-04-22 05:36:27.615998"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.619134"], ["updated_at", "2020-04-22 05:36:27.619134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.622918"], ["updated_at", "2020-04-22 05:36:27.622918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_255884


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.627113"], ["updated_at", "2020-04-22 05:36:27.627113"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.630512"], ["updated_at", "2020-04-22 05:36:27.630512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.632458"], ["updated_at", "2020-04-22 05:36:27.632458"]]
 (0.1ms)  begin transaction

CommentTest: test_965954


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.635691"], ["updated_at", "2020-04-22 05:36:27.635691"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.639401"], ["updated_at", "2020-04-22 05:36:27.639401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.641594"], ["updated_at", "2020-04-22 05:36:27.641594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_540906


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.644613"], ["updated_at", "2020-04-22 05:36:27.644613"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.648105"], ["updated_at", "2020-04-22 05:36:27.648105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_361843


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.651125"], ["updated_at", "2020-04-22 05:36:27.651125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.652937"], ["updated_at", "2020-04-22 05:36:27.652937"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.661926"], ["updated_at", "2020-04-22 05:36:27.661926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.664248"], ["updated_at", "2020-04-22 05:36:27.664248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_97852


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.673613"], ["updated_at", "2020-04-22 05:36:27.673613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.678289"], ["updated_at", "2020-04-22 05:36:27.678289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_540460


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.682198"], ["updated_at", "2020-04-22 05:36:27.682198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.683533"], ["updated_at", "2020-04-22 05:36:27.683533"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.686393"], ["updated_at", "2020-04-22 05:36:27.686393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.690556"], ["updated_at", "2020-04-22 05:36:27.690556"]]
 (2.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_554972


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.696357"], ["updated_at", "2020-04-22 05:36:27.696357"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.699097"], ["updated_at", "2020-04-22 05:36:27.699097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_940324


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.701285"], ["updated_at", "2020-04-22 05:36:27.701285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.702731"], ["updated_at", "2020-04-22 05:36:27.702731"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.706518"], ["updated_at", "2020-04-22 05:36:27.706518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.709317"], ["updated_at", "2020-04-22 05:36:27.709317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_221575


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.718134"], ["updated_at", "2020-04-22 05:36:27.718134"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.725481"], ["updated_at", "2020-04-22 05:36:27.725481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_413328


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.729808"], ["updated_at", "2020-04-22 05:36:27.729808"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.736278"], ["updated_at", "2020-04-22 05:36:27.736278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.736571"], ["updated_at", "2020-04-22 05:36:27.736571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.740967"], ["updated_at", "2020-04-22 05:36:27.740967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_911217


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.751514"], ["updated_at", "2020-04-22 05:36:27.751514"]]

CommentTest: test_895472


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.756387"], ["updated_at", "2020-04-22 05:36:27.756387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.756376"], ["updated_at", "2020-04-22 05:36:27.756376"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.759407"], ["updated_at", "2020-04-22 05:36:27.759407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.759368"], ["updated_at", "2020-04-22 05:36:27.759368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.762056"], ["updated_at", "2020-04-22 05:36:27.762056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_651386


 (0.1ms)  begin transaction

CommentTest: test_592944


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.772807"], ["updated_at", "2020-04-22 05:36:27.772807"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.773684"], ["updated_at", "2020-04-22 05:36:27.773684"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.777077"], ["updated_at", "2020-04-22 05:36:27.777077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.778550"], ["updated_at", "2020-04-22 05:36:27.778550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.779207"], ["updated_at", "2020-04-22 05:36:27.779207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.782639"], ["updated_at", "2020-04-22 05:36:27.782639"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_590302


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.795580"], ["updated_at", "2020-04-22 05:36:27.795580"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.800407"], ["updated_at", "2020-04-22 05:36:27.800407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.802964"], ["updated_at", "2020-04-22 05:36:27.802964"]]
 (0.1ms)  begin transaction

CommentTest: test_967824


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.813666"], ["updated_at", "2020-04-22 05:36:27.813666"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.816651"], ["updated_at", "2020-04-22 05:36:27.816651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.819356"], ["updated_at", "2020-04-22 05:36:27.819356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_863126


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.828670"], ["updated_at", "2020-04-22 05:36:27.828670"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.831771"], ["updated_at", "2020-04-22 05:36:27.831771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_548191


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.833788"], ["updated_at", "2020-04-22 05:36:27.833788"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.834056"], ["updated_at", "2020-04-22 05:36:27.834056"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.837779"], ["updated_at", "2020-04-22 05:36:27.837779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.840231"], ["updated_at", "2020-04-22 05:36:27.840231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_710359


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.849304"], ["updated_at", "2020-04-22 05:36:27.849304"]]
 (11.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_310751


Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.857432"], ["updated_at", "2020-04-22 05:36:27.857432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.865462"], ["updated_at", "2020-04-22 05:36:27.865462"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.866690"], ["updated_at", "2020-04-22 05:36:27.866690"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.868505"], ["updated_at", "2020-04-22 05:36:27.868505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.873480"], ["updated_at", "2020-04-22 05:36:27.873480"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_153946


 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.883876"], ["updated_at", "2020-04-22 05:36:27.883876"]]

CommentTest: test_981588


 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.887371"], ["updated_at", "2020-04-22 05:36:27.887371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.886303"], ["updated_at", "2020-04-22 05:36:27.886303"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.891946"], ["updated_at", "2020-04-22 05:36:27.891946"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.892668"], ["updated_at", "2020-04-22 05:36:27.892668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.894608"], ["updated_at", "2020-04-22 05:36:27.894608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_56189


 (0.1ms)  begin transaction

CommentTest: test_640417


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.906855"], ["updated_at", "2020-04-22 05:36:27.906855"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.911402"], ["updated_at", "2020-04-22 05:36:27.911402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.914884"], ["updated_at", "2020-04-22 05:36:27.914884"]]
 (5.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.912755"], ["updated_at", "2020-04-22 05:36:27.912755"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.932441"], ["updated_at", "2020-04-22 05:36:27.932441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_656273


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.936029"], ["updated_at", "2020-04-22 05:36:27.936029"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.937295"], ["updated_at", "2020-04-22 05:36:27.937295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.942190"], ["updated_at", "2020-04-22 05:36:27.942190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.946390"], ["updated_at", "2020-04-22 05:36:27.946390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_19750


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_864757


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.958322"], ["updated_at", "2020-04-22 05:36:27.958322"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.962327"], ["updated_at", "2020-04-22 05:36:27.962327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.962039"], ["updated_at", "2020-04-22 05:36:27.962039"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.964738"], ["updated_at", "2020-04-22 05:36:27.964738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.967181"], ["updated_at", "2020-04-22 05:36:27.967181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.970583"], ["updated_at", "2020-04-22 05:36:27.970583"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_347636


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_715446


Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.981917"], ["updated_at", "2020-04-22 05:36:27.981917"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:27.987932"], ["updated_at", "2020-04-22 05:36:27.987932"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.992201"], ["updated_at", "2020-04-22 05:36:27.992201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:27.993217"], ["updated_at", "2020-04-22 05:36:27.993217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.994561"], ["updated_at", "2020-04-22 05:36:27.994561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:27.996416"], ["updated_at", "2020-04-22 05:36:27.996416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_696610


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.005876"], ["updated_at", "2020-04-22 05:36:28.005876"]]
 (0.1ms)  begin transaction

CommentTest: test_117877


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.009787"], ["updated_at", "2020-04-22 05:36:28.009787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.012086"], ["updated_at", "2020-04-22 05:36:28.012086"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.011193"], ["updated_at", "2020-04-22 05:36:28.011193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.014892"], ["updated_at", "2020-04-22 05:36:28.014892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.017587"], ["updated_at", "2020-04-22 05:36:28.017587"]]
 (1.3ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_990517


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.025771"], ["updated_at", "2020-04-22 05:36:28.025771"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.029055"], ["updated_at", "2020-04-22 05:36:28.029055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_260766

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.030898"], ["updated_at", "2020-04-22 05:36:28.030898"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.032695"], ["updated_at", "2020-04-22 05:36:28.032695"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.035327"], ["updated_at", "2020-04-22 05:36:28.035327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.039079"], ["updated_at", "2020-04-22 05:36:28.039079"]]

CommentTest: test_957980


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.042088"], ["updated_at", "2020-04-22 05:36:28.042088"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.047106"], ["updated_at", "2020-04-22 05:36:28.047106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.050076"], ["updated_at", "2020-04-22 05:36:28.050076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_52518



CommentTest: test_254537


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.062585"], ["updated_at", "2020-04-22 05:36:28.062585"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.062432"], ["updated_at", "2020-04-22 05:36:28.062432"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.065239"], ["updated_at", "2020-04-22 05:36:28.065239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.065667"], ["updated_at", "2020-04-22 05:36:28.065667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.067490"], ["updated_at", "2020-04-22 05:36:28.067490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.068541"], ["updated_at", "2020-04-22 05:36:28.068541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_476826


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.081890"], ["updated_at", "2020-04-22 05:36:28.081890"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.085176"], ["updated_at", "2020-04-22 05:36:28.085176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_291794


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.090403"], ["updated_at", "2020-04-22 05:36:28.090403"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.090796"], ["updated_at", "2020-04-22 05:36:28.090796"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.095984"], ["updated_at", "2020-04-22 05:36:28.095984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.098711"], ["updated_at", "2020-04-22 05:36:28.098711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_555131


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.101499"], ["updated_at", "2020-04-22 05:36:28.101499"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.105945"], ["updated_at", "2020-04-22 05:36:28.105945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.109144"], ["updated_at", "2020-04-22 05:36:28.109144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (3.8ms)  begin transaction

CommentTest: test_75210


 (0.2ms)  begin transaction

CommentTest: test_509341


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.126209"], ["updated_at", "2020-04-22 05:36:28.126209"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.127444"], ["updated_at", "2020-04-22 05:36:28.127444"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.129267"], ["updated_at", "2020-04-22 05:36:28.129267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.130505"], ["updated_at", "2020-04-22 05:36:28.130505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.131879"], ["updated_at", "2020-04-22 05:36:28.131879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.132933"], ["updated_at", "2020-04-22 05:36:28.132933"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_605345



CommentTest: test_576512


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.145674"], ["updated_at", "2020-04-22 05:36:28.145674"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.146185"], ["updated_at", "2020-04-22 05:36:28.146185"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.148867"], ["updated_at", "2020-04-22 05:36:28.148867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.148874"], ["updated_at", "2020-04-22 05:36:28.148874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.151137"], ["updated_at", "2020-04-22 05:36:28.151137"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.151322"], ["updated_at", "2020-04-22 05:36:28.151322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_131658


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.162103"], ["updated_at", "2020-04-22 05:36:28.162103"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.164825"], ["updated_at", "2020-04-22 05:36:28.164825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.166341"], ["updated_at", "2020-04-22 05:36:28.166341"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_561204


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.169018"], ["updated_at", "2020-04-22 05:36:28.169018"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.173428"], ["updated_at", "2020-04-22 05:36:28.173428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_370853


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.180394"], ["updated_at", "2020-04-22 05:36:28.180394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.180674"], ["updated_at", "2020-04-22 05:36:28.180674"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.183676"], ["updated_at", "2020-04-22 05:36:28.183676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.186063"], ["updated_at", "2020-04-22 05:36:28.186063"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_898846


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.194537"], ["updated_at", "2020-04-22 05:36:28.194537"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_615352


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.197833"], ["updated_at", "2020-04-22 05:36:28.197833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.200035"], ["updated_at", "2020-04-22 05:36:28.200035"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.199641"], ["updated_at", "2020-04-22 05:36:28.199641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.202337"], ["updated_at", "2020-04-22 05:36:28.202337"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.206354"], ["updated_at", "2020-04-22 05:36:28.206354"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_162191


 (3.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.217548"], ["updated_at", "2020-04-22 05:36:28.217548"]]
 (0.1ms)  begin transaction

CommentTest: test_956870


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.221431"], ["updated_at", "2020-04-22 05:36:28.221431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.221447"], ["updated_at", "2020-04-22 05:36:28.221447"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.224620"], ["updated_at", "2020-04-22 05:36:28.224620"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.224687"], ["updated_at", "2020-04-22 05:36:28.224687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.226794"], ["updated_at", "2020-04-22 05:36:28.226794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415065


 (0.1ms)  begin transaction

CommentTest: test_68896


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.235840"], ["updated_at", "2020-04-22 05:36:28.235840"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.237144"], ["updated_at", "2020-04-22 05:36:28.237144"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.240290"], ["updated_at", "2020-04-22 05:36:28.240290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.243952"], ["updated_at", "2020-04-22 05:36:28.243952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.239114"], ["updated_at", "2020-04-22 05:36:28.239114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.250481"], ["updated_at", "2020-04-22 05:36:28.250481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_959013


 (0.1ms)  begin transaction

CommentTest: test_554662


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.262848"], ["updated_at", "2020-04-22 05:36:28.262848"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.260366"], ["updated_at", "2020-04-22 05:36:28.260366"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.265492"], ["updated_at", "2020-04-22 05:36:28.265492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.266225"], ["updated_at", "2020-04-22 05:36:28.266225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.267721"], ["updated_at", "2020-04-22 05:36:28.267721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.268638"], ["updated_at", "2020-04-22 05:36:28.268638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_939982 CommentTest: test_448752



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.281996"], ["updated_at", "2020-04-22 05:36:28.281996"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.281996"], ["updated_at", "2020-04-22 05:36:28.281996"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.285074"], ["updated_at", "2020-04-22 05:36:28.285074"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.285717"], ["updated_at", "2020-04-22 05:36:28.285717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.287248"], ["updated_at", "2020-04-22 05:36:28.287248"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.287594"], ["updated_at", "2020-04-22 05:36:28.287594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_359242


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.297531"], ["updated_at", "2020-04-22 05:36:28.297531"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.299893"], ["updated_at", "2020-04-22 05:36:28.299893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.301307"], ["updated_at", "2020-04-22 05:36:28.301307"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_990048


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.306438"], ["updated_at", "2020-04-22 05:36:28.306438"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.311348"], ["updated_at", "2020-04-22 05:36:28.311348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.315303"], ["updated_at", "2020-04-22 05:36:28.315303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_481145


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.322598"], ["updated_at", "2020-04-22 05:36:28.322598"]]
 (0.1ms)  begin transaction

CommentTest: test_461873


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.328454"], ["updated_at", "2020-04-22 05:36:28.328454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.329081"], ["updated_at", "2020-04-22 05:36:28.329081"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.330503"], ["updated_at", "2020-04-22 05:36:28.330503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.331833"], ["updated_at", "2020-04-22 05:36:28.331833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.333657"], ["updated_at", "2020-04-22 05:36:28.333657"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_527098


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.345565"], ["updated_at", "2020-04-22 05:36:28.345565"]]

CommentTest: test_711616


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.348177"], ["updated_at", "2020-04-22 05:36:28.348177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.348077"], ["updated_at", "2020-04-22 05:36:28.348077"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.350401"], ["updated_at", "2020-04-22 05:36:28.350401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.350196"], ["updated_at", "2020-04-22 05:36:28.350196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.352280"], ["updated_at", "2020-04-22 05:36:28.352280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_39118


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.362497"], ["updated_at", "2020-04-22 05:36:28.362497"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.365354"], ["updated_at", "2020-04-22 05:36:28.365354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.367719"], ["updated_at", "2020-04-22 05:36:28.367719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_968180


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.372112"], ["updated_at", "2020-04-22 05:36:28.372112"]]
 (0.1ms)  begin transaction

CommentTest: test_859588


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.379991"], ["updated_at", "2020-04-22 05:36:28.379991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.379697"], ["updated_at", "2020-04-22 05:36:28.379697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.382980"], ["updated_at", "2020-04-22 05:36:28.382980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.386572"], ["updated_at", "2020-04-22 05:36:28.386572"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.382707"], ["updated_at", "2020-04-22 05:36:28.382707"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_313708


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.398658"], ["updated_at", "2020-04-22 05:36:28.398658"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.401737"], ["updated_at", "2020-04-22 05:36:28.401737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.407744"], ["updated_at", "2020-04-22 05:36:28.407744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_801244


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.413326"], ["updated_at", "2020-04-22 05:36:28.413326"]]
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.417821"], ["updated_at", "2020-04-22 05:36:28.417821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_484516


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.421659"], ["updated_at", "2020-04-22 05:36:28.421659"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.422093"], ["updated_at", "2020-04-22 05:36:28.422093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.424946"], ["updated_at", "2020-04-22 05:36:28.424946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.428217"], ["updated_at", "2020-04-22 05:36:28.428217"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_88739


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.433820"], ["updated_at", "2020-04-22 05:36:28.433820"]]
 (0.1ms)  begin transaction

CommentTest: test_47509


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.438435"], ["updated_at", "2020-04-22 05:36:28.438435"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.440237"], ["updated_at", "2020-04-22 05:36:28.440237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.442487"], ["updated_at", "2020-04-22 05:36:28.442487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.444449"], ["updated_at", "2020-04-22 05:36:28.444449"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.444068"], ["updated_at", "2020-04-22 05:36:28.444068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618602


 (0.1ms)  begin transaction

CommentTest: test_168463


 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.456785"], ["updated_at", "2020-04-22 05:36:28.456785"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.457309"], ["updated_at", "2020-04-22 05:36:28.457309"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.462556"], ["updated_at", "2020-04-22 05:36:28.462556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.462885"], ["updated_at", "2020-04-22 05:36:28.462885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.464927"], ["updated_at", "2020-04-22 05:36:28.464927"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.465295"], ["updated_at", "2020-04-22 05:36:28.465295"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  rollback transaction
 (2.9ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_678522


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.480185"], ["updated_at", "2020-04-22 05:36:28.480185"]]
 (0.1ms)  begin transaction

CommentTest: test_690155


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.482743"], ["updated_at", "2020-04-22 05:36:28.482743"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.482748"], ["updated_at", "2020-04-22 05:36:28.482748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.485697"], ["updated_at", "2020-04-22 05:36:28.485697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.485529"], ["updated_at", "2020-04-22 05:36:28.485529"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.490943"], ["updated_at", "2020-04-22 05:36:28.490943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_129679


 (3.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_712556


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.500475"], ["updated_at", "2020-04-22 05:36:28.500475"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.506445"], ["updated_at", "2020-04-22 05:36:28.506445"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.511280"], ["updated_at", "2020-04-22 05:36:28.511280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.516094"], ["updated_at", "2020-04-22 05:36:28.516094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_587212


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.506957"], ["updated_at", "2020-04-22 05:36:28.506957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.529324"], ["updated_at", "2020-04-22 05:36:28.529324"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.532497"], ["updated_at", "2020-04-22 05:36:28.532497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.535455"], ["updated_at", "2020-04-22 05:36:28.535455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.532134"], ["updated_at", "2020-04-22 05:36:28.532134"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_92929


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.547753"], ["updated_at", "2020-04-22 05:36:28.547753"]]
 (0.1ms)  begin transaction

CommentTest: test_352715


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.550136"], ["updated_at", "2020-04-22 05:36:28.550136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.552159"], ["updated_at", "2020-04-22 05:36:28.552159"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.552362"], ["updated_at", "2020-04-22 05:36:28.552362"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.558417"], ["updated_at", "2020-04-22 05:36:28.558417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.560214"], ["updated_at", "2020-04-22 05:36:28.560214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_55777


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.563650"], ["updated_at", "2020-04-22 05:36:28.563650"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.568904"], ["updated_at", "2020-04-22 05:36:28.568904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_70899


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.571737"], ["updated_at", "2020-04-22 05:36:28.571737"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.572515"], ["updated_at", "2020-04-22 05:36:28.572515"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.576279"], ["updated_at", "2020-04-22 05:36:28.576279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.581292"], ["updated_at", "2020-04-22 05:36:28.581292"]]
 (0.1ms)  begin transaction

CommentTest: test_713389


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.583771"], ["updated_at", "2020-04-22 05:36:28.583771"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.586282"], ["updated_at", "2020-04-22 05:36:28.586282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.588579"], ["updated_at", "2020-04-22 05:36:28.588579"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_717301


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.594857"], ["updated_at", "2020-04-22 05:36:28.594857"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.598269"], ["updated_at", "2020-04-22 05:36:28.598269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.600738"], ["updated_at", "2020-04-22 05:36:28.600738"]]
 (0.1ms)  begin transaction

CommentTest: test_628826


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (8.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (22.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.603021"], ["updated_at", "2020-04-22 05:36:28.603021"]]
 (13.8ms)  rollback transaction
Bucket Create (17.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.772626"], ["updated_at", "2020-04-22 05:36:28.772626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_719409


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.812853"], ["updated_at", "2020-04-22 05:36:28.812853"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.818073"], ["updated_at", "2020-04-22 05:36:28.818073"]]
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.834841"], ["updated_at", "2020-04-22 05:36:28.834841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.842053"], ["updated_at", "2020-04-22 05:36:28.842053"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (50.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (25.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (6.1ms)  begin transaction

CommentTest: test_777739


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:28.965732"], ["updated_at", "2020-04-22 05:36:28.965732"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:28.985078"], ["updated_at", "2020-04-22 05:36:28.985078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_521724


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:28.996155"], ["updated_at", "2020-04-22 05:36:28.996155"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.006874"], ["updated_at", "2020-04-22 05:36:29.006874"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.019865"], ["updated_at", "2020-04-22 05:36:29.019865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_270872


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.091004"], ["updated_at", "2020-04-22 05:36:29.091004"]]
Recording Create (45.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.066886"], ["updated_at", "2020-04-22 05:36:29.066886"]]
 (3.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (38.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.106201"], ["updated_at", "2020-04-22 05:36:29.106201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (40.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (19.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.187471"], ["updated_at", "2020-04-22 05:36:29.187471"]]
 (7.6ms)  rollback transaction
 (5.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_536993


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.241226"], ["updated_at", "2020-04-22 05:36:29.241226"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.323944"], ["updated_at", "2020-04-22 05:36:29.323944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.344806"], ["updated_at", "2020-04-22 05:36:29.344806"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_403799


 (0.9ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (24.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.359142"], ["updated_at", "2020-04-22 05:36:29.359142"]]
 (0.2ms)  begin transaction

CommentTest: test_432483


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.416770"], ["updated_at", "2020-04-22 05:36:29.416770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.451158"], ["updated_at", "2020-04-22 05:36:29.451158"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.403016"], ["updated_at", "2020-04-22 05:36:29.403016"]]
Bucket Create (9.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.550041"], ["updated_at", "2020-04-22 05:36:29.550041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.567576"], ["updated_at", "2020-04-22 05:36:29.567576"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_632605


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Course Create (34.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.600114"], ["updated_at", "2020-04-22 05:36:29.600114"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.643980"], ["updated_at", "2020-04-22 05:36:29.643980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_380339


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.679259"], ["updated_at", "2020-04-22 05:36:29.679259"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.672185"], ["updated_at", "2020-04-22 05:36:29.672185"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.693575"], ["updated_at", "2020-04-22 05:36:29.693575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (11.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.716405"], ["updated_at", "2020-04-22 05:36:29.716405"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (21.6ms)  rollback transaction
 (2.1ms)  begin transaction

CommentTest: test_132216


 (25.2ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.783535"], ["updated_at", "2020-04-22 05:36:29.783535"]]
 (1.7ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.803381"], ["updated_at", "2020-04-22 05:36:29.803381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_930933


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.819925"], ["updated_at", "2020-04-22 05:36:29.819925"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.840061"], ["updated_at", "2020-04-22 05:36:29.840061"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (20.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.831400"], ["updated_at", "2020-04-22 05:36:29.831400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:29.894692"], ["updated_at", "2020-04-22 05:36:29.894692"]]
 (22.1ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_39712


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:29.968840"], ["updated_at", "2020-04-22 05:36:29.968840"]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (9.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
Bucket Create (9.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:29.985206"], ["updated_at", "2020-04-22 05:36:29.985206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_842039


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.035858"], ["updated_at", "2020-04-22 05:36:30.035858"]]
 (7.5ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.040338"], ["updated_at", "2020-04-22 05:36:30.040338"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.059191"], ["updated_at", "2020-04-22 05:36:30.059191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_91992


 (2.0ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.094301"], ["updated_at", "2020-04-22 05:36:30.094301"]]
Recording Create (6.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.076309"], ["updated_at", "2020-04-22 05:36:30.076309"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.107555"], ["updated_at", "2020-04-22 05:36:30.107555"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (11.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.234499"], ["updated_at", "2020-04-22 05:36:30.234499"]]
 (8.0ms)  begin transaction

 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_962571


 (1.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.264550"], ["updated_at", "2020-04-22 05:36:30.264550"]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_355589


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.291586"], ["updated_at", "2020-04-22 05:36:30.291586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (9.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.319450"], ["updated_at", "2020-04-22 05:36:30.319450"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.312471"], ["updated_at", "2020-04-22 05:36:30.312471"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.379383"], ["updated_at", "2020-04-22 05:36:30.379383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.388397"], ["updated_at", "2020-04-22 05:36:30.388397"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_360879


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.444502"], ["updated_at", "2020-04-22 05:36:30.444502"]]

CommentTest: test_429183


Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.458662"], ["updated_at", "2020-04-22 05:36:30.458662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.458548"], ["updated_at", "2020-04-22 05:36:30.458548"]]
Bucket Create (5.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.477542"], ["updated_at", "2020-04-22 05:36:30.477542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.495385"], ["updated_at", "2020-04-22 05:36:30.495385"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.505711"], ["updated_at", "2020-04-22 05:36:30.505711"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (17.3ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_634193


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.576674"], ["updated_at", "2020-04-22 05:36:30.576674"]]
 (0.2ms)  begin transaction

CommentTest: test_470537


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.607547"], ["updated_at", "2020-04-22 05:36:30.607547"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.710176"], ["updated_at", "2020-04-22 05:36:30.710176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.725828"], ["updated_at", "2020-04-22 05:36:30.725828"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:30.739285"], ["updated_at", "2020-04-22 05:36:30.739285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:30.866679"], ["updated_at", "2020-04-22 05:36:30.866679"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (7.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_478871


 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_148148


Course Create (61.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:30.935662"], ["updated_at", "2020-04-22 05:36:30.935662"]]
 (1.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.016186"], ["updated_at", "2020-04-22 05:36:31.016186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (22.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.007340"], ["updated_at", "2020-04-22 05:36:31.007340"]]
Bucket Create (7.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.041647"], ["updated_at", "2020-04-22 05:36:31.041647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.063697"], ["updated_at", "2020-04-22 05:36:31.063697"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.068872"], ["updated_at", "2020-04-22 05:36:31.068872"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_562841


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.133097"], ["updated_at", "2020-04-22 05:36:31.133097"]]
 (62.1ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_267115


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.202728"], ["updated_at", "2020-04-22 05:36:31.202728"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.162199"], ["updated_at", "2020-04-22 05:36:31.162199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.233392"], ["updated_at", "2020-04-22 05:36:31.233392"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.232388"], ["updated_at", "2020-04-22 05:36:31.232388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.248407"], ["updated_at", "2020-04-22 05:36:31.248407"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.6ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_425717


 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_286442


Course Create (12.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.338873"], ["updated_at", "2020-04-22 05:36:31.338873"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (15.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.353061"], ["updated_at", "2020-04-22 05:36:31.353061"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.393425"], ["updated_at", "2020-04-22 05:36:31.393425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.363030"], ["updated_at", "2020-04-22 05:36:31.363030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.517176"], ["updated_at", "2020-04-22 05:36:31.517176"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_103399


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.525784"], ["updated_at", "2020-04-22 05:36:31.525784"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.560581"], ["updated_at", "2020-04-22 05:36:31.560581"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.573462"], ["updated_at", "2020-04-22 05:36:31.573462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.584999"], ["updated_at", "2020-04-22 05:36:31.584999"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.3ms)  RELEASE SAVEPOINT active_record_1
 (6.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_22499


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.649265"], ["updated_at", "2020-04-22 05:36:31.649265"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.669118"], ["updated_at", "2020-04-22 05:36:31.669118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.678054"], ["updated_at", "2020-04-22 05:36:31.678054"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  begin transaction

CommentTest: test_79113


 (0.4ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.707093"], ["updated_at", "2020-04-22 05:36:31.707093"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.726705"], ["updated_at", "2020-04-22 05:36:31.726705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.743291"], ["updated_at", "2020-04-22 05:36:31.743291"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
 (0.2ms)  begin transaction

Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_179418


 (0.3ms)  SAVEPOINT active_record_1
 (3.5ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_686886


 (0.3ms)  SAVEPOINT active_record_1
Course Create (31.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.783165"], ["updated_at", "2020-04-22 05:36:31.783165"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.827567"], ["updated_at", "2020-04-22 05:36:31.827567"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.836306"], ["updated_at", "2020-04-22 05:36:31.836306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.844450"], ["updated_at", "2020-04-22 05:36:31.844450"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (37.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.841448"], ["updated_at", "2020-04-22 05:36:31.841448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (40.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (2.3ms)  begin transaction

CommentTest: test_618600


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:31.954371"], ["updated_at", "2020-04-22 05:36:31.954371"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.885593"], ["updated_at", "2020-04-22 05:36:31.885593"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:31.968381"], ["updated_at", "2020-04-22 05:36:31.968381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (3.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:31.977523"], ["updated_at", "2020-04-22 05:36:31.977523"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (21.0ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_558165


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.038880"], ["updated_at", "2020-04-22 05:36:32.038880"]]
 (0.2ms)  begin transaction

Bucket Create (23.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.048184"], ["updated_at", "2020-04-22 05:36:32.048184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_49502


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.079396"], ["updated_at", "2020-04-22 05:36:32.079396"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.081377"], ["updated_at", "2020-04-22 05:36:32.081377"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (8.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.100433"], ["updated_at", "2020-04-22 05:36:32.100433"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.0ms)  rollback transaction
Recording Create (88.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.127209"], ["updated_at", "2020-04-22 05:36:32.127209"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_448832


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.259536"], ["updated_at", "2020-04-22 05:36:32.259536"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.273959"], ["updated_at", "2020-04-22 05:36:32.273959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (8.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_802681


Recording Create (16.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.281149"], ["updated_at", "2020-04-22 05:36:32.281149"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.315288"], ["updated_at", "2020-04-22 05:36:32.315288"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.325430"], ["updated_at", "2020-04-22 05:36:32.325430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.344711"], ["updated_at", "2020-04-22 05:36:32.344711"]]
 (0.2ms)  begin transaction

CommentTest: test_242658


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.354026"], ["updated_at", "2020-04-22 05:36:32.354026"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.417713"], ["updated_at", "2020-04-22 05:36:32.417713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.431827"], ["updated_at", "2020-04-22 05:36:32.431827"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_763376


Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (9.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.461238"], ["updated_at", "2020-04-22 05:36:32.461238"]]
 (5.4ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.503756"], ["updated_at", "2020-04-22 05:36:32.503756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.519394"], ["updated_at", "2020-04-22 05:36:32.519394"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_34588


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.544279"], ["updated_at", "2020-04-22 05:36:32.544279"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.557622"], ["updated_at", "2020-04-22 05:36:32.557622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.572671"], ["updated_at", "2020-04-22 05:36:32.572671"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_3530


 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.749918"], ["updated_at", "2020-04-22 05:36:32.749918"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.9ms)  rollback transaction
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.763313"], ["updated_at", "2020-04-22 05:36:32.763313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_218997


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.779673"], ["updated_at", "2020-04-22 05:36:32.779673"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.793039"], ["updated_at", "2020-04-22 05:36:32.793039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.801502"], ["updated_at", "2020-04-22 05:36:32.801502"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.825697"], ["updated_at", "2020-04-22 05:36:32.825697"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_992535


 (0.6ms)  SAVEPOINT active_record_1
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_430153


 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.898991"], ["updated_at", "2020-04-22 05:36:32.898991"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (59.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:32.878405"], ["updated_at", "2020-04-22 05:36:32.878405"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.983685"], ["updated_at", "2020-04-22 05:36:32.983685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:32.987957"], ["updated_at", "2020-04-22 05:36:32.987957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.991400"], ["updated_at", "2020-04-22 05:36:32.991400"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_393265


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:32.998807"], ["updated_at", "2020-04-22 05:36:32.998807"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.034953"], ["updated_at", "2020-04-22 05:36:33.034953"]]
 (24.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_325889


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (7.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.110804"], ["updated_at", "2020-04-22 05:36:33.110804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.130172"], ["updated_at", "2020-04-22 05:36:33.130172"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.158033"], ["updated_at", "2020-04-22 05:36:33.158033"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.160926"], ["updated_at", "2020-04-22 05:36:33.160926"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.208791"], ["updated_at", "2020-04-22 05:36:33.208791"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (6.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (17.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_116183


 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.267658"], ["updated_at", "2020-04-22 05:36:33.267658"]]
 (1.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.278587"], ["updated_at", "2020-04-22 05:36:33.278587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_387388


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.292579"], ["updated_at", "2020-04-22 05:36:33.292579"]]
Bucket Create (6.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.309947"], ["updated_at", "2020-04-22 05:36:33.309947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.325916"], ["updated_at", "2020-04-22 05:36:33.325916"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.285843"], ["updated_at", "2020-04-22 05:36:33.285843"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_77668


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.431482"], ["updated_at", "2020-04-22 05:36:33.431482"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.442186"], ["updated_at", "2020-04-22 05:36:33.442186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.451220"], ["updated_at", "2020-04-22 05:36:33.451220"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_831906


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.497551"], ["updated_at", "2020-04-22 05:36:33.497551"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.507963"], ["updated_at", "2020-04-22 05:36:33.507963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.574030"], ["updated_at", "2020-04-22 05:36:33.574030"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
Bucket Load (5.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  begin transaction

CommentTest: test_730336


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (5.1ms)  rollback transaction
Course Create (15.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.616364"], ["updated_at", "2020-04-22 05:36:33.616364"]]
 (0.2ms)  begin transaction

CommentTest: test_253814


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.647282"], ["updated_at", "2020-04-22 05:36:33.647282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.660747"], ["updated_at", "2020-04-22 05:36:33.660747"]]
Recording Create (5.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.669038"], ["updated_at", "2020-04-22 05:36:33.669038"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.696211"], ["updated_at", "2020-04-22 05:36:33.696211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.708856"], ["updated_at", "2020-04-22 05:36:33.708856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_327909


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.730362"], ["updated_at", "2020-04-22 05:36:33.730362"]]
 (0.1ms)  begin transaction

CommentTest: test_370958


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.733497"], ["updated_at", "2020-04-22 05:36:33.733497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.734656"], ["updated_at", "2020-04-22 05:36:33.734656"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.735546"], ["updated_at", "2020-04-22 05:36:33.735546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.744985"], ["updated_at", "2020-04-22 05:36:33.744985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_54043


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.749276"], ["updated_at", "2020-04-22 05:36:33.749276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.750300"], ["updated_at", "2020-04-22 05:36:33.750300"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.754656"], ["updated_at", "2020-04-22 05:36:33.754656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.758485"], ["updated_at", "2020-04-22 05:36:33.758485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_735722


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.767660"], ["updated_at", "2020-04-22 05:36:33.767660"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.772705"], ["updated_at", "2020-04-22 05:36:33.772705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.774987"], ["updated_at", "2020-04-22 05:36:33.774987"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_18528


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.784886"], ["updated_at", "2020-04-22 05:36:33.784886"]]

CommentTest: test_35648


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.791929"], ["updated_at", "2020-04-22 05:36:33.791929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.787368"], ["updated_at", "2020-04-22 05:36:33.787368"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.794355"], ["updated_at", "2020-04-22 05:36:33.794355"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.794355"], ["updated_at", "2020-04-22 05:36:33.794355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.796558"], ["updated_at", "2020-04-22 05:36:33.796558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_524472


 (0.1ms)  begin transaction

CommentTest: test_902518


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.813009"], ["updated_at", "2020-04-22 05:36:33.813009"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.817209"], ["updated_at", "2020-04-22 05:36:33.817209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.816621"], ["updated_at", "2020-04-22 05:36:33.816621"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.819372"], ["updated_at", "2020-04-22 05:36:33.819372"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.823055"], ["updated_at", "2020-04-22 05:36:33.823055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.825755"], ["updated_at", "2020-04-22 05:36:33.825755"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_710803


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.833669"], ["updated_at", "2020-04-22 05:36:33.833669"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.837395"], ["updated_at", "2020-04-22 05:36:33.837395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_487310


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.839666"], ["updated_at", "2020-04-22 05:36:33.839666"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.840624"], ["updated_at", "2020-04-22 05:36:33.840624"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.844386"], ["updated_at", "2020-04-22 05:36:33.844386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.846652"], ["updated_at", "2020-04-22 05:36:33.846652"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_884303


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.855391"], ["updated_at", "2020-04-22 05:36:33.855391"]]
 (0.1ms)  begin transaction

CommentTest: test_955478


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.858186"], ["updated_at", "2020-04-22 05:36:33.858186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.860180"], ["updated_at", "2020-04-22 05:36:33.860180"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.859681"], ["updated_at", "2020-04-22 05:36:33.859681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.862621"], ["updated_at", "2020-04-22 05:36:33.862621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.866670"], ["updated_at", "2020-04-22 05:36:33.866670"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_523443


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.876492"], ["updated_at", "2020-04-22 05:36:33.876492"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.879873"], ["updated_at", "2020-04-22 05:36:33.879873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.882563"], ["updated_at", "2020-04-22 05:36:33.882563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_848330


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.889112"], ["updated_at", "2020-04-22 05:36:33.889112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.892169"], ["updated_at", "2020-04-22 05:36:33.892169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_973027


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.894078"], ["updated_at", "2020-04-22 05:36:33.894078"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.894040"], ["updated_at", "2020-04-22 05:36:33.894040"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.899262"], ["updated_at", "2020-04-22 05:36:33.899262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.901669"], ["updated_at", "2020-04-22 05:36:33.901669"]]
 (0.1ms)  begin transaction

CommentTest: test_911867


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.906422"], ["updated_at", "2020-04-22 05:36:33.906422"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.911330"], ["updated_at", "2020-04-22 05:36:33.911330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.913492"], ["updated_at", "2020-04-22 05:36:33.913492"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_19810


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_573267


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.921314"], ["updated_at", "2020-04-22 05:36:33.921314"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.923610"], ["updated_at", "2020-04-22 05:36:33.923610"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.925467"], ["updated_at", "2020-04-22 05:36:33.925467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.926219"], ["updated_at", "2020-04-22 05:36:33.926219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.927815"], ["updated_at", "2020-04-22 05:36:33.927815"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.928339"], ["updated_at", "2020-04-22 05:36:33.928339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_142068



CommentTest: test_919299


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.939720"], ["updated_at", "2020-04-22 05:36:33.939720"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.939745"], ["updated_at", "2020-04-22 05:36:33.939745"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.953236"], ["updated_at", "2020-04-22 05:36:33.953236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.957502"], ["updated_at", "2020-04-22 05:36:33.957502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.968001"], ["updated_at", "2020-04-22 05:36:33.968001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.972030"], ["updated_at", "2020-04-22 05:36:33.972030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_550925


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.975395"], ["updated_at", "2020-04-22 05:36:33.975395"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.978779"], ["updated_at", "2020-04-22 05:36:33.978779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_349130


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.980896"], ["updated_at", "2020-04-22 05:36:33.980896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.982642"], ["updated_at", "2020-04-22 05:36:33.982642"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.985321"], ["updated_at", "2020-04-22 05:36:33.985321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_550347


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.988639"], ["updated_at", "2020-04-22 05:36:33.988639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.990649"], ["updated_at", "2020-04-22 05:36:33.990649"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:33.994279"], ["updated_at", "2020-04-22 05:36:33.994279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_490944


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:33.997121"], ["updated_at", "2020-04-22 05:36:33.997121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:33.998700"], ["updated_at", "2020-04-22 05:36:33.998700"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.001414"], ["updated_at", "2020-04-22 05:36:34.001414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.003971"], ["updated_at", "2020-04-22 05:36:34.003971"]]
 (0.1ms)  begin transaction

CommentTest: test_284028


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.006882"], ["updated_at", "2020-04-22 05:36:34.006882"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.010530"], ["updated_at", "2020-04-22 05:36:34.010530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.012696"], ["updated_at", "2020-04-22 05:36:34.012696"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_135093


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.017854"], ["updated_at", "2020-04-22 05:36:34.017854"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_594037


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.024247"], ["updated_at", "2020-04-22 05:36:34.024247"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.025204"], ["updated_at", "2020-04-22 05:36:34.025204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.027676"], ["updated_at", "2020-04-22 05:36:34.027676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.027668"], ["updated_at", "2020-04-22 05:36:34.027668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.029962"], ["updated_at", "2020-04-22 05:36:34.029962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_749709


 (0.1ms)  begin transaction

CommentTest: test_91310


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.042389"], ["updated_at", "2020-04-22 05:36:34.042389"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.043701"], ["updated_at", "2020-04-22 05:36:34.043701"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.044979"], ["updated_at", "2020-04-22 05:36:34.044979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.046679"], ["updated_at", "2020-04-22 05:36:34.046679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.047197"], ["updated_at", "2020-04-22 05:36:34.047197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.049316"], ["updated_at", "2020-04-22 05:36:34.049316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_916452



CommentTest: test_945414


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.061332"], ["updated_at", "2020-04-22 05:36:34.061332"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.061177"], ["updated_at", "2020-04-22 05:36:34.061177"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.064601"], ["updated_at", "2020-04-22 05:36:34.064601"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.066290"], ["updated_at", "2020-04-22 05:36:34.066290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.067294"], ["updated_at", "2020-04-22 05:36:34.067294"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.068728"], ["updated_at", "2020-04-22 05:36:34.068728"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (1.6ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_93038


 (0.4ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.078809"], ["updated_at", "2020-04-22 05:36:34.078809"]]
 (0.1ms)  begin transaction

CommentTest: test_348726


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.082052"], ["updated_at", "2020-04-22 05:36:34.082052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.082966"], ["updated_at", "2020-04-22 05:36:34.082966"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.084107"], ["updated_at", "2020-04-22 05:36:34.084107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.085826"], ["updated_at", "2020-04-22 05:36:34.085826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.088820"], ["updated_at", "2020-04-22 05:36:34.088820"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_162025


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.094066"], ["updated_at", "2020-04-22 05:36:34.094066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.097280"], ["updated_at", "2020-04-22 05:36:34.097280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.100707"], ["updated_at", "2020-04-22 05:36:34.100707"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_889142


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_377477


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.108772"], ["updated_at", "2020-04-22 05:36:34.108772"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.111455"], ["updated_at", "2020-04-22 05:36:34.111455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.110775"], ["updated_at", "2020-04-22 05:36:34.110775"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.113674"], ["updated_at", "2020-04-22 05:36:34.113674"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.113815"], ["updated_at", "2020-04-22 05:36:34.113815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.119161"], ["updated_at", "2020-04-22 05:36:34.119161"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_920098


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.127023"], ["updated_at", "2020-04-22 05:36:34.127023"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.130320"], ["updated_at", "2020-04-22 05:36:34.130320"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.132639"], ["updated_at", "2020-04-22 05:36:34.132639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_664063


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.138266"], ["updated_at", "2020-04-22 05:36:34.138266"]]
 (0.1ms)  begin transaction

CommentTest: test_655511


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.140985"], ["updated_at", "2020-04-22 05:36:34.140985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.140976"], ["updated_at", "2020-04-22 05:36:34.140976"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.143427"], ["updated_at", "2020-04-22 05:36:34.143427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.143967"], ["updated_at", "2020-04-22 05:36:34.143967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.145970"], ["updated_at", "2020-04-22 05:36:34.145970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_986938


 (0.1ms)  SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.153070"], ["updated_at", "2020-04-22 05:36:34.153070"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.159163"], ["updated_at", "2020-04-22 05:36:34.159163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.161694"], ["updated_at", "2020-04-22 05:36:34.161694"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_410267


 (0.1ms)  begin transaction

CommentTest: test_412919


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.170650"], ["updated_at", "2020-04-22 05:36:34.170650"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.171844"], ["updated_at", "2020-04-22 05:36:34.171844"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.173287"], ["updated_at", "2020-04-22 05:36:34.173287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.174333"], ["updated_at", "2020-04-22 05:36:34.174333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.175175"], ["updated_at", "2020-04-22 05:36:34.175175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.176090"], ["updated_at", "2020-04-22 05:36:34.176090"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_381603


 (0.1ms)  begin transaction

CommentTest: test_721946


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.185765"], ["updated_at", "2020-04-22 05:36:34.185765"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.186821"], ["updated_at", "2020-04-22 05:36:34.186821"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.188497"], ["updated_at", "2020-04-22 05:36:34.188497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.189251"], ["updated_at", "2020-04-22 05:36:34.189251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.190431"], ["updated_at", "2020-04-22 05:36:34.190431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.191394"], ["updated_at", "2020-04-22 05:36:34.191394"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_950331


 (0.1ms)  begin transaction

CommentTest: test_645635


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.200060"], ["updated_at", "2020-04-22 05:36:34.200060"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.200985"], ["updated_at", "2020-04-22 05:36:34.200985"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.202762"], ["updated_at", "2020-04-22 05:36:34.202762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.204044"], ["updated_at", "2020-04-22 05:36:34.204044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.205528"], ["updated_at", "2020-04-22 05:36:34.205528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.207829"], ["updated_at", "2020-04-22 05:36:34.207829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_93708


Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.215676"], ["updated_at", "2020-04-22 05:36:34.215676"]]
 (0.9ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.218824"], ["updated_at", "2020-04-22 05:36:34.218824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.221791"], ["updated_at", "2020-04-22 05:36:34.221791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_104554


 (0.1ms)  begin transaction

CommentTest: test_256330


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.234503"], ["updated_at", "2020-04-22 05:36:34.234503"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.238793"], ["updated_at", "2020-04-22 05:36:34.238793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.237922"], ["updated_at", "2020-04-22 05:36:34.237922"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.241618"], ["updated_at", "2020-04-22 05:36:34.241618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.241250"], ["updated_at", "2020-04-22 05:36:34.241250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.243732"], ["updated_at", "2020-04-22 05:36:34.243732"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_900922


 (0.1ms)  begin transaction

CommentTest: test_226160


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.252848"], ["updated_at", "2020-04-22 05:36:34.252848"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.253913"], ["updated_at", "2020-04-22 05:36:34.253913"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.256366"], ["updated_at", "2020-04-22 05:36:34.256366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.258667"], ["updated_at", "2020-04-22 05:36:34.258667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.257395"], ["updated_at", "2020-04-22 05:36:34.257395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.263421"], ["updated_at", "2020-04-22 05:36:34.263421"]]
 (0.1ms)  begin transaction

CommentTest: test_787886


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.271479"], ["updated_at", "2020-04-22 05:36:34.271479"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.274415"], ["updated_at", "2020-04-22 05:36:34.274415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.276531"], ["updated_at", "2020-04-22 05:36:34.276531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_535670


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.279989"], ["updated_at", "2020-04-22 05:36:34.279989"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_127192


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.284108"], ["updated_at", "2020-04-22 05:36:34.284108"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.285938"], ["updated_at", "2020-04-22 05:36:34.285938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.285743"], ["updated_at", "2020-04-22 05:36:34.285743"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.292380"], ["updated_at", "2020-04-22 05:36:34.292380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.294718"], ["updated_at", "2020-04-22 05:36:34.294718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_209680


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.297508"], ["updated_at", "2020-04-22 05:36:34.297508"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.300928"], ["updated_at", "2020-04-22 05:36:34.300928"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_888828


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.302997"], ["updated_at", "2020-04-22 05:36:34.302997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.307971"], ["updated_at", "2020-04-22 05:36:34.307971"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.310923"], ["updated_at", "2020-04-22 05:36:34.310923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.313634"], ["updated_at", "2020-04-22 05:36:34.313634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_378391


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_254406


Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.317808"], ["updated_at", "2020-04-22 05:36:34.317808"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.323845"], ["updated_at", "2020-04-22 05:36:34.323845"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.325362"], ["updated_at", "2020-04-22 05:36:34.325362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.326898"], ["updated_at", "2020-04-22 05:36:34.326898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.327729"], ["updated_at", "2020-04-22 05:36:34.327729"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.329235"], ["updated_at", "2020-04-22 05:36:34.329235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_531696


 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_539199


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.341408"], ["updated_at", "2020-04-22 05:36:34.341408"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.343298"], ["updated_at", "2020-04-22 05:36:34.343298"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.345031"], ["updated_at", "2020-04-22 05:36:34.345031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.346064"], ["updated_at", "2020-04-22 05:36:34.346064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.346974"], ["updated_at", "2020-04-22 05:36:34.346974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.348352"], ["updated_at", "2020-04-22 05:36:34.348352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_993144


 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.358107"], ["updated_at", "2020-04-22 05:36:34.358107"]]
 (0.1ms)  begin transaction

CommentTest: test_694620


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.360597"], ["updated_at", "2020-04-22 05:36:34.360597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.360903"], ["updated_at", "2020-04-22 05:36:34.360903"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.362612"], ["updated_at", "2020-04-22 05:36:34.362612"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.363869"], ["updated_at", "2020-04-22 05:36:34.363869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.366682"], ["updated_at", "2020-04-22 05:36:34.366682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_766665


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.373916"], ["updated_at", "2020-04-22 05:36:34.373916"]]
 (0.1ms)  begin transaction

CommentTest: test_582346


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.377299"], ["updated_at", "2020-04-22 05:36:34.377299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.379947"], ["updated_at", "2020-04-22 05:36:34.379947"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.378175"], ["updated_at", "2020-04-22 05:36:34.378175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.382408"], ["updated_at", "2020-04-22 05:36:34.382408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.384417"], ["updated_at", "2020-04-22 05:36:34.384417"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_926765


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (2.9ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_62876

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.402741"], ["updated_at", "2020-04-22 05:36:34.402741"]]

 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.409901"], ["updated_at", "2020-04-22 05:36:34.409901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.409544"], ["updated_at", "2020-04-22 05:36:34.409544"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.411868"], ["updated_at", "2020-04-22 05:36:34.411868"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.412131"], ["updated_at", "2020-04-22 05:36:34.412131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.413918"], ["updated_at", "2020-04-22 05:36:34.413918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_988815


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_24006


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.423464"], ["updated_at", "2020-04-22 05:36:34.423464"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.426392"], ["updated_at", "2020-04-22 05:36:34.426392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.426184"], ["updated_at", "2020-04-22 05:36:34.426184"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.428466"], ["updated_at", "2020-04-22 05:36:34.428466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.429507"], ["updated_at", "2020-04-22 05:36:34.429507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.431532"], ["updated_at", "2020-04-22 05:36:34.431532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_237586


 (0.1ms)  begin transaction

CommentTest: test_416678


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.445019"], ["updated_at", "2020-04-22 05:36:34.445019"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.441997"], ["updated_at", "2020-04-22 05:36:34.441997"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.450657"], ["updated_at", "2020-04-22 05:36:34.450657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.450479"], ["updated_at", "2020-04-22 05:36:34.450479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.452503"], ["updated_at", "2020-04-22 05:36:34.452503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.452558"], ["updated_at", "2020-04-22 05:36:34.452558"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_292486


 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.465445"], ["updated_at", "2020-04-22 05:36:34.465445"]]
 (0.1ms)  begin transaction

CommentTest: test_936414


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.468389"], ["updated_at", "2020-04-22 05:36:34.468389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.470524"], ["updated_at", "2020-04-22 05:36:34.470524"]]
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.468397"], ["updated_at", "2020-04-22 05:36:34.468397"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.474771"], ["updated_at", "2020-04-22 05:36:34.474771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_630420


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.479878"], ["updated_at", "2020-04-22 05:36:34.479878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.481102"], ["updated_at", "2020-04-22 05:36:34.481102"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.484419"], ["updated_at", "2020-04-22 05:36:34.484419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.487255"], ["updated_at", "2020-04-22 05:36:34.487255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_495788


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.493474"], ["updated_at", "2020-04-22 05:36:34.493474"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.495901"], ["updated_at", "2020-04-22 05:36:34.495901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.497472"], ["updated_at", "2020-04-22 05:36:34.497472"]]
 (0.2ms)  begin transaction

CommentTest: test_905333

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.499953"], ["updated_at", "2020-04-22 05:36:34.499953"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.502911"], ["updated_at", "2020-04-22 05:36:34.502911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_6549


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.507356"], ["updated_at", "2020-04-22 05:36:34.507356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.507729"], ["updated_at", "2020-04-22 05:36:34.507729"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.510246"], ["updated_at", "2020-04-22 05:36:34.510246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.512313"], ["updated_at", "2020-04-22 05:36:34.512313"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_324023


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.523222"], ["updated_at", "2020-04-22 05:36:34.523222"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.528632"], ["updated_at", "2020-04-22 05:36:34.528632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_869458


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.532282"], ["updated_at", "2020-04-22 05:36:34.532282"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.533590"], ["updated_at", "2020-04-22 05:36:34.533590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.536321"], ["updated_at", "2020-04-22 05:36:34.536321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.544523"], ["updated_at", "2020-04-22 05:36:34.544523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_644284


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.548580"], ["updated_at", "2020-04-22 05:36:34.548580"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.551237"], ["updated_at", "2020-04-22 05:36:34.551237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_863719


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.554031"], ["updated_at", "2020-04-22 05:36:34.554031"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.554174"], ["updated_at", "2020-04-22 05:36:34.554174"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.559518"], ["updated_at", "2020-04-22 05:36:34.559518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.561851"], ["updated_at", "2020-04-22 05:36:34.561851"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_586665


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.565272"], ["updated_at", "2020-04-22 05:36:34.565272"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.567808"], ["updated_at", "2020-04-22 05:36:34.567808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_168476


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.572172"], ["updated_at", "2020-04-22 05:36:34.572172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.573270"], ["updated_at", "2020-04-22 05:36:34.573270"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.576271"], ["updated_at", "2020-04-22 05:36:34.576271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.578324"], ["updated_at", "2020-04-22 05:36:34.578324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_785024


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.580870"], ["updated_at", "2020-04-22 05:36:34.580870"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.583396"], ["updated_at", "2020-04-22 05:36:34.583396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.585412"], ["updated_at", "2020-04-22 05:36:34.585412"]]
 (0.1ms)  begin transaction

CommentTest: test_464602


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.587847"], ["updated_at", "2020-04-22 05:36:34.587847"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.592799"], ["updated_at", "2020-04-22 05:36:34.592799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.594841"], ["updated_at", "2020-04-22 05:36:34.594841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_776185


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.601023"], ["updated_at", "2020-04-22 05:36:34.601023"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.604096"], ["updated_at", "2020-04-22 05:36:34.604096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.608907"], ["updated_at", "2020-04-22 05:36:34.608907"]]
 (0.1ms)  begin transaction

CommentTest: test_450209


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.613365"], ["updated_at", "2020-04-22 05:36:34.613365"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.617919"], ["updated_at", "2020-04-22 05:36:34.617919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_137720


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (5.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.625971"], ["updated_at", "2020-04-22 05:36:34.625971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.631127"], ["updated_at", "2020-04-22 05:36:34.631127"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.635486"], ["updated_at", "2020-04-22 05:36:34.635486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.639230"], ["updated_at", "2020-04-22 05:36:34.639230"]]
 (0.1ms)  begin transaction

CommentTest: test_105118


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.646064"], ["updated_at", "2020-04-22 05:36:34.646064"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.648712"], ["updated_at", "2020-04-22 05:36:34.648712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.650639"], ["updated_at", "2020-04-22 05:36:34.650639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_500681


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.653846"], ["updated_at", "2020-04-22 05:36:34.653846"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.658426"], ["updated_at", "2020-04-22 05:36:34.658426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.660476"], ["updated_at", "2020-04-22 05:36:34.660476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_440768


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.664764"], ["updated_at", "2020-04-22 05:36:34.664764"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.667585"], ["updated_at", "2020-04-22 05:36:34.667585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.6ms)  rollback transaction
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.669537"], ["updated_at", "2020-04-22 05:36:34.669537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_802647


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.675820"], ["updated_at", "2020-04-22 05:36:34.675820"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.678890"], ["updated_at", "2020-04-22 05:36:34.678890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_300552


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.681002"], ["updated_at", "2020-04-22 05:36:34.681002"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.681618"], ["updated_at", "2020-04-22 05:36:34.681618"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.684176"], ["updated_at", "2020-04-22 05:36:34.684176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.686320"], ["updated_at", "2020-04-22 05:36:34.686320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_660764


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.691457"], ["updated_at", "2020-04-22 05:36:34.691457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.694078"], ["updated_at", "2020-04-22 05:36:34.694078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_585618


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.696454"], ["updated_at", "2020-04-22 05:36:34.696454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.698089"], ["updated_at", "2020-04-22 05:36:34.698089"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.700344"], ["updated_at", "2020-04-22 05:36:34.700344"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.702196"], ["updated_at", "2020-04-22 05:36:34.702196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_516585


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.705824"], ["updated_at", "2020-04-22 05:36:34.705824"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.709099"], ["updated_at", "2020-04-22 05:36:34.709099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.711271"], ["updated_at", "2020-04-22 05:36:34.711271"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_609361


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.715023"], ["updated_at", "2020-04-22 05:36:34.715023"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_609506


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.718249"], ["updated_at", "2020-04-22 05:36:34.718249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.720508"], ["updated_at", "2020-04-22 05:36:34.720508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.720291"], ["updated_at", "2020-04-22 05:36:34.720291"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.724448"], ["updated_at", "2020-04-22 05:36:34.724448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.726638"], ["updated_at", "2020-04-22 05:36:34.726638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_375484


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.732190"], ["updated_at", "2020-04-22 05:36:34.732190"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.735500"], ["updated_at", "2020-04-22 05:36:34.735500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_559139


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.737850"], ["updated_at", "2020-04-22 05:36:34.737850"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.741279"], ["updated_at", "2020-04-22 05:36:34.741279"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.745435"], ["updated_at", "2020-04-22 05:36:34.745435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_974822


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.748258"], ["updated_at", "2020-04-22 05:36:34.748258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.749440"], ["updated_at", "2020-04-22 05:36:34.749440"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.751949"], ["updated_at", "2020-04-22 05:36:34.751949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.753877"], ["updated_at", "2020-04-22 05:36:34.753877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_589263


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.757821"], ["updated_at", "2020-04-22 05:36:34.757821"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.760493"], ["updated_at", "2020-04-22 05:36:34.760493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.762736"], ["updated_at", "2020-04-22 05:36:34.762736"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_672985


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.766118"], ["updated_at", "2020-04-22 05:36:34.766118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.769462"], ["updated_at", "2020-04-22 05:36:34.769462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.772556"], ["updated_at", "2020-04-22 05:36:34.772556"]]

CommentTest: test_683039


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.774695"], ["updated_at", "2020-04-22 05:36:34.774695"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.777430"], ["updated_at", "2020-04-22 05:36:34.777430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.781812"], ["updated_at", "2020-04-22 05:36:34.781812"]]
 (0.1ms)  begin transaction

CommentTest: test_370883


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.785226"], ["updated_at", "2020-04-22 05:36:34.785226"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.790176"], ["updated_at", "2020-04-22 05:36:34.790176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_328976


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.792309"], ["updated_at", "2020-04-22 05:36:34.792309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.793781"], ["updated_at", "2020-04-22 05:36:34.793781"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.796890"], ["updated_at", "2020-04-22 05:36:34.796890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.800713"], ["updated_at", "2020-04-22 05:36:34.800713"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_656238


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.827080"], ["updated_at", "2020-04-22 05:36:34.827080"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.829683"], ["updated_at", "2020-04-22 05:36:34.829683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_410776


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.831861"], ["updated_at", "2020-04-22 05:36:34.831861"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.832559"], ["updated_at", "2020-04-22 05:36:34.832559"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.834924"], ["updated_at", "2020-04-22 05:36:34.834924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.836896"], ["updated_at", "2020-04-22 05:36:34.836896"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_760389


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.843394"], ["updated_at", "2020-04-22 05:36:34.843394"]]
 (0.1ms)  begin transaction

CommentTest: test_652603


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.846534"], ["updated_at", "2020-04-22 05:36:34.846534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.847580"], ["updated_at", "2020-04-22 05:36:34.847580"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.848722"], ["updated_at", "2020-04-22 05:36:34.848722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.851429"], ["updated_at", "2020-04-22 05:36:34.851429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.853420"], ["updated_at", "2020-04-22 05:36:34.853420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_619160


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.868598"], ["updated_at", "2020-04-22 05:36:34.868598"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.871383"], ["updated_at", "2020-04-22 05:36:34.871383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.875768"], ["updated_at", "2020-04-22 05:36:34.875768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_833867


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.878052"], ["updated_at", "2020-04-22 05:36:34.878052"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.881213"], ["updated_at", "2020-04-22 05:36:34.881213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_258751


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.883527"], ["updated_at", "2020-04-22 05:36:34.883527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.885454"], ["updated_at", "2020-04-22 05:36:34.885454"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.891079"], ["updated_at", "2020-04-22 05:36:34.891079"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.893022"], ["updated_at", "2020-04-22 05:36:34.893022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_489637


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.896379"], ["updated_at", "2020-04-22 05:36:34.896379"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.899113"], ["updated_at", "2020-04-22 05:36:34.899113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_587537


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.900932"], ["updated_at", "2020-04-22 05:36:34.900932"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.902205"], ["updated_at", "2020-04-22 05:36:34.902205"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.905214"], ["updated_at", "2020-04-22 05:36:34.905214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.908129"], ["updated_at", "2020-04-22 05:36:34.908129"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_576545


 (0.1ms)  begin transaction

CommentTest: test_68129


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.921123"], ["updated_at", "2020-04-22 05:36:34.921123"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.922447"], ["updated_at", "2020-04-22 05:36:34.922447"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.924552"], ["updated_at", "2020-04-22 05:36:34.924552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.926164"], ["updated_at", "2020-04-22 05:36:34.926164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.927017"], ["updated_at", "2020-04-22 05:36:34.927017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.928424"], ["updated_at", "2020-04-22 05:36:34.928424"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_874169


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.943041"], ["updated_at", "2020-04-22 05:36:34.943041"]]

CommentTest: test_66947


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.946139"], ["updated_at", "2020-04-22 05:36:34.946139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.949089"], ["updated_at", "2020-04-22 05:36:34.949089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.947369"], ["updated_at", "2020-04-22 05:36:34.947369"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_212793


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.960744"], ["updated_at", "2020-04-22 05:36:34.960744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.962236"], ["updated_at", "2020-04-22 05:36:34.962236"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.963358"], ["updated_at", "2020-04-22 05:36:34.963358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.965090"], ["updated_at", "2020-04-22 05:36:34.965090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.967215"], ["updated_at", "2020-04-22 05:36:34.967215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_90636


 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.978810"], ["updated_at", "2020-04-22 05:36:34.978810"]]
 (0.1ms)  begin transaction

CommentTest: test_681246


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.981347"], ["updated_at", "2020-04-22 05:36:34.981347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.981574"], ["updated_at", "2020-04-22 05:36:34.981574"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.984007"], ["updated_at", "2020-04-22 05:36:34.984007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.984066"], ["updated_at", "2020-04-22 05:36:34.984066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:34.986128"], ["updated_at", "2020-04-22 05:36:34.986128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_470729


 (0.1ms)  begin transaction

CommentTest: test_786735


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.995725"], ["updated_at", "2020-04-22 05:36:34.995725"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:34.996912"], ["updated_at", "2020-04-22 05:36:34.996912"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.998295"], ["updated_at", "2020-04-22 05:36:34.998295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:34.999576"], ["updated_at", "2020-04-22 05:36:34.999576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.000146"], ["updated_at", "2020-04-22 05:36:35.000146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.001582"], ["updated_at", "2020-04-22 05:36:35.001582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.5ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_666538


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.011351"], ["updated_at", "2020-04-22 05:36:35.011351"]]
 (1.0ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.014385"], ["updated_at", "2020-04-22 05:36:35.014385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.016964"], ["updated_at", "2020-04-22 05:36:35.016964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_51850


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_7167


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.026089"], ["updated_at", "2020-04-22 05:36:35.026089"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.028675"], ["updated_at", "2020-04-22 05:36:35.028675"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.030826"], ["updated_at", "2020-04-22 05:36:35.030826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.030944"], ["updated_at", "2020-04-22 05:36:35.030944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.032895"], ["updated_at", "2020-04-22 05:36:35.032895"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.032823"], ["updated_at", "2020-04-22 05:36:35.032823"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_216241


 (0.1ms)  begin transaction

CommentTest: test_402341


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.044322"], ["updated_at", "2020-04-22 05:36:35.044322"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.044751"], ["updated_at", "2020-04-22 05:36:35.044751"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.047135"], ["updated_at", "2020-04-22 05:36:35.047135"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.047260"], ["updated_at", "2020-04-22 05:36:35.047260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.049204"], ["updated_at", "2020-04-22 05:36:35.049204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.050786"], ["updated_at", "2020-04-22 05:36:35.050786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_867585


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_555253


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.061177"], ["updated_at", "2020-04-22 05:36:35.061177"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.063494"], ["updated_at", "2020-04-22 05:36:35.063494"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.064107"], ["updated_at", "2020-04-22 05:36:35.064107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.065756"], ["updated_at", "2020-04-22 05:36:35.065756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.066083"], ["updated_at", "2020-04-22 05:36:35.066083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.068077"], ["updated_at", "2020-04-22 05:36:35.068077"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_629486


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.075541"], ["updated_at", "2020-04-22 05:36:35.075541"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.078252"], ["updated_at", "2020-04-22 05:36:35.078252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_566476


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.080773"], ["updated_at", "2020-04-22 05:36:35.080773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.080818"], ["updated_at", "2020-04-22 05:36:35.080818"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.084068"], ["updated_at", "2020-04-22 05:36:35.084068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_695372


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.091257"], ["updated_at", "2020-04-22 05:36:35.091257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.092525"], ["updated_at", "2020-04-22 05:36:35.092525"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.095769"], ["updated_at", "2020-04-22 05:36:35.095769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.098299"], ["updated_at", "2020-04-22 05:36:35.098299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_944947


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.102542"], ["updated_at", "2020-04-22 05:36:35.102542"]]
 (0.1ms)  begin transaction

CommentTest: test_820877


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.110227"], ["updated_at", "2020-04-22 05:36:35.110227"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.113248"], ["updated_at", "2020-04-22 05:36:35.113248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.111438"], ["updated_at", "2020-04-22 05:36:35.111438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.115610"], ["updated_at", "2020-04-22 05:36:35.115610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.115509"], ["updated_at", "2020-04-22 05:36:35.115509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_630965


 (0.1ms)  begin transaction

CommentTest: test_889843


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.125815"], ["updated_at", "2020-04-22 05:36:35.125815"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.127160"], ["updated_at", "2020-04-22 05:36:35.127160"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.128381"], ["updated_at", "2020-04-22 05:36:35.128381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.130380"], ["updated_at", "2020-04-22 05:36:35.130380"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.129779"], ["updated_at", "2020-04-22 05:36:35.129779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.133148"], ["updated_at", "2020-04-22 05:36:35.133148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_130631


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.142197"], ["updated_at", "2020-04-22 05:36:35.142197"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.145518"], ["updated_at", "2020-04-22 05:36:35.145518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.148934"], ["updated_at", "2020-04-22 05:36:35.148934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_769777


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.159529"], ["updated_at", "2020-04-22 05:36:35.159529"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.162039"], ["updated_at", "2020-04-22 05:36:35.162039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.164041"], ["updated_at", "2020-04-22 05:36:35.164041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_86204


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.167717"], ["updated_at", "2020-04-22 05:36:35.167717"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.170252"], ["updated_at", "2020-04-22 05:36:35.170252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_423033


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.173489"], ["updated_at", "2020-04-22 05:36:35.173489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.175225"], ["updated_at", "2020-04-22 05:36:35.175225"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.178188"], ["updated_at", "2020-04-22 05:36:35.178188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_107130


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.181205"], ["updated_at", "2020-04-22 05:36:35.181205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.182558"], ["updated_at", "2020-04-22 05:36:35.182558"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.185021"], ["updated_at", "2020-04-22 05:36:35.185021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.187349"], ["updated_at", "2020-04-22 05:36:35.187349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_328954


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.194740"], ["updated_at", "2020-04-22 05:36:35.194740"]]
 (0.1ms)  begin transaction

CommentTest: test_48025


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.197596"], ["updated_at", "2020-04-22 05:36:35.197596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.197417"], ["updated_at", "2020-04-22 05:36:35.197417"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.199488"], ["updated_at", "2020-04-22 05:36:35.199488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.200000"], ["updated_at", "2020-04-22 05:36:35.200000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.201971"], ["updated_at", "2020-04-22 05:36:35.201971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_744885


 (11.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.216319"], ["updated_at", "2020-04-22 05:36:35.216319"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.219898"], ["updated_at", "2020-04-22 05:36:35.219898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.224322"], ["updated_at", "2020-04-22 05:36:35.224322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_309411


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.226733"], ["updated_at", "2020-04-22 05:36:35.226733"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.230814"], ["updated_at", "2020-04-22 05:36:35.230814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_325619


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.233098"], ["updated_at", "2020-04-22 05:36:35.233098"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.233724"], ["updated_at", "2020-04-22 05:36:35.233724"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.236097"], ["updated_at", "2020-04-22 05:36:35.236097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.238253"], ["updated_at", "2020-04-22 05:36:35.238253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_835333


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_775488


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.246945"], ["updated_at", "2020-04-22 05:36:35.246945"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.248626"], ["updated_at", "2020-04-22 05:36:35.248626"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.251893"], ["updated_at", "2020-04-22 05:36:35.251893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.251960"], ["updated_at", "2020-04-22 05:36:35.251960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.254117"], ["updated_at", "2020-04-22 05:36:35.254117"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.254112"], ["updated_at", "2020-04-22 05:36:35.254112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_810682


 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  begin transaction

CommentTest: test_385455


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.264483"], ["updated_at", "2020-04-22 05:36:35.264483"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.269171"], ["updated_at", "2020-04-22 05:36:35.269171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.268612"], ["updated_at", "2020-04-22 05:36:35.268612"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.272590"], ["updated_at", "2020-04-22 05:36:35.272590"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.272867"], ["updated_at", "2020-04-22 05:36:35.272867"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.275440"], ["updated_at", "2020-04-22 05:36:35.275440"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415784


 (0.1ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_298470


 (0.8ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.288133"], ["updated_at", "2020-04-22 05:36:35.288133"]]
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.285652"], ["updated_at", "2020-04-22 05:36:35.285652"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.293169"], ["updated_at", "2020-04-22 05:36:35.293169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.294216"], ["updated_at", "2020-04-22 05:36:35.294216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.295802"], ["updated_at", "2020-04-22 05:36:35.295802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.296612"], ["updated_at", "2020-04-22 05:36:35.296612"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_462593


CommentTest: test_785933


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.308559"], ["updated_at", "2020-04-22 05:36:35.308559"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.308667"], ["updated_at", "2020-04-22 05:36:35.308667"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.311481"], ["updated_at", "2020-04-22 05:36:35.311481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.312031"], ["updated_at", "2020-04-22 05:36:35.312031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.315718"], ["updated_at", "2020-04-22 05:36:35.315718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.316291"], ["updated_at", "2020-04-22 05:36:35.316291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_348657


 (0.1ms)  begin transaction

CommentTest: test_657506


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.328004"], ["updated_at", "2020-04-22 05:36:35.328004"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.328048"], ["updated_at", "2020-04-22 05:36:35.328048"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.330910"], ["updated_at", "2020-04-22 05:36:35.330910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.331923"], ["updated_at", "2020-04-22 05:36:35.331923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.332995"], ["updated_at", "2020-04-22 05:36:35.332995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.333989"], ["updated_at", "2020-04-22 05:36:35.333989"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (4.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_48876


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_118401


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.353474"], ["updated_at", "2020-04-22 05:36:35.353474"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.356701"], ["updated_at", "2020-04-22 05:36:35.356701"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.359270"], ["updated_at", "2020-04-22 05:36:35.359270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.360546"], ["updated_at", "2020-04-22 05:36:35.360546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.361533"], ["updated_at", "2020-04-22 05:36:35.361533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.362486"], ["updated_at", "2020-04-22 05:36:35.362486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_805519


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.374984"], ["updated_at", "2020-04-22 05:36:35.374984"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.378449"], ["updated_at", "2020-04-22 05:36:35.378449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.381498"], ["updated_at", "2020-04-22 05:36:35.381498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_750667


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.385971"], ["updated_at", "2020-04-22 05:36:35.385971"]]
 (1.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.393095"], ["updated_at", "2020-04-22 05:36:35.393095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_944090


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.395216"], ["updated_at", "2020-04-22 05:36:35.395216"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.395754"], ["updated_at", "2020-04-22 05:36:35.395754"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.398633"], ["updated_at", "2020-04-22 05:36:35.398633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_369565


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.402449"], ["updated_at", "2020-04-22 05:36:35.402449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.412842"], ["updated_at", "2020-04-22 05:36:35.412842"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.416679"], ["updated_at", "2020-04-22 05:36:35.416679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.419242"], ["updated_at", "2020-04-22 05:36:35.419242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_275083


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.424771"], ["updated_at", "2020-04-22 05:36:35.424771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.428217"], ["updated_at", "2020-04-22 05:36:35.428217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_661720


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.430880"], ["updated_at", "2020-04-22 05:36:35.430880"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.431986"], ["updated_at", "2020-04-22 05:36:35.431986"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.434633"], ["updated_at", "2020-04-22 05:36:35.434633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.438319"], ["updated_at", "2020-04-22 05:36:35.438319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_923370


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.448376"], ["updated_at", "2020-04-22 05:36:35.448376"]]
 (0.1ms)  begin transaction

CommentTest: test_787432


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.456218"], ["updated_at", "2020-04-22 05:36:35.456218"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.455262"], ["updated_at", "2020-04-22 05:36:35.455262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.459727"], ["updated_at", "2020-04-22 05:36:35.459727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.460004"], ["updated_at", "2020-04-22 05:36:35.460004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.462017"], ["updated_at", "2020-04-22 05:36:35.462017"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_572325


 (1.2ms)  begin transaction

CommentTest: test_466617


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.473847"], ["updated_at", "2020-04-22 05:36:35.473847"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.476298"], ["updated_at", "2020-04-22 05:36:35.476298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.475747"], ["updated_at", "2020-04-22 05:36:35.475747"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.478354"], ["updated_at", "2020-04-22 05:36:35.478354"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.478684"], ["updated_at", "2020-04-22 05:36:35.478684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.481598"], ["updated_at", "2020-04-22 05:36:35.481598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_645902


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.491162"], ["updated_at", "2020-04-22 05:36:35.491162"]]
 (0.1ms)  begin transaction

CommentTest: test_264953


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.493689"], ["updated_at", "2020-04-22 05:36:35.493689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.494618"], ["updated_at", "2020-04-22 05:36:35.494618"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.495699"], ["updated_at", "2020-04-22 05:36:35.495699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.497363"], ["updated_at", "2020-04-22 05:36:35.497363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.499596"], ["updated_at", "2020-04-22 05:36:35.499596"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_792441

Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.506469"], ["updated_at", "2020-04-22 05:36:35.506469"]]
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.510917"], ["updated_at", "2020-04-22 05:36:35.510917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_42675


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.513496"], ["updated_at", "2020-04-22 05:36:35.513496"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.517733"], ["updated_at", "2020-04-22 05:36:35.517733"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.521291"], ["updated_at", "2020-04-22 05:36:35.521291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.525479"], ["updated_at", "2020-04-22 05:36:35.525479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_529762


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.530430"], ["updated_at", "2020-04-22 05:36:35.530430"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.533144"], ["updated_at", "2020-04-22 05:36:35.533144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_232309


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.535173"], ["updated_at", "2020-04-22 05:36:35.535173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.534989"], ["updated_at", "2020-04-22 05:36:35.534989"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.538302"], ["updated_at", "2020-04-22 05:36:35.538302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.540894"], ["updated_at", "2020-04-22 05:36:35.540894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_244056


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.547150"], ["updated_at", "2020-04-22 05:36:35.547150"]]

CommentTest: test_145061


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.550610"], ["updated_at", "2020-04-22 05:36:35.550610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.550515"], ["updated_at", "2020-04-22 05:36:35.550515"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.552730"], ["updated_at", "2020-04-22 05:36:35.552730"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.553378"], ["updated_at", "2020-04-22 05:36:35.553378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.559134"], ["updated_at", "2020-04-22 05:36:35.559134"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_999913


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.568909"], ["updated_at", "2020-04-22 05:36:35.568909"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.573283"], ["updated_at", "2020-04-22 05:36:35.573283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_37789


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.576245"], ["updated_at", "2020-04-22 05:36:35.576245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.577378"], ["updated_at", "2020-04-22 05:36:35.577378"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.583543"], ["updated_at", "2020-04-22 05:36:35.583543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.586153"], ["updated_at", "2020-04-22 05:36:35.586153"]]
 (7.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_754259


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.597528"], ["updated_at", "2020-04-22 05:36:35.597528"]]
 (0.1ms)  begin transaction

CommentTest: test_625410


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.600408"], ["updated_at", "2020-04-22 05:36:35.600408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.600908"], ["updated_at", "2020-04-22 05:36:35.600908"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.602456"], ["updated_at", "2020-04-22 05:36:35.602456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.603892"], ["updated_at", "2020-04-22 05:36:35.603892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.606469"], ["updated_at", "2020-04-22 05:36:35.606469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_684543


 (0.1ms)  begin transaction

CommentTest: test_826015


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.615771"], ["updated_at", "2020-04-22 05:36:35.615771"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.616805"], ["updated_at", "2020-04-22 05:36:35.616805"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.618222"], ["updated_at", "2020-04-22 05:36:35.618222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.619464"], ["updated_at", "2020-04-22 05:36:35.619464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.620205"], ["updated_at", "2020-04-22 05:36:35.620205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.621794"], ["updated_at", "2020-04-22 05:36:35.621794"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_21754


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.630625"], ["updated_at", "2020-04-22 05:36:35.630625"]]
 (0.1ms)  begin transaction

CommentTest: test_731167


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.633515"], ["updated_at", "2020-04-22 05:36:35.633515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.633642"], ["updated_at", "2020-04-22 05:36:35.633642"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.635786"], ["updated_at", "2020-04-22 05:36:35.635786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.636691"], ["updated_at", "2020-04-22 05:36:35.636691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.639975"], ["updated_at", "2020-04-22 05:36:35.639975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_653350

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.646986"], ["updated_at", "2020-04-22 05:36:35.646986"]]
 (0.5ms)  begin transaction

CommentTest: test_336277


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.650277"], ["updated_at", "2020-04-22 05:36:35.650277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.650846"], ["updated_at", "2020-04-22 05:36:35.650846"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.653760"], ["updated_at", "2020-04-22 05:36:35.653760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.652678"], ["updated_at", "2020-04-22 05:36:35.652678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.658272"], ["updated_at", "2020-04-22 05:36:35.658272"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_718290


 (0.1ms)  begin transaction

CommentTest: test_834909


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.667545"], ["updated_at", "2020-04-22 05:36:35.667545"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.668426"], ["updated_at", "2020-04-22 05:36:35.668426"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.670542"], ["updated_at", "2020-04-22 05:36:35.670542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.671106"], ["updated_at", "2020-04-22 05:36:35.671106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.672915"], ["updated_at", "2020-04-22 05:36:35.672915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.673735"], ["updated_at", "2020-04-22 05:36:35.673735"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_295932


 (0.3ms)  begin transaction

CommentTest: test_291044


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.683202"], ["updated_at", "2020-04-22 05:36:35.683202"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.683928"], ["updated_at", "2020-04-22 05:36:35.683928"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.685953"], ["updated_at", "2020-04-22 05:36:35.685953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.686461"], ["updated_at", "2020-04-22 05:36:35.686461"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.688068"], ["updated_at", "2020-04-22 05:36:35.688068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.688571"], ["updated_at", "2020-04-22 05:36:35.688571"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_655278


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.696791"], ["updated_at", "2020-04-22 05:36:35.696791"]]
 (0.1ms)  begin transaction

CommentTest: test_304534


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.699511"], ["updated_at", "2020-04-22 05:36:35.699511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.699590"], ["updated_at", "2020-04-22 05:36:35.699590"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.701599"], ["updated_at", "2020-04-22 05:36:35.701599"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.701992"], ["updated_at", "2020-04-22 05:36:35.701992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.703948"], ["updated_at", "2020-04-22 05:36:35.703948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_429384


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.711889"], ["updated_at", "2020-04-22 05:36:35.711889"]]

CommentTest: test_314612


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.714661"], ["updated_at", "2020-04-22 05:36:35.714661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.714558"], ["updated_at", "2020-04-22 05:36:35.714558"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.716495"], ["updated_at", "2020-04-22 05:36:35.716495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.717265"], ["updated_at", "2020-04-22 05:36:35.717265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.719341"], ["updated_at", "2020-04-22 05:36:35.719341"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_459252


 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.731019"], ["updated_at", "2020-04-22 05:36:35.731019"]]
 (0.1ms)  begin transaction

CommentTest: test_280211


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.733621"], ["updated_at", "2020-04-22 05:36:35.733621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.734069"], ["updated_at", "2020-04-22 05:36:35.734069"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.735631"], ["updated_at", "2020-04-22 05:36:35.735631"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.736704"], ["updated_at", "2020-04-22 05:36:35.736704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.738752"], ["updated_at", "2020-04-22 05:36:35.738752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_472516


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.750451"], ["updated_at", "2020-04-22 05:36:35.750451"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.755667"], ["updated_at", "2020-04-22 05:36:35.755667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_253063


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.758798"], ["updated_at", "2020-04-22 05:36:35.758798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.758689"], ["updated_at", "2020-04-22 05:36:35.758689"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.761064"], ["updated_at", "2020-04-22 05:36:35.761064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.763867"], ["updated_at", "2020-04-22 05:36:35.763867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_802144


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.776668"], ["updated_at", "2020-04-22 05:36:35.776668"]]
 (0.1ms)  begin transaction

CommentTest: test_106095


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.779544"], ["updated_at", "2020-04-22 05:36:35.779544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.780116"], ["updated_at", "2020-04-22 05:36:35.780116"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.785549"], ["updated_at", "2020-04-22 05:36:35.785549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.787055"], ["updated_at", "2020-04-22 05:36:35.787055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.789113"], ["updated_at", "2020-04-22 05:36:35.789113"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_548166


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.797835"], ["updated_at", "2020-04-22 05:36:35.797835"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.800452"], ["updated_at", "2020-04-22 05:36:35.800452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.802438"], ["updated_at", "2020-04-22 05:36:35.802438"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_615973


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.809941"], ["updated_at", "2020-04-22 05:36:35.809941"]]
 (0.9ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.812822"], ["updated_at", "2020-04-22 05:36:35.812822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_90291


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.815337"], ["updated_at", "2020-04-22 05:36:35.815337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.816524"], ["updated_at", "2020-04-22 05:36:35.816524"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.821836"], ["updated_at", "2020-04-22 05:36:35.821836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_163997


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.825361"], ["updated_at", "2020-04-22 05:36:35.825361"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.825926"], ["updated_at", "2020-04-22 05:36:35.825926"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.831169"], ["updated_at", "2020-04-22 05:36:35.831169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_587810


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.833576"], ["updated_at", "2020-04-22 05:36:35.833576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.834788"], ["updated_at", "2020-04-22 05:36:35.834788"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.837993"], ["updated_at", "2020-04-22 05:36:35.837993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.842083"], ["updated_at", "2020-04-22 05:36:35.842083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_85296

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.847512"], ["updated_at", "2020-04-22 05:36:35.847512"]]
 (0.1ms)  begin transaction

CommentTest: test_344631


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.851036"], ["updated_at", "2020-04-22 05:36:35.851036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.853207"], ["updated_at", "2020-04-22 05:36:35.853207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.852390"], ["updated_at", "2020-04-22 05:36:35.852390"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.859794"], ["updated_at", "2020-04-22 05:36:35.859794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.862113"], ["updated_at", "2020-04-22 05:36:35.862113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_581358


 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.870990"], ["updated_at", "2020-04-22 05:36:35.870990"]]
 (0.1ms)  begin transaction

CommentTest: test_775461


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.874854"], ["updated_at", "2020-04-22 05:36:35.874854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.876935"], ["updated_at", "2020-04-22 05:36:35.876935"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.876657"], ["updated_at", "2020-04-22 05:36:35.876657"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.879781"], ["updated_at", "2020-04-22 05:36:35.879781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.882016"], ["updated_at", "2020-04-22 05:36:35.882016"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_934658


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.886641"], ["updated_at", "2020-04-22 05:36:35.886641"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.891526"], ["updated_at", "2020-04-22 05:36:35.891526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.893554"], ["updated_at", "2020-04-22 05:36:35.893554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_855687


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.897675"], ["updated_at", "2020-04-22 05:36:35.897675"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_285625


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.900585"], ["updated_at", "2020-04-22 05:36:35.900585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.903049"], ["updated_at", "2020-04-22 05:36:35.903049"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.902479"], ["updated_at", "2020-04-22 05:36:35.902479"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.908907"], ["updated_at", "2020-04-22 05:36:35.908907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.910907"], ["updated_at", "2020-04-22 05:36:35.910907"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_514765


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.918420"], ["updated_at", "2020-04-22 05:36:35.918420"]]
 (0.1ms)  begin transaction

CommentTest: test_739617


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.921969"], ["updated_at", "2020-04-22 05:36:35.921969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.924243"], ["updated_at", "2020-04-22 05:36:35.924243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.923694"], ["updated_at", "2020-04-22 05:36:35.923694"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.927314"], ["updated_at", "2020-04-22 05:36:35.927314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.929670"], ["updated_at", "2020-04-22 05:36:35.929670"]]
 (0.1ms)  begin transaction

CommentTest: test_360847


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.933090"], ["updated_at", "2020-04-22 05:36:35.933090"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.935885"], ["updated_at", "2020-04-22 05:36:35.935885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.939565"], ["updated_at", "2020-04-22 05:36:35.939565"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_773935


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.950969"], ["updated_at", "2020-04-22 05:36:35.950969"]]
 (7.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.954057"], ["updated_at", "2020-04-22 05:36:35.954057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.957126"], ["updated_at", "2020-04-22 05:36:35.957126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_683543


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.961406"], ["updated_at", "2020-04-22 05:36:35.961406"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_968481


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.964321"], ["updated_at", "2020-04-22 05:36:35.964321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.966940"], ["updated_at", "2020-04-22 05:36:35.966940"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.966536"], ["updated_at", "2020-04-22 05:36:35.966536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.969372"], ["updated_at", "2020-04-22 05:36:35.969372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.972245"], ["updated_at", "2020-04-22 05:36:35.972245"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_601646


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.978518"], ["updated_at", "2020-04-22 05:36:35.978518"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.980944"], ["updated_at", "2020-04-22 05:36:35.980944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_140097


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.982702"], ["updated_at", "2020-04-22 05:36:35.982702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.984052"], ["updated_at", "2020-04-22 05:36:35.984052"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.986885"], ["updated_at", "2020-04-22 05:36:35.986885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.988816"], ["updated_at", "2020-04-22 05:36:35.988816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_138219


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.992326"], ["updated_at", "2020-04-22 05:36:35.992326"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:35.995059"], ["updated_at", "2020-04-22 05:36:35.995059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:35.997232"], ["updated_at", "2020-04-22 05:36:35.997232"]]
 (0.1ms)  begin transaction

CommentTest: test_920843


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:35.999801"], ["updated_at", "2020-04-22 05:36:35.999801"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.002856"], ["updated_at", "2020-04-22 05:36:36.002856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_864943


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.012362"], ["updated_at", "2020-04-22 05:36:36.012362"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.013595"], ["updated_at", "2020-04-22 05:36:36.013595"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.016672"], ["updated_at", "2020-04-22 05:36:36.016672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.023865"], ["updated_at", "2020-04-22 05:36:36.023865"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_631765


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.034333"], ["updated_at", "2020-04-22 05:36:36.034333"]]
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.037049"], ["updated_at", "2020-04-22 05:36:36.037049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_447137


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.039113"], ["updated_at", "2020-04-22 05:36:36.039113"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.039779"], ["updated_at", "2020-04-22 05:36:36.039779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.044728"], ["updated_at", "2020-04-22 05:36:36.044728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.047037"], ["updated_at", "2020-04-22 05:36:36.047037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_60468

 (3.7ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_97339


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.059468"], ["updated_at", "2020-04-22 05:36:36.059468"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.064112"], ["updated_at", "2020-04-22 05:36:36.064112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.063951"], ["updated_at", "2020-04-22 05:36:36.063951"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.066630"], ["updated_at", "2020-04-22 05:36:36.066630"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.069705"], ["updated_at", "2020-04-22 05:36:36.069705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.072758"], ["updated_at", "2020-04-22 05:36:36.072758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_633300


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.080234"], ["updated_at", "2020-04-22 05:36:36.080234"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.083523"], ["updated_at", "2020-04-22 05:36:36.083523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.085820"], ["updated_at", "2020-04-22 05:36:36.085820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_677560


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.094402"], ["updated_at", "2020-04-22 05:36:36.094402"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.097106"], ["updated_at", "2020-04-22 05:36:36.097106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.099077"], ["updated_at", "2020-04-22 05:36:36.099077"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_422674


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.105653"], ["updated_at", "2020-04-22 05:36:36.105653"]]
 (0.1ms)  begin transaction

CommentTest: test_518165


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.109912"], ["updated_at", "2020-04-22 05:36:36.109912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.111834"], ["updated_at", "2020-04-22 05:36:36.111834"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.111512"], ["updated_at", "2020-04-22 05:36:36.111512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.113905"], ["updated_at", "2020-04-22 05:36:36.113905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.115752"], ["updated_at", "2020-04-22 05:36:36.115752"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_670188


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.121163"], ["updated_at", "2020-04-22 05:36:36.121163"]]
 (0.3ms)  begin transaction

CommentTest: test_329916


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.124794"], ["updated_at", "2020-04-22 05:36:36.124794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.125591"], ["updated_at", "2020-04-22 05:36:36.125591"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.128724"], ["updated_at", "2020-04-22 05:36:36.128724"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.128903"], ["updated_at", "2020-04-22 05:36:36.128903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.131699"], ["updated_at", "2020-04-22 05:36:36.131699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_910607

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_592551


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.143108"], ["updated_at", "2020-04-22 05:36:36.143108"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.139838"], ["updated_at", "2020-04-22 05:36:36.139838"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.145853"], ["updated_at", "2020-04-22 05:36:36.145853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.146116"], ["updated_at", "2020-04-22 05:36:36.146116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.148179"], ["updated_at", "2020-04-22 05:36:36.148179"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.149656"], ["updated_at", "2020-04-22 05:36:36.149656"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (6.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_848625


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_364371


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.170720"], ["updated_at", "2020-04-22 05:36:36.170720"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.173461"], ["updated_at", "2020-04-22 05:36:36.173461"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.174360"], ["updated_at", "2020-04-22 05:36:36.174360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.176113"], ["updated_at", "2020-04-22 05:36:36.176113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.176390"], ["updated_at", "2020-04-22 05:36:36.176390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.178149"], ["updated_at", "2020-04-22 05:36:36.178149"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_167062


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_150765


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.189955"], ["updated_at", "2020-04-22 05:36:36.189955"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.197156"], ["updated_at", "2020-04-22 05:36:36.197156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.196853"], ["updated_at", "2020-04-22 05:36:36.196853"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.199184"], ["updated_at", "2020-04-22 05:36:36.199184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.199711"], ["updated_at", "2020-04-22 05:36:36.199711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.202762"], ["updated_at", "2020-04-22 05:36:36.202762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_942581


 (0.1ms)  SAVEPOINT active_record_1
 (11.0ms)  rollback transaction
Course Create (11.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.219095"], ["updated_at", "2020-04-22 05:36:36.219095"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.233571"], ["updated_at", "2020-04-22 05:36:36.233571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_109275


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.235906"], ["updated_at", "2020-04-22 05:36:36.235906"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.236347"], ["updated_at", "2020-04-22 05:36:36.236347"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.239732"], ["updated_at", "2020-04-22 05:36:36.239732"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.244476"], ["updated_at", "2020-04-22 05:36:36.244476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_540232


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.248348"], ["updated_at", "2020-04-22 05:36:36.248348"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.251545"], ["updated_at", "2020-04-22 05:36:36.251545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_354070


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.254310"], ["updated_at", "2020-04-22 05:36:36.254310"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.258203"], ["updated_at", "2020-04-22 05:36:36.258203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.259103"], ["updated_at", "2020-04-22 05:36:36.259103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.261127"], ["updated_at", "2020-04-22 05:36:36.261127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_777442


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.268940"], ["updated_at", "2020-04-22 05:36:36.268940"]]
 (1.5ms)  begin transaction

CommentTest: test_401592


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.273694"], ["updated_at", "2020-04-22 05:36:36.273694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.275849"], ["updated_at", "2020-04-22 05:36:36.275849"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.276703"], ["updated_at", "2020-04-22 05:36:36.276703"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.278659"], ["updated_at", "2020-04-22 05:36:36.278659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.280754"], ["updated_at", "2020-04-22 05:36:36.280754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_486861


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.285205"], ["updated_at", "2020-04-22 05:36:36.285205"]]
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.288915"], ["updated_at", "2020-04-22 05:36:36.288915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_675955


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.294599"], ["updated_at", "2020-04-22 05:36:36.294599"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.297666"], ["updated_at", "2020-04-22 05:36:36.297666"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.300459"], ["updated_at", "2020-04-22 05:36:36.300459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (6.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.302707"], ["updated_at", "2020-04-22 05:36:36.302707"]]
 (0.2ms)  begin transaction

CommentTest: test_85959


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.312270"], ["updated_at", "2020-04-22 05:36:36.312270"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.314772"], ["updated_at", "2020-04-22 05:36:36.314772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.317379"], ["updated_at", "2020-04-22 05:36:36.317379"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_332798


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.326860"], ["updated_at", "2020-04-22 05:36:36.326860"]]

CommentTest: test_139892


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.329942"], ["updated_at", "2020-04-22 05:36:36.329942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.329600"], ["updated_at", "2020-04-22 05:36:36.329600"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.331891"], ["updated_at", "2020-04-22 05:36:36.331891"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.332080"], ["updated_at", "2020-04-22 05:36:36.332080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.333983"], ["updated_at", "2020-04-22 05:36:36.333983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_241559



CommentTest: test_49780


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.344606"], ["updated_at", "2020-04-22 05:36:36.344606"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.344707"], ["updated_at", "2020-04-22 05:36:36.344707"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.347032"], ["updated_at", "2020-04-22 05:36:36.347032"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.347136"], ["updated_at", "2020-04-22 05:36:36.347136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.348848"], ["updated_at", "2020-04-22 05:36:36.348848"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.348921"], ["updated_at", "2020-04-22 05:36:36.348921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_817004


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.362292"], ["updated_at", "2020-04-22 05:36:36.362292"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.365544"], ["updated_at", "2020-04-22 05:36:36.365544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.368078"], ["updated_at", "2020-04-22 05:36:36.368078"]]
 (10.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_413785


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.373635"], ["updated_at", "2020-04-22 05:36:36.373635"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.377377"], ["updated_at", "2020-04-22 05:36:36.377377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_878335


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.379461"], ["updated_at", "2020-04-22 05:36:36.379461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.379914"], ["updated_at", "2020-04-22 05:36:36.379914"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.382535"], ["updated_at", "2020-04-22 05:36:36.382535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.384562"], ["updated_at", "2020-04-22 05:36:36.384562"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_899848


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.390479"], ["updated_at", "2020-04-22 05:36:36.390479"]]
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_987601


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.394662"], ["updated_at", "2020-04-22 05:36:36.394662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.396524"], ["updated_at", "2020-04-22 05:36:36.396524"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.397091"], ["updated_at", "2020-04-22 05:36:36.397091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.398807"], ["updated_at", "2020-04-22 05:36:36.398807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.400579"], ["updated_at", "2020-04-22 05:36:36.400579"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_265490


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.410742"], ["updated_at", "2020-04-22 05:36:36.410742"]]
 (0.0ms)  begin transaction

CommentTest: test_6295


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.413766"], ["updated_at", "2020-04-22 05:36:36.413766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.413710"], ["updated_at", "2020-04-22 05:36:36.413710"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.415652"], ["updated_at", "2020-04-22 05:36:36.415652"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.416680"], ["updated_at", "2020-04-22 05:36:36.416680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.418569"], ["updated_at", "2020-04-22 05:36:36.418569"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_719651


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.429708"], ["updated_at", "2020-04-22 05:36:36.429708"]]
 (6.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.434023"], ["updated_at", "2020-04-22 05:36:36.434023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_657163

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.436286"], ["updated_at", "2020-04-22 05:36:36.436286"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.445122"], ["updated_at", "2020-04-22 05:36:36.445122"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.448474"], ["updated_at", "2020-04-22 05:36:36.448474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.452156"], ["updated_at", "2020-04-22 05:36:36.452156"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_665800


 (2.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.463929"], ["updated_at", "2020-04-22 05:36:36.463929"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.466665"], ["updated_at", "2020-04-22 05:36:36.466665"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.469314"], ["updated_at", "2020-04-22 05:36:36.469314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_934897


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.477440"], ["updated_at", "2020-04-22 05:36:36.477440"]]
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.480965"], ["updated_at", "2020-04-22 05:36:36.480965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_653200


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.482974"], ["updated_at", "2020-04-22 05:36:36.482974"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.482940"], ["updated_at", "2020-04-22 05:36:36.482940"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.485385"], ["updated_at", "2020-04-22 05:36:36.485385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.487723"], ["updated_at", "2020-04-22 05:36:36.487723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_288324


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.493942"], ["updated_at", "2020-04-22 05:36:36.493942"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.496604"], ["updated_at", "2020-04-22 05:36:36.496604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_766724


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.498676"], ["updated_at", "2020-04-22 05:36:36.498676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.499582"], ["updated_at", "2020-04-22 05:36:36.499582"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.501905"], ["updated_at", "2020-04-22 05:36:36.501905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.504891"], ["updated_at", "2020-04-22 05:36:36.504891"]]
 (1.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_482750


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.512647"], ["updated_at", "2020-04-22 05:36:36.512647"]]
 (0.1ms)  begin transaction

CommentTest: test_729048


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.515990"], ["updated_at", "2020-04-22 05:36:36.515990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.516921"], ["updated_at", "2020-04-22 05:36:36.516921"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.518047"], ["updated_at", "2020-04-22 05:36:36.518047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.520165"], ["updated_at", "2020-04-22 05:36:36.520165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.526475"], ["updated_at", "2020-04-22 05:36:36.526475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_288196


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.529048"], ["updated_at", "2020-04-22 05:36:36.529048"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.532349"], ["updated_at", "2020-04-22 05:36:36.532349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.534323"], ["updated_at", "2020-04-22 05:36:36.534323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_216049


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.537877"], ["updated_at", "2020-04-22 05:36:36.537877"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.542573"], ["updated_at", "2020-04-22 05:36:36.542573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_789798


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.544670"], ["updated_at", "2020-04-22 05:36:36.544670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.547030"], ["updated_at", "2020-04-22 05:36:36.547030"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.549468"], ["updated_at", "2020-04-22 05:36:36.549468"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.551426"], ["updated_at", "2020-04-22 05:36:36.551426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_833853


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.560793"], ["updated_at", "2020-04-22 05:36:36.560793"]]
 (0.1ms)  begin transaction

CommentTest: test_751485


Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.566917"], ["updated_at", "2020-04-22 05:36:36.566917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.570336"], ["updated_at", "2020-04-22 05:36:36.570336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.569391"], ["updated_at", "2020-04-22 05:36:36.569391"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.580128"], ["updated_at", "2020-04-22 05:36:36.580128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.582451"], ["updated_at", "2020-04-22 05:36:36.582451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_946309


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.597331"], ["updated_at", "2020-04-22 05:36:36.597331"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.600290"], ["updated_at", "2020-04-22 05:36:36.600290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.602594"], ["updated_at", "2020-04-22 05:36:36.602594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_413095


 (17.1ms)  begin transaction

CommentTest: test_923153


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.637331"], ["updated_at", "2020-04-22 05:36:36.637331"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.644067"], ["updated_at", "2020-04-22 05:36:36.644067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.646513"], ["updated_at", "2020-04-22 05:36:36.646513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_493152


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.666366"], ["updated_at", "2020-04-22 05:36:36.666366"]]
Course Create (23.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.618375"], ["updated_at", "2020-04-22 05:36:36.618375"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.669428"], ["updated_at", "2020-04-22 05:36:36.669428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.674320"], ["updated_at", "2020-04-22 05:36:36.674320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.675962"], ["updated_at", "2020-04-22 05:36:36.675962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.678632"], ["updated_at", "2020-04-22 05:36:36.678632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_985142


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.686189"], ["updated_at", "2020-04-22 05:36:36.686189"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.690612"], ["updated_at", "2020-04-22 05:36:36.690612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.693218"], ["updated_at", "2020-04-22 05:36:36.693218"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_702136


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.699240"], ["updated_at", "2020-04-22 05:36:36.699240"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.705162"], ["updated_at", "2020-04-22 05:36:36.705162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.712227"], ["updated_at", "2020-04-22 05:36:36.712227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_771336


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.731011"], ["updated_at", "2020-04-22 05:36:36.731011"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.733854"], ["updated_at", "2020-04-22 05:36:36.733854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.736039"], ["updated_at", "2020-04-22 05:36:36.736039"]]

CommentTest: test_609432


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.745702"], ["updated_at", "2020-04-22 05:36:36.745702"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.748485"], ["updated_at", "2020-04-22 05:36:36.748485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.750901"], ["updated_at", "2020-04-22 05:36:36.750901"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_925925


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.758410"], ["updated_at", "2020-04-22 05:36:36.758410"]]
 (0.1ms)  begin transaction

CommentTest: test_749730


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.762389"], ["updated_at", "2020-04-22 05:36:36.762389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.764817"], ["updated_at", "2020-04-22 05:36:36.764817"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.767869"], ["updated_at", "2020-04-22 05:36:36.767869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.770753"], ["updated_at", "2020-04-22 05:36:36.770753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.778211"], ["updated_at", "2020-04-22 05:36:36.778211"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_723136


 (0.2ms)  SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.923033"], ["updated_at", "2020-04-22 05:36:36.923033"]]
 (0.1ms)  begin transaction

CommentTest: test_975011


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.931472"], ["updated_at", "2020-04-22 05:36:36.931472"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.948064"], ["updated_at", "2020-04-22 05:36:36.948064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.947308"], ["updated_at", "2020-04-22 05:36:36.947308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.950071"], ["updated_at", "2020-04-22 05:36:36.950071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.951554"], ["updated_at", "2020-04-22 05:36:36.951554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_607757


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.962566"], ["updated_at", "2020-04-22 05:36:36.962566"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.965808"], ["updated_at", "2020-04-22 05:36:36.965808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.968148"], ["updated_at", "2020-04-22 05:36:36.968148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_178577


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.975561"], ["updated_at", "2020-04-22 05:36:36.975561"]]
 (0.1ms)  begin transaction

CommentTest: test_432592


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.979295"], ["updated_at", "2020-04-22 05:36:36.979295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.979787"], ["updated_at", "2020-04-22 05:36:36.979787"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.981904"], ["updated_at", "2020-04-22 05:36:36.981904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:36.982463"], ["updated_at", "2020-04-22 05:36:36.982463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:36.984517"], ["updated_at", "2020-04-22 05:36:36.984517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_215558


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:36.998302"], ["updated_at", "2020-04-22 05:36:36.998302"]]
 (0.1ms)  begin transaction

CommentTest: test_625353


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.001622"], ["updated_at", "2020-04-22 05:36:37.001622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.003836"], ["updated_at", "2020-04-22 05:36:37.003836"]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.002019"], ["updated_at", "2020-04-22 05:36:37.002019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.007543"], ["updated_at", "2020-04-22 05:36:37.007543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.010441"], ["updated_at", "2020-04-22 05:36:37.010441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_519438


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.016360"], ["updated_at", "2020-04-22 05:36:37.016360"]]
 (0.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.019005"], ["updated_at", "2020-04-22 05:36:37.019005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_374468


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.021685"], ["updated_at", "2020-04-22 05:36:37.021685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.023767"], ["updated_at", "2020-04-22 05:36:37.023767"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.028163"], ["updated_at", "2020-04-22 05:36:37.028163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.030238"], ["updated_at", "2020-04-22 05:36:37.030238"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_784092


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.034396"], ["updated_at", "2020-04-22 05:36:37.034396"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.037749"], ["updated_at", "2020-04-22 05:36:37.037749"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.039984"], ["updated_at", "2020-04-22 05:36:37.039984"]]
 (1.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_836143


 (0.2ms)  begin transaction

CommentTest: test_894332


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.052355"], ["updated_at", "2020-04-22 05:36:37.052355"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.056196"], ["updated_at", "2020-04-22 05:36:37.056196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.055947"], ["updated_at", "2020-04-22 05:36:37.055947"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.065465"], ["updated_at", "2020-04-22 05:36:37.065465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.067729"], ["updated_at", "2020-04-22 05:36:37.067729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.070134"], ["updated_at", "2020-04-22 05:36:37.070134"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_123030


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.083213"], ["updated_at", "2020-04-22 05:36:37.083213"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.089821"], ["updated_at", "2020-04-22 05:36:37.089821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_888232


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.092909"], ["updated_at", "2020-04-22 05:36:37.092909"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.092932"], ["updated_at", "2020-04-22 05:36:37.092932"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.096964"], ["updated_at", "2020-04-22 05:36:37.096964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.100764"], ["updated_at", "2020-04-22 05:36:37.100764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_895103


 (0.1ms)  begin transaction

CommentTest: test_243621


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.121776"], ["updated_at", "2020-04-22 05:36:37.121776"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.124904"], ["updated_at", "2020-04-22 05:36:37.124904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.122980"], ["updated_at", "2020-04-22 05:36:37.122980"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.128356"], ["updated_at", "2020-04-22 05:36:37.128356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.130552"], ["updated_at", "2020-04-22 05:36:37.130552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.133240"], ["updated_at", "2020-04-22 05:36:37.133240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (8.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_661337


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.147928"], ["updated_at", "2020-04-22 05:36:37.147928"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.153104"], ["updated_at", "2020-04-22 05:36:37.153104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.158522"], ["updated_at", "2020-04-22 05:36:37.158522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (22.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_319582


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_414053


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.170130"], ["updated_at", "2020-04-22 05:36:37.170130"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.173959"], ["updated_at", "2020-04-22 05:36:37.173959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.173847"], ["updated_at", "2020-04-22 05:36:37.173847"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.176512"], ["updated_at", "2020-04-22 05:36:37.176512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.177811"], ["updated_at", "2020-04-22 05:36:37.177811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.182189"], ["updated_at", "2020-04-22 05:36:37.182189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_681480


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.195841"], ["updated_at", "2020-04-22 05:36:37.195841"]]
 (0.1ms)  begin transaction

CommentTest: test_740379


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.199052"], ["updated_at", "2020-04-22 05:36:37.199052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.199158"], ["updated_at", "2020-04-22 05:36:37.199158"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.201526"], ["updated_at", "2020-04-22 05:36:37.201526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.205007"], ["updated_at", "2020-04-22 05:36:37.205007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.207063"], ["updated_at", "2020-04-22 05:36:37.207063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_101430


 (0.1ms)  SAVEPOINT active_record_1
 (6.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.218067"], ["updated_at", "2020-04-22 05:36:37.218067"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.221205"], ["updated_at", "2020-04-22 05:36:37.221205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.226737"], ["updated_at", "2020-04-22 05:36:37.226737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_835511


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.232829"], ["updated_at", "2020-04-22 05:36:37.232829"]]
 (0.2ms)  begin transaction

CommentTest: test_681675


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.236384"], ["updated_at", "2020-04-22 05:36:37.236384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.238076"], ["updated_at", "2020-04-22 05:36:37.238076"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.239338"], ["updated_at", "2020-04-22 05:36:37.239338"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.242098"], ["updated_at", "2020-04-22 05:36:37.242098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.244629"], ["updated_at", "2020-04-22 05:36:37.244629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_221481


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_22273


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.254234"], ["updated_at", "2020-04-22 05:36:37.254234"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.257779"], ["updated_at", "2020-04-22 05:36:37.257779"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.258785"], ["updated_at", "2020-04-22 05:36:37.258785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.260579"], ["updated_at", "2020-04-22 05:36:37.260579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.261536"], ["updated_at", "2020-04-22 05:36:37.261536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.263015"], ["updated_at", "2020-04-22 05:36:37.263015"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_714229


 (0.1ms)  begin transaction

CommentTest: test_221552


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.279533"], ["updated_at", "2020-04-22 05:36:37.279533"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.280913"], ["updated_at", "2020-04-22 05:36:37.280913"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.282520"], ["updated_at", "2020-04-22 05:36:37.282520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.284984"], ["updated_at", "2020-04-22 05:36:37.284984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.285054"], ["updated_at", "2020-04-22 05:36:37.285054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.287438"], ["updated_at", "2020-04-22 05:36:37.287438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (1.1ms)  rollback transaction

CommentTest: test_411752


 (0.1ms)  begin transaction

CommentTest: test_635138


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.306634"], ["updated_at", "2020-04-22 05:36:37.306634"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.312261"], ["updated_at", "2020-04-22 05:36:37.312261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.309587"], ["updated_at", "2020-04-22 05:36:37.309587"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.315039"], ["updated_at", "2020-04-22 05:36:37.315039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.317530"], ["updated_at", "2020-04-22 05:36:37.317530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.314659"], ["updated_at", "2020-04-22 05:36:37.314659"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_676974


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_446539


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.336617"], ["updated_at", "2020-04-22 05:36:37.336617"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.340040"], ["updated_at", "2020-04-22 05:36:37.340040"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.341144"], ["updated_at", "2020-04-22 05:36:37.341144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.344018"], ["updated_at", "2020-04-22 05:36:37.344018"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.345773"], ["updated_at", "2020-04-22 05:36:37.345773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.348020"], ["updated_at", "2020-04-22 05:36:37.348020"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_804111


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.354413"], ["updated_at", "2020-04-22 05:36:37.354413"]]
 (0.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.357164"], ["updated_at", "2020-04-22 05:36:37.357164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_446682


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.360227"], ["updated_at", "2020-04-22 05:36:37.360227"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.361395"], ["updated_at", "2020-04-22 05:36:37.361395"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.365197"], ["updated_at", "2020-04-22 05:36:37.365197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.367699"], ["updated_at", "2020-04-22 05:36:37.367699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_358658


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.379320"], ["updated_at", "2020-04-22 05:36:37.379320"]]
 (0.1ms)  begin transaction

CommentTest: test_359454


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.382269"], ["updated_at", "2020-04-22 05:36:37.382269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.385411"], ["updated_at", "2020-04-22 05:36:37.385411"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.383464"], ["updated_at", "2020-04-22 05:36:37.383464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.387507"], ["updated_at", "2020-04-22 05:36:37.387507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.391129"], ["updated_at", "2020-04-22 05:36:37.391129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_94421


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.396811"], ["updated_at", "2020-04-22 05:36:37.396811"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.399201"], ["updated_at", "2020-04-22 05:36:37.399201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.401883"], ["updated_at", "2020-04-22 05:36:37.401883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_761515


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_119212


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.414961"], ["updated_at", "2020-04-22 05:36:37.414961"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.418460"], ["updated_at", "2020-04-22 05:36:37.418460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.418696"], ["updated_at", "2020-04-22 05:36:37.418696"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.421855"], ["updated_at", "2020-04-22 05:36:37.421855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.425676"], ["updated_at", "2020-04-22 05:36:37.425676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.429397"], ["updated_at", "2020-04-22 05:36:37.429397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (9.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_192735


 (3.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.440620"], ["updated_at", "2020-04-22 05:36:37.440620"]]
 (0.1ms)  begin transaction

CommentTest: test_700445

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.445506"], ["updated_at", "2020-04-22 05:36:37.445506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.447875"], ["updated_at", "2020-04-22 05:36:37.447875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.447353"], ["updated_at", "2020-04-22 05:36:37.447353"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.461775"], ["updated_at", "2020-04-22 05:36:37.461775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_89353


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.466281"], ["updated_at", "2020-04-22 05:36:37.466281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.467725"], ["updated_at", "2020-04-22 05:36:37.467725"]]
 (5.2ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.484773"], ["updated_at", "2020-04-22 05:36:37.484773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_590890


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.489000"], ["updated_at", "2020-04-22 05:36:37.489000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.491465"], ["updated_at", "2020-04-22 05:36:37.491465"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.495264"], ["updated_at", "2020-04-22 05:36:37.495264"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.497509"], ["updated_at", "2020-04-22 05:36:37.497509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_799554


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.501459"], ["updated_at", "2020-04-22 05:36:37.501459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.505465"], ["updated_at", "2020-04-22 05:36:37.505465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_792247


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.508212"], ["updated_at", "2020-04-22 05:36:37.508212"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.509076"], ["updated_at", "2020-04-22 05:36:37.509076"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.512427"], ["updated_at", "2020-04-22 05:36:37.512427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.517367"], ["updated_at", "2020-04-22 05:36:37.517367"]]
 (0.2ms)  begin transaction

CommentTest: test_850351

 (0.3ms)  RELEASE SAVEPOINT active_record_1

 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.523432"], ["updated_at", "2020-04-22 05:36:37.523432"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.526917"], ["updated_at", "2020-04-22 05:36:37.526917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.529136"], ["updated_at", "2020-04-22 05:36:37.529136"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_444838


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_409548


 (1.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.539930"], ["updated_at", "2020-04-22 05:36:37.539930"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.544717"], ["updated_at", "2020-04-22 05:36:37.544717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.547308"], ["updated_at", "2020-04-22 05:36:37.547308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.536006"], ["updated_at", "2020-04-22 05:36:37.536006"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.550167"], ["updated_at", "2020-04-22 05:36:37.550167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.552727"], ["updated_at", "2020-04-22 05:36:37.552727"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (21.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_475103


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.578692"], ["updated_at", "2020-04-22 05:36:37.578692"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.581995"], ["updated_at", "2020-04-22 05:36:37.581995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_797499


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.584339"], ["updated_at", "2020-04-22 05:36:37.584339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.585241"], ["updated_at", "2020-04-22 05:36:37.585241"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.588902"], ["updated_at", "2020-04-22 05:36:37.588902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.591590"], ["updated_at", "2020-04-22 05:36:37.591590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_348129


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.594969"], ["updated_at", "2020-04-22 05:36:37.594969"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.598608"], ["updated_at", "2020-04-22 05:36:37.598608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.601036"], ["updated_at", "2020-04-22 05:36:37.601036"]]
 (1.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_210216


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.606043"], ["updated_at", "2020-04-22 05:36:37.606043"]]
 (0.1ms)  begin transaction

CommentTest: test_425904


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.612859"], ["updated_at", "2020-04-22 05:36:37.612859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.612918"], ["updated_at", "2020-04-22 05:36:37.612918"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.615890"], ["updated_at", "2020-04-22 05:36:37.615890"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.616378"], ["updated_at", "2020-04-22 05:36:37.616378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.618610"], ["updated_at", "2020-04-22 05:36:37.618610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_776327


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.627698"], ["updated_at", "2020-04-22 05:36:37.627698"]]
 (0.1ms)  begin transaction

CommentTest: test_793416


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.630984"], ["updated_at", "2020-04-22 05:36:37.630984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.632816"], ["updated_at", "2020-04-22 05:36:37.632816"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.633474"], ["updated_at", "2020-04-22 05:36:37.633474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.635523"], ["updated_at", "2020-04-22 05:36:37.635523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.637746"], ["updated_at", "2020-04-22 05:36:37.637746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_469315


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.648003"], ["updated_at", "2020-04-22 05:36:37.648003"]]

CommentTest: test_384463


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.651489"], ["updated_at", "2020-04-22 05:36:37.651489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.651241"], ["updated_at", "2020-04-22 05:36:37.651241"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.654994"], ["updated_at", "2020-04-22 05:36:37.654994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.653556"], ["updated_at", "2020-04-22 05:36:37.653556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.657681"], ["updated_at", "2020-04-22 05:36:37.657681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_519605


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.666633"], ["updated_at", "2020-04-22 05:36:37.666633"]]
 (0.2ms)  begin transaction

CommentTest: test_25606


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.669580"], ["updated_at", "2020-04-22 05:36:37.669580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.669481"], ["updated_at", "2020-04-22 05:36:37.669481"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.672472"], ["updated_at", "2020-04-22 05:36:37.672472"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.672867"], ["updated_at", "2020-04-22 05:36:37.672867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.674874"], ["updated_at", "2020-04-22 05:36:37.674874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_174541


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.684983"], ["updated_at", "2020-04-22 05:36:37.684983"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.687868"], ["updated_at", "2020-04-22 05:36:37.687868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.689444"], ["updated_at", "2020-04-22 05:36:37.689444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_611144

 (0.5ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.697419"], ["updated_at", "2020-04-22 05:36:37.697419"]]
 (0.1ms)  begin transaction

CommentTest: test_973414


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.700428"], ["updated_at", "2020-04-22 05:36:37.700428"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.700829"], ["updated_at", "2020-04-22 05:36:37.700829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.703017"], ["updated_at", "2020-04-22 05:36:37.703017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.703748"], ["updated_at", "2020-04-22 05:36:37.703748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.706057"], ["updated_at", "2020-04-22 05:36:37.706057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_453499


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.715975"], ["updated_at", "2020-04-22 05:36:37.715975"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.718997"], ["updated_at", "2020-04-22 05:36:37.718997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.722757"], ["updated_at", "2020-04-22 05:36:37.722757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_609451


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.731650"], ["updated_at", "2020-04-22 05:36:37.731650"]]
 (0.2ms)  begin transaction

CommentTest: test_725647


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.735056"], ["updated_at", "2020-04-22 05:36:37.735056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.736536"], ["updated_at", "2020-04-22 05:36:37.736536"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.737630"], ["updated_at", "2020-04-22 05:36:37.737630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.739914"], ["updated_at", "2020-04-22 05:36:37.739914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.742170"], ["updated_at", "2020-04-22 05:36:37.742170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_848172


 (0.1ms)  begin transaction

CommentTest: test_806289


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.762923"], ["updated_at", "2020-04-22 05:36:37.762923"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.763875"], ["updated_at", "2020-04-22 05:36:37.763875"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.766736"], ["updated_at", "2020-04-22 05:36:37.766736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.767499"], ["updated_at", "2020-04-22 05:36:37.767499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.769498"], ["updated_at", "2020-04-22 05:36:37.769498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.772170"], ["updated_at", "2020-04-22 05:36:37.772170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_17771


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.785240"], ["updated_at", "2020-04-22 05:36:37.785240"]]
 (0.1ms)  begin transaction

CommentTest: test_963469


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.788112"], ["updated_at", "2020-04-22 05:36:37.788112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.790451"], ["updated_at", "2020-04-22 05:36:37.790451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.790763"], ["updated_at", "2020-04-22 05:36:37.790763"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.797347"], ["updated_at", "2020-04-22 05:36:37.797347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.799787"], ["updated_at", "2020-04-22 05:36:37.799787"]]

CommentTest: test_656377


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.802145"], ["updated_at", "2020-04-22 05:36:37.802145"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.806687"], ["updated_at", "2020-04-22 05:36:37.806687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.812666"], ["updated_at", "2020-04-22 05:36:37.812666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_418796


 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.824031"], ["updated_at", "2020-04-22 05:36:37.824031"]]
 (3.4ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.839638"], ["updated_at", "2020-04-22 05:36:37.839638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_231967


Recording Create (5.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.848754"], ["updated_at", "2020-04-22 05:36:37.848754"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:37.868763"], ["updated_at", "2020-04-22 05:36:37.868763"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:37.887021"], ["updated_at", "2020-04-22 05:36:37.887021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:37.922802"], ["updated_at", "2020-04-22 05:36:37.922802"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  begin transaction
 (1.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_344650


 (3.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.013104"], ["updated_at", "2020-04-22 05:36:38.013104"]]
 (0.3ms)  begin transaction

CommentTest: test_789987


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.023958"], ["updated_at", "2020-04-22 05:36:38.023958"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.050711"], ["updated_at", "2020-04-22 05:36:38.050711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.041866"], ["updated_at", "2020-04-22 05:36:38.041866"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.073475"], ["updated_at", "2020-04-22 05:36:38.073475"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.083894"], ["updated_at", "2020-04-22 05:36:38.083894"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (29.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (47.5ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_379188


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.213467"], ["updated_at", "2020-04-22 05:36:38.213467"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.228989"], ["updated_at", "2020-04-22 05:36:38.228989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (38.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_437466


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.245577"], ["updated_at", "2020-04-22 05:36:38.245577"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.256218"], ["updated_at", "2020-04-22 05:36:38.256218"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.269243"], ["updated_at", "2020-04-22 05:36:38.269243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.277211"], ["updated_at", "2020-04-22 05:36:38.277211"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (22.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_134038


 (0.2ms)  begin transaction

CommentTest: test_359595


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.345051"], ["updated_at", "2020-04-22 05:36:38.345051"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.355717"], ["updated_at", "2020-04-22 05:36:38.355717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.364609"], ["updated_at", "2020-04-22 05:36:38.364609"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (37.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.335291"], ["updated_at", "2020-04-22 05:36:38.335291"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.393489"], ["updated_at", "2020-04-22 05:36:38.393489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.419198"], ["updated_at", "2020-04-22 05:36:38.419198"]]
 (1.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_278271


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.456865"], ["updated_at", "2020-04-22 05:36:38.456865"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.471000"], ["updated_at", "2020-04-22 05:36:38.471000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (15.9ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.484582"], ["updated_at", "2020-04-22 05:36:38.484582"]]
 (0.3ms)  begin transaction

CommentTest: test_873964


 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.516054"], ["updated_at", "2020-04-22 05:36:38.516054"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.538094"], ["updated_at", "2020-04-22 05:36:38.538094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_926650


Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.545883"], ["updated_at", "2020-04-22 05:36:38.545883"]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (98.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.574934"], ["updated_at", "2020-04-22 05:36:38.574934"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.694707"], ["updated_at", "2020-04-22 05:36:38.694707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
 (11.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_317591


 (0.3ms)  SAVEPOINT active_record_1
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.740973"], ["updated_at", "2020-04-22 05:36:38.740973"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.751187"], ["updated_at", "2020-04-22 05:36:38.751187"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.767570"], ["updated_at", "2020-04-22 05:36:38.767570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.802935"], ["updated_at", "2020-04-22 05:36:38.802935"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (13.0ms)  SELECT sqlite_version(*)
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_334396


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.845088"], ["updated_at", "2020-04-22 05:36:38.845088"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_510954


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (6.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.874389"], ["updated_at", "2020-04-22 05:36:38.874389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (18.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.918069"], ["updated_at", "2020-04-22 05:36:38.918069"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.867100"], ["updated_at", "2020-04-22 05:36:38.867100"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (7.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.956038"], ["updated_at", "2020-04-22 05:36:38.956038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_291206


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:38.978963"], ["updated_at", "2020-04-22 05:36:38.978963"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:38.984258"], ["updated_at", "2020-04-22 05:36:38.984258"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:38.993737"], ["updated_at", "2020-04-22 05:36:38.993737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:39.026456"], ["updated_at", "2020-04-22 05:36:39.026456"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (21.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.2ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  begin transaction

CommentTest: test_949137


 (0.2ms)  begin transaction

CommentTest: test_725587


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.021606"], ["updated_at", "2020-04-22 05:36:40.021606"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.025799"], ["updated_at", "2020-04-22 05:36:40.025799"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.033741"], ["updated_at", "2020-04-22 05:36:40.033741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.035037"], ["updated_at", "2020-04-22 05:36:40.035037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.041216"], ["updated_at", "2020-04-22 05:36:40.041216"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.044409"], ["updated_at", "2020-04-22 05:36:40.044409"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_23948


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.074708"], ["updated_at", "2020-04-22 05:36:40.074708"]]
Comment Create (13.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.085968"], ["updated_at", "2020-04-22 05:36:40.085968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.095273"], ["updated_at", "2020-04-22 05:36:40.095273"]]
 (0.2ms)  begin transaction

CommentTest: test_878264


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.103699"], ["updated_at", "2020-04-22 05:36:40.103699"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.121214"], ["updated_at", "2020-04-22 05:36:40.121214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.130556"], ["updated_at", "2020-04-22 05:36:40.130556"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (7.0ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_350166


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (14.4ms)  rollback transaction
Course Create (19.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.168916"], ["updated_at", "2020-04-22 05:36:40.168916"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.199729"], ["updated_at", "2020-04-22 05:36:40.199729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_394665


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.212895"], ["updated_at", "2020-04-22 05:36:40.212895"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.220440"], ["updated_at", "2020-04-22 05:36:40.220440"]]
Bucket Create (4.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.235827"], ["updated_at", "2020-04-22 05:36:40.235827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (25.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.271657"], ["updated_at", "2020-04-22 05:36:40.271657"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (16.2ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_374898


 (0.2ms)  SAVEPOINT active_record_1
 (3.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
Course Create (13.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.325249"], ["updated_at", "2020-04-22 05:36:40.325249"]]
 (0.2ms)  begin transaction

CommentTest: test_10185


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.357894"], ["updated_at", "2020-04-22 05:36:40.357894"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.366467"], ["updated_at", "2020-04-22 05:36:40.366467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.378882"], ["updated_at", "2020-04-22 05:36:40.378882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.386709"], ["updated_at", "2020-04-22 05:36:40.386709"]]
Recording Create (6.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.389986"], ["updated_at", "2020-04-22 05:36:40.389986"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_562017


 (0.3ms)  SAVEPOINT active_record_1
 (31.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.451049"], ["updated_at", "2020-04-22 05:36:40.451049"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.467584"], ["updated_at", "2020-04-22 05:36:40.467584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.9ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_226167


 (0.8ms)  SAVEPOINT active_record_1
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.491378"], ["updated_at", "2020-04-22 05:36:40.491378"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.515483"], ["updated_at", "2020-04-22 05:36:40.515483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.495342"], ["updated_at", "2020-04-22 05:36:40.495342"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.524611"], ["updated_at", "2020-04-22 05:36:40.524611"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.7ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_978842


 (0.3ms)  begin transaction

CommentTest: test_797803


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.593063"], ["updated_at", "2020-04-22 05:36:40.593063"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.603785"], ["updated_at", "2020-04-22 05:36:40.603785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.596718"], ["updated_at", "2020-04-22 05:36:40.596718"]]
Bucket Create (4.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.700145"], ["updated_at", "2020-04-22 05:36:40.700145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (103.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.618928"], ["updated_at", "2020-04-22 05:36:40.618928"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.736229"], ["updated_at", "2020-04-22 05:36:40.736229"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (12.3ms)  rollback transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (12.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_685670


 (0.2ms)  begin transaction

CommentTest: test_756061


 (0.6ms)  SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.811693"], ["updated_at", "2020-04-22 05:36:40.811693"]]
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.837364"], ["updated_at", "2020-04-22 05:36:40.837364"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.846787"], ["updated_at", "2020-04-22 05:36:40.846787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.854403"], ["updated_at", "2020-04-22 05:36:40.854403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.875497"], ["updated_at", "2020-04-22 05:36:40.875497"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.876296"], ["updated_at", "2020-04-22 05:36:40.876296"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (29.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (9.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_363369


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.949394"], ["updated_at", "2020-04-22 05:36:40.949394"]]
 (0.2ms)  begin transaction

CommentTest: test_680677


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.958390"], ["updated_at", "2020-04-22 05:36:40.958390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:40.960503"], ["updated_at", "2020-04-22 05:36:40.960503"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:40.976414"], ["updated_at", "2020-04-22 05:36:40.976414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.985425"], ["updated_at", "2020-04-22 05:36:40.985425"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:40.984635"], ["updated_at", "2020-04-22 05:36:40.984635"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (12.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SELECT sqlite_version(*)
 (7.0ms)  rollback transaction
 (1.2ms)  SELECT sqlite_version(*)
 (16.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (4.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
Comment Create (146.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (3.6ms)  rollback transaction
 (0.3ms)  PRAGMA foreign_keys = OFF
 (1.0ms)  begin transaction

CommentTest: test_538100


 (0.5ms)  SELECT sqlite_version(*)
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_367955


 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  PRAGMA foreign_keys = OFF
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.232934"], ["updated_at", "2020-04-22 05:36:41.232934"]]
Course Create (45.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.195589"], ["updated_at", "2020-04-22 05:36:41.195589"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.261717"], ["updated_at", "2020-04-22 05:36:41.261717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.261283"], ["updated_at", "2020-04-22 05:36:41.261283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.273564"], ["updated_at", "2020-04-22 05:36:41.273564"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.290423"], ["updated_at", "2020-04-22 05:36:41.290423"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (7.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Truncate Tables (144.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

CommentTest: test_730165


 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.355756"], ["updated_at", "2020-04-22 05:36:41.355756"]]
 (3.3ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.366363"], ["updated_at", "2020-04-22 05:36:41.366363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_85051


 (0.3ms)  SAVEPOINT active_record_1
Truncate Tables (227.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
Course Create (55.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.401876"], ["updated_at", "2020-04-22 05:36:41.401876"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.488946"], ["updated_at", "2020-04-22 05:36:41.488946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.504062"], ["updated_at", "2020-04-22 05:36:41.504062"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.520174"], ["updated_at", "2020-04-22 05:36:41.520174"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_731667


 (2.4ms)  SAVEPOINT active_record_1
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (66.1ms)  rollback transaction
 (0.4ms)  begin transaction
Course Create (107.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.549111"], ["updated_at", "2020-04-22 05:36:41.549111"]]

CommentTest: test_387083


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.683646"], ["updated_at", "2020-04-22 05:36:41.683646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.681995"], ["updated_at", "2020-04-22 05:36:41.681995"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.692591"], ["updated_at", "2020-04-22 05:36:41.692591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.694452"], ["updated_at", "2020-04-22 05:36:41.694452"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.699160"], ["updated_at", "2020-04-22 05:36:41.699160"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (70.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_738638


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.859903"], ["updated_at", "2020-04-22 05:36:41.859903"]]
Comment Create (10.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_127656


 (0.7ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:41.922018"], ["updated_at", "2020-04-22 05:36:41.922018"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.874956"], ["updated_at", "2020-04-22 05:36:41.874956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:41.944088"], ["updated_at", "2020-04-22 05:36:41.944088"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (78.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:41.937268"], ["updated_at", "2020-04-22 05:36:41.937268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.023594"], ["updated_at", "2020-04-22 05:36:42.023594"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (21.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_27477


 (4.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.059886"], ["updated_at", "2020-04-22 05:36:42.059886"]]
 (0.2ms)  begin transaction

CommentTest: test_37795


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.070931"], ["updated_at", "2020-04-22 05:36:42.070931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.077108"], ["updated_at", "2020-04-22 05:36:42.077108"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.116852"], ["updated_at", "2020-04-22 05:36:42.116852"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (57.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.148511"], ["updated_at", "2020-04-22 05:36:42.148511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.220545"], ["updated_at", "2020-04-22 05:36:42.220545"]]
 (27.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (53.2ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_887925


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.273056"], ["updated_at", "2020-04-22 05:36:42.273056"]]
 (0.3ms)  begin transaction

CommentTest: test_331999


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.310931"], ["updated_at", "2020-04-22 05:36:42.310931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.311974"], ["updated_at", "2020-04-22 05:36:42.311974"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.325242"], ["updated_at", "2020-04-22 05:36:42.325242"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.323513"], ["updated_at", "2020-04-22 05:36:42.323513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (8.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.375402"], ["updated_at", "2020-04-22 05:36:42.375402"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_535309


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.459112"], ["updated_at", "2020-04-22 05:36:42.459112"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.474647"], ["updated_at", "2020-04-22 05:36:42.474647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_495175


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.486591"], ["updated_at", "2020-04-22 05:36:42.486591"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.517742"], ["updated_at", "2020-04-22 05:36:42.517742"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.528914"], ["updated_at", "2020-04-22 05:36:42.528914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.559006"], ["updated_at", "2020-04-22 05:36:42.559006"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (22.0ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_951117


 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_200187


 (2.2ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.709201"], ["updated_at", "2020-04-22 05:36:42.709201"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.724481"], ["updated_at", "2020-04-22 05:36:42.724481"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.728388"], ["updated_at", "2020-04-22 05:36:42.728388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.735548"], ["updated_at", "2020-04-22 05:36:42.735548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.765020"], ["updated_at", "2020-04-22 05:36:42.765020"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Bucket Load (13.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (91.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.745847"], ["updated_at", "2020-04-22 05:36:42.745847"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
Fixtures Load (101.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:36:42.353646', '2020-04-22 05:36:42.353646'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:36:42.353646', '2020-04-22 05:36:42.353646'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:36:42.420552', '2020-04-22 05:36:42.420552', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:36:42.420552', '2020-04-22 05:36:42.420552', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:36:42.431831', '2020-04-22 05:36:42.431831'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:36:42.431831', '2020-04-22 05:36:42.431831'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:36:42.508900', '2020-04-22 05:36:42.508900'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:36:42.508900', '2020-04-22 05:36:42.508900'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:36:42.519186', '2020-04-22 05:36:42.519186'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:36:42.519186', '2020-04-22 05:36:42.519186'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:36:42.578287', '2020-04-22 05:36:42.578287'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:36:42.578287', '2020-04-22 05:36:42.578287'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:36:42.599617', '2020-04-22 05:36:42.599617'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:36:42.599617', '2020-04-22 05:36:42.599617')

 (1.0ms)  begin transaction
 (4.8ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.4ms)  PRAGMA foreign_keys = 1

 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


CommentTest: test_808854


 (26.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_329060


Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.890648"], ["updated_at", "2020-04-22 05:36:42.890648"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.903398"], ["updated_at", "2020-04-22 05:36:42.903398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:42.899447"], ["updated_at", "2020-04-22 05:36:42.899447"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.914994"], ["updated_at", "2020-04-22 05:36:42.914994"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:42.924520"], ["updated_at", "2020-04-22 05:36:42.924520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:42.933530"], ["updated_at", "2020-04-22 05:36:42.933530"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (20.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
 (12.1ms)  rollback transaction
Vault Create (45.0ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 05:36:42.949053"], ["updated_at", "2020-04-22 05:36:42.949053"]]
 (0.3ms)  begin transaction

 (0.3ms)  begin transaction

CommentTest: test_829769


Fixtures Load (209.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 05:36:42.431667', '2020-04-22 05:36:42.431667'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 05:36:42.431667', '2020-04-22 05:36:42.431667'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 05:36:42.455200', '2020-04-22 05:36:42.455200', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 05:36:42.455200', '2020-04-22 05:36:42.455200', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 05:36:42.467561', '2020-04-22 05:36:42.467561'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:36:42.467561', '2020-04-22 05:36:42.467561'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:36:42.551173', '2020-04-22 05:36:42.551173'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 05:36:42.551173', '2020-04-22 05:36:42.551173'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 05:36:42.595646', '2020-04-22 05:36:42.595646'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 05:36:42.595646', '2020-04-22 05:36:42.595646'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 05:36:42.606244', '2020-04-22 05:36:42.606244'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 05:36:42.606244', '2020-04-22 05:36:42.606244'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 05:36:42.615425', '2020-04-22 05:36:42.615425'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 05:36:42.615425', '2020-04-22 05:36:42.615425')

 (0.3ms)  SAVEPOINT active_record_1
 (4.5ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

CourseTest: test_has_one_:bucket_association


CommentTest: test_435720


 (0.3ms)  SAVEPOINT active_record_1
Course Create (65.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.029353"], ["updated_at", "2020-04-22 05:36:43.029353"]]
Bucket Create (4.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.106882"], ["updated_at", "2020-04-22 05:36:43.106882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.120656"], ["updated_at", "2020-04-22 05:36:43.120656"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.131419"], ["updated_at", "2020-04-22 05:36:43.131419"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_635694


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.205024"], ["updated_at", "2020-04-22 05:36:43.205024"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.241533"], ["updated_at", "2020-04-22 05:36:43.241533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.249018"], ["updated_at", "2020-04-22 05:36:43.249018"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.9ms)  rollback transaction
Course Create (96.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 05:36:43.195090"], ["updated_at", "2020-04-22 05:36:43.195090"]]
 (0.6ms)  begin transaction

CommentTest: test_262708


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.327461"], ["updated_at", "2020-04-22 05:36:43.327461"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


Course Create (263.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.088432"], ["updated_at", "2020-04-22 05:36:43.088432"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.361947"], ["updated_at", "2020-04-22 05:36:43.361947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.371663"], ["updated_at", "2020-04-22 05:36:43.371663"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_730046


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.415207"], ["updated_at", "2020-04-22 05:36:43.415207"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.433566"], ["updated_at", "2020-04-22 05:36:43.433566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.446032"], ["updated_at", "2020-04-22 05:36:43.446032"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.492028"], ["updated_at", "2020-04-22 05:36:43.492028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.4ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_790757


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.574889"], ["updated_at", "2020-04-22 05:36:43.574889"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.594185"], ["updated_at", "2020-04-22 05:36:43.594185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.603292"], ["updated_at", "2020-04-22 05:36:43.603292"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (43.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
Recording Create (4.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:43.921822"], ["updated_at", "2020-04-22 05:36:43.921822"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_260639


 (0.2ms)  rollback transaction
 (1.5ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.952227"], ["updated_at", "2020-04-22 05:36:43.952227"]]
 (0.2ms)  begin transaction
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:43.975386"], ["updated_at", "2020-04-22 05:36:43.975386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.2ms)  rollback transaction
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.020599"], ["updated_at", "2020-04-22 05:36:44.020599"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (776.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:43.318291"], ["updated_at", "2020-04-22 05:36:43.318291"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.103322"], ["updated_at", "2020-04-22 05:36:44.103322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.112227"], ["updated_at", "2020-04-22 05:36:44.112227"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_328170


 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_155138


 (0.3ms)  SAVEPOINT active_record_1
Course Create (14.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.146951"], ["updated_at", "2020-04-22 05:36:44.146951"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.180289"], ["updated_at", "2020-04-22 05:36:44.180289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.197959"], ["updated_at", "2020-04-22 05:36:44.197959"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (84.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.129762"], ["updated_at", "2020-04-22 05:36:44.129762"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.227397"], ["updated_at", "2020-04-22 05:36:44.227397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (9.2ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.312672"], ["updated_at", "2020-04-22 05:36:44.312672"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_859432


 (2.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (40.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.373873"], ["updated_at", "2020-04-22 05:36:44.373873"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.422230"], ["updated_at", "2020-04-22 05:36:44.422230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_746304


 (1.1ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.445546"], ["updated_at", "2020-04-22 05:36:44.445546"]]
Recording Create (3.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.496238"], ["updated_at", "2020-04-22 05:36:44.496238"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.501588"], ["updated_at", "2020-04-22 05:36:44.501588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
ContentRecommendation Load (10.9ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.2ms)  begin transaction

CommentTest: test_868365


 (1.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.560863"], ["updated_at", "2020-04-22 05:36:44.560863"]]
ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.591665"], ["updated_at", "2020-04-22 05:36:44.591665"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.577206"], ["updated_at", "2020-04-22 05:36:44.577206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (9.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_662903


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.706256"], ["updated_at", "2020-04-22 05:36:44.706256"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.711972"], ["updated_at", "2020-04-22 05:36:44.711972"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.809982"], ["updated_at", "2020-04-22 05:36:44.809982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_811972


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.852525"], ["updated_at", "2020-04-22 05:36:44.852525"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.848022"], ["updated_at", "2020-04-22 05:36:44.848022"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
ContentRecommendation Load (44.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.863275"], ["updated_at", "2020-04-22 05:36:44.863275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:44.950381"], ["updated_at", "2020-04-22 05:36:44.950381"]]
 (14.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_532797


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.969183"], ["updated_at", "2020-04-22 05:36:44.969183"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_814758


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:44.990078"], ["updated_at", "2020-04-22 05:36:44.990078"]]
Bucket Create (29.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.999259"], ["updated_at", "2020-04-22 05:36:44.999259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.048609"], ["updated_at", "2020-04-22 05:36:45.048609"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:44.998729"], ["updated_at", "2020-04-22 05:36:44.998729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.3ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:36:45.069662"], ["updated_at", "2020-04-22 05:36:45.069662"]]
 (0.3ms)  ROLLBACK TO SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.080091"], ["updated_at", "2020-04-22 05:36:45.080091"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_900


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
ContentRecommendation Create (9.3ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 05:36:45.100597"], ["updated_at", "2020-04-22 05:36:45.100597"]]
 (0.1ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_253001


 (0.3ms)  ROLLBACK TO SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.118000"], ["updated_at", "2020-04-22 05:36:45.118000"]]
Course Create (29.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.099561"], ["updated_at", "2020-04-22 05:36:45.099561"]]
 (0.2ms)  begin transaction

CommentTest: test_447380


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.135019"], ["updated_at", "2020-04-22 05:36:45.135019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.156723"], ["updated_at", "2020-04-22 05:36:45.156723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.169190"], ["updated_at", "2020-04-22 05:36:45.169190"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (11.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.167347"], ["updated_at", "2020-04-22 05:36:45.167347"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (9.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_286493


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.220801"], ["updated_at", "2020-04-22 05:36:45.220801"]]
Bucket Create (9.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.250757"], ["updated_at", "2020-04-22 05:36:45.250757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.275927"], ["updated_at", "2020-04-22 05:36:45.275927"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.9ms)  RELEASE SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_889365


 (0.8ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.341614"], ["updated_at", "2020-04-22 05:36:45.341614"]]
Bucket Create (7.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.357295"], ["updated_at", "2020-04-22 05:36:45.357295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (207.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.153187"], ["updated_at", "2020-04-22 05:36:45.153187"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.375329"], ["updated_at", "2020-04-22 05:36:45.375329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.375389"], ["updated_at", "2020-04-22 05:36:45.375389"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.383853"], ["updated_at", "2020-04-22 05:36:45.383853"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (1.5ms)  begin transaction

CommentTest: test_957691


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.482466"], ["updated_at", "2020-04-22 05:36:45.482466"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (14.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.503138"], ["updated_at", "2020-04-22 05:36:45.503138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (41.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.537807"], ["updated_at", "2020-04-22 05:36:45.537807"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (25.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_612586


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.587353"], ["updated_at", "2020-04-22 05:36:45.587353"]]
 (0.3ms)  begin transaction

CommentTest: test_67320


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.612551"], ["updated_at", "2020-04-22 05:36:45.612551"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.614410"], ["updated_at", "2020-04-22 05:36:45.614410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.627229"], ["updated_at", "2020-04-22 05:36:45.627229"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.628847"], ["updated_at", "2020-04-22 05:36:45.628847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (17.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.648345"], ["updated_at", "2020-04-22 05:36:45.648345"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (25.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_100366


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.708947"], ["updated_at", "2020-04-22 05:36:45.708947"]]
 (0.3ms)  begin transaction

CommentTest: test_29192


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.719123"], ["updated_at", "2020-04-22 05:36:45.719123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.723055"], ["updated_at", "2020-04-22 05:36:45.723055"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.732996"], ["updated_at", "2020-04-22 05:36:45.732996"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.740036"], ["updated_at", "2020-04-22 05:36:45.740036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.750585"], ["updated_at", "2020-04-22 05:36:45.750585"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.1ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_526227


 (0.3ms)  SAVEPOINT active_record_1
 (23.9ms)  rollback transaction
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.804105"], ["updated_at", "2020-04-22 05:36:45.804105"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.830820"], ["updated_at", "2020-04-22 05:36:45.830820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_118618

Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.843256"], ["updated_at", "2020-04-22 05:36:45.843256"]]

 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.851961"], ["updated_at", "2020-04-22 05:36:45.851961"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.888479"], ["updated_at", "2020-04-22 05:36:45.888479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.3ms)  begin transaction

CommentTest: test_794221


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.901929"], ["updated_at", "2020-04-22 05:36:45.901929"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.913229"], ["updated_at", "2020-04-22 05:36:45.913229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.925224"], ["updated_at", "2020-04-22 05:36:45.925224"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Recording Create (10.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:45.922951"], ["updated_at", "2020-04-22 05:36:45.922951"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_166267


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:45.977756"], ["updated_at", "2020-04-22 05:36:45.977756"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:45.993755"], ["updated_at", "2020-04-22 05:36:45.993755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_626705


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.015526"], ["updated_at", "2020-04-22 05:36:46.015526"]]
Bucket Create (4.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.034205"], ["updated_at", "2020-04-22 05:36:46.034205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (9.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.003172"], ["updated_at", "2020-04-22 05:36:46.003172"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.048305"], ["updated_at", "2020-04-22 05:36:46.048305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (1.3ms)  begin transaction

CommentTest: test_256115


Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.098390"], ["updated_at", "2020-04-22 05:36:46.098390"]]
 (0.2ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.108775"], ["updated_at", "2020-04-22 05:36:46.108775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_647547


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.120989"], ["updated_at", "2020-04-22 05:36:46.120989"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.121571"], ["updated_at", "2020-04-22 05:36:46.121571"]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (20.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.136071"], ["updated_at", "2020-04-22 05:36:46.136071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.165074"], ["updated_at", "2020-04-22 05:36:46.165074"]]
 (1.5ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_718622


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  SAVEPOINT active_record_1
Course Create (6.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.177873"], ["updated_at", "2020-04-22 05:36:46.177873"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.203323"], ["updated_at", "2020-04-22 05:36:46.203323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (10.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.213595"], ["updated_at", "2020-04-22 05:36:46.213595"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_754400


 (0.5ms)  SAVEPOINT active_record_1
Course Create (7.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.234163"], ["updated_at", "2020-04-22 05:36:46.234163"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.285224"], ["updated_at", "2020-04-22 05:36:46.285224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_631772


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.317627"], ["updated_at", "2020-04-22 05:36:46.317627"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.317153"], ["updated_at", "2020-04-22 05:36:46.317153"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.329512"], ["updated_at", "2020-04-22 05:36:46.329512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.340628"], ["updated_at", "2020-04-22 05:36:46.340628"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_698957


 (1.0ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.385657"], ["updated_at", "2020-04-22 05:36:46.385657"]]
 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_724823


Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.401357"], ["updated_at", "2020-04-22 05:36:46.401357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.414378"], ["updated_at", "2020-04-22 05:36:46.414378"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.412636"], ["updated_at", "2020-04-22 05:36:46.412636"]]
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.424566"], ["updated_at", "2020-04-22 05:36:46.424566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.433520"], ["updated_at", "2020-04-22 05:36:46.433520"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_928932


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.463522"], ["updated_at", "2020-04-22 05:36:46.463522"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.483758"], ["updated_at", "2020-04-22 05:36:46.483758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_590221


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.503589"], ["updated_at", "2020-04-22 05:36:46.503589"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.502342"], ["updated_at", "2020-04-22 05:36:46.502342"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (9.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.518500"], ["updated_at", "2020-04-22 05:36:46.518500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Recording Create (6.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.534326"], ["updated_at", "2020-04-22 05:36:46.534326"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  begin transaction

CommentTest: test_887635


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.562753"], ["updated_at", "2020-04-22 05:36:46.562753"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.575096"], ["updated_at", "2020-04-22 05:36:46.575096"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (2.3ms)  begin transaction

CommentTest: test_499691


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.587518"], ["updated_at", "2020-04-22 05:36:46.587518"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.598918"], ["updated_at", "2020-04-22 05:36:46.598918"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.619005"], ["updated_at", "2020-04-22 05:36:46.619005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (8.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.744122"], ["updated_at", "2020-04-22 05:36:46.744122"]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (34.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_220915


 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
Course Create (12.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.794840"], ["updated_at", "2020-04-22 05:36:46.794840"]]
 (0.2ms)  begin transaction

CommentTest: test_691057


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.828978"], ["updated_at", "2020-04-22 05:36:46.828978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.840080"], ["updated_at", "2020-04-22 05:36:46.840080"]]
Course Create (7.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.831817"], ["updated_at", "2020-04-22 05:36:46.831817"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.859244"], ["updated_at", "2020-04-22 05:36:46.859244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.5ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.902138"], ["updated_at", "2020-04-22 05:36:46.902138"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.4ms)  begin transaction

CommentTest: test_154785


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:46.932389"], ["updated_at", "2020-04-22 05:36:46.932389"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:46.944632"], ["updated_at", "2020-04-22 05:36:46.944632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.2ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:46.989885"], ["updated_at", "2020-04-22 05:36:46.989885"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_420515


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.008529"], ["updated_at", "2020-04-22 05:36:47.008529"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.020269"], ["updated_at", "2020-04-22 05:36:47.020269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.035440"], ["updated_at", "2020-04-22 05:36:47.035440"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.0ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_267769


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.052032"], ["updated_at", "2020-04-22 05:36:47.052032"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.055807"], ["updated_at", "2020-04-22 05:36:47.055807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_811850


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.058548"], ["updated_at", "2020-04-22 05:36:47.058548"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.059187"], ["updated_at", "2020-04-22 05:36:47.059187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.061925"], ["updated_at", "2020-04-22 05:36:47.061925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.064851"], ["updated_at", "2020-04-22 05:36:47.064851"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_69244


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.068943"], ["updated_at", "2020-04-22 05:36:47.068943"]]
 (0.1ms)  begin transaction

CommentTest: test_896132


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.074398"], ["updated_at", "2020-04-22 05:36:47.074398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.075322"], ["updated_at", "2020-04-22 05:36:47.075322"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.076599"], ["updated_at", "2020-04-22 05:36:47.076599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.078775"], ["updated_at", "2020-04-22 05:36:47.078775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.081001"], ["updated_at", "2020-04-22 05:36:47.081001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_207819


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.085671"], ["updated_at", "2020-04-22 05:36:47.085671"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.088985"], ["updated_at", "2020-04-22 05:36:47.088985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.091591"], ["updated_at", "2020-04-22 05:36:47.091591"]]
 (0.1ms)  begin transaction

CommentTest: test_532904


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.094323"], ["updated_at", "2020-04-22 05:36:47.094323"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.097744"], ["updated_at", "2020-04-22 05:36:47.097744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.101243"], ["updated_at", "2020-04-22 05:36:47.101243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (61.3ms)  rollback transaction
 (51.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_627762


 (0.1ms)  begin transaction

CommentTest: test_899452


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.162849"], ["updated_at", "2020-04-22 05:36:47.162849"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.165325"], ["updated_at", "2020-04-22 05:36:47.165325"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.166872"], ["updated_at", "2020-04-22 05:36:47.166872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.169035"], ["updated_at", "2020-04-22 05:36:47.169035"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.168798"], ["updated_at", "2020-04-22 05:36:47.168798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.173279"], ["updated_at", "2020-04-22 05:36:47.173279"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_869759


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_643955


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.183750"], ["updated_at", "2020-04-22 05:36:47.183750"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.185460"], ["updated_at", "2020-04-22 05:36:47.185460"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.186595"], ["updated_at", "2020-04-22 05:36:47.186595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.189077"], ["updated_at", "2020-04-22 05:36:47.189077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.189251"], ["updated_at", "2020-04-22 05:36:47.189251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.195696"], ["updated_at", "2020-04-22 05:36:47.195696"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_219547


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.201457"], ["updated_at", "2020-04-22 05:36:47.201457"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.204223"], ["updated_at", "2020-04-22 05:36:47.204223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.208987"], ["updated_at", "2020-04-22 05:36:47.208987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_480602


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_482282


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.216447"], ["updated_at", "2020-04-22 05:36:47.216447"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.219450"], ["updated_at", "2020-04-22 05:36:47.219450"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.222876"], ["updated_at", "2020-04-22 05:36:47.222876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.221664"], ["updated_at", "2020-04-22 05:36:47.221664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.226127"], ["updated_at", "2020-04-22 05:36:47.226127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.227611"], ["updated_at", "2020-04-22 05:36:47.227611"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_257540


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.235427"], ["updated_at", "2020-04-22 05:36:47.235427"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.241409"], ["updated_at", "2020-04-22 05:36:47.241409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_590324


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.243703"], ["updated_at", "2020-04-22 05:36:47.243703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.245173"], ["updated_at", "2020-04-22 05:36:47.245173"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.248331"], ["updated_at", "2020-04-22 05:36:47.248331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.250522"], ["updated_at", "2020-04-22 05:36:47.250522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_752968


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.255058"], ["updated_at", "2020-04-22 05:36:47.255058"]]
 (2.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.264190"], ["updated_at", "2020-04-22 05:36:47.264190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.267064"], ["updated_at", "2020-04-22 05:36:47.267064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_810124


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.272776"], ["updated_at", "2020-04-22 05:36:47.272776"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.277156"], ["updated_at", "2020-04-22 05:36:47.277156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.279451"], ["updated_at", "2020-04-22 05:36:47.279451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_797505


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.282676"], ["updated_at", "2020-04-22 05:36:47.282676"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.286180"], ["updated_at", "2020-04-22 05:36:47.286180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.289174"], ["updated_at", "2020-04-22 05:36:47.289174"]]
 (0.1ms)  begin transaction

CommentTest: test_450800


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.291656"], ["updated_at", "2020-04-22 05:36:47.291656"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.294771"], ["updated_at", "2020-04-22 05:36:47.294771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_731858


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.297606"], ["updated_at", "2020-04-22 05:36:47.297606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.298825"], ["updated_at", "2020-04-22 05:36:47.298825"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.301432"], ["updated_at", "2020-04-22 05:36:47.301432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.303898"], ["updated_at", "2020-04-22 05:36:47.303898"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.7ms)  begin transaction

CommentTest: test_820529



CommentTest: test_479319


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.314850"], ["updated_at", "2020-04-22 05:36:47.314850"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.315641"], ["updated_at", "2020-04-22 05:36:47.315641"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.317725"], ["updated_at", "2020-04-22 05:36:47.317725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.318862"], ["updated_at", "2020-04-22 05:36:47.318862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.319866"], ["updated_at", "2020-04-22 05:36:47.319866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.320985"], ["updated_at", "2020-04-22 05:36:47.320985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_187823


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.332822"], ["updated_at", "2020-04-22 05:36:47.332822"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.335806"], ["updated_at", "2020-04-22 05:36:47.335806"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.337868"], ["updated_at", "2020-04-22 05:36:47.337868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_555



CommentTest: test_277


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.718224"], ["updated_at", "2020-04-22 05:36:47.718224"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.718594"], ["updated_at", "2020-04-22 05:36:47.718594"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.721896"], ["updated_at", "2020-04-22 05:36:47.721896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.723369"], ["updated_at", "2020-04-22 05:36:47.723369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.726603"], ["updated_at", "2020-04-22 05:36:47.726603"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.727496"], ["updated_at", "2020-04-22 05:36:47.727496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_918


 (1.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.739755"], ["updated_at", "2020-04-22 05:36:47.739755"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.744500"], ["updated_at", "2020-04-22 05:36:47.744500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.746604"], ["updated_at", "2020-04-22 05:36:47.746604"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_649


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.762939"], ["updated_at", "2020-04-22 05:36:47.762939"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.767573"], ["updated_at", "2020-04-22 05:36:47.767573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.771763"], ["updated_at", "2020-04-22 05:36:47.771763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_676


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.774885"], ["updated_at", "2020-04-22 05:36:47.774885"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.778299"], ["updated_at", "2020-04-22 05:36:47.778299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.9ms)  begin transaction

CommentTest: test_285086


 (0.1ms)  begin transaction

CommentTest: test_269


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.781519"], ["updated_at", "2020-04-22 05:36:47.781519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.783126"], ["updated_at", "2020-04-22 05:36:47.783126"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.785471"], ["updated_at", "2020-04-22 05:36:47.785471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.787459"], ["updated_at", "2020-04-22 05:36:47.787459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_819


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.793235"], ["updated_at", "2020-04-22 05:36:47.793235"]]
 (0.1ms)  begin transaction

CommentTest: test_402331


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.796656"], ["updated_at", "2020-04-22 05:36:47.796656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.798929"], ["updated_at", "2020-04-22 05:36:47.798929"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.797447"], ["updated_at", "2020-04-22 05:36:47.797447"]]
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_128


Course Create (23.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.782345"], ["updated_at", "2020-04-22 05:36:47.782345"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.809641"], ["updated_at", "2020-04-22 05:36:47.809641"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.806377"], ["updated_at", "2020-04-22 05:36:47.806377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.812539"], ["updated_at", "2020-04-22 05:36:47.812539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.813358"], ["updated_at", "2020-04-22 05:36:47.813358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.808507"], ["updated_at", "2020-04-22 05:36:47.808507"]]
 (0.1ms)  begin transaction

CommentTest: test_229161


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.821443"], ["updated_at", "2020-04-22 05:36:47.821443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.824026"], ["updated_at", "2020-04-22 05:36:47.824026"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_391


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_808803


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.826581"], ["updated_at", "2020-04-22 05:36:47.826581"]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.831747"], ["updated_at", "2020-04-22 05:36:47.831747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.822901"], ["updated_at", "2020-04-22 05:36:47.822901"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.833441"], ["updated_at", "2020-04-22 05:36:47.833441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.836064"], ["updated_at", "2020-04-22 05:36:47.836064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.838931"], ["updated_at", "2020-04-22 05:36:47.838931"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_273


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.847345"], ["updated_at", "2020-04-22 05:36:47.847345"]]
 (0.1ms)  begin transaction

CommentTest: test_676794


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.850247"], ["updated_at", "2020-04-22 05:36:47.850247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.852254"], ["updated_at", "2020-04-22 05:36:47.852254"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.851188"], ["updated_at", "2020-04-22 05:36:47.851188"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.855324"], ["updated_at", "2020-04-22 05:36:47.855324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.858070"], ["updated_at", "2020-04-22 05:36:47.858070"]]
 (0.1ms)  begin transaction

CommentTest: test_451


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_211


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.862795"], ["updated_at", "2020-04-22 05:36:47.862795"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.866280"], ["updated_at", "2020-04-22 05:36:47.866280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.865611"], ["updated_at", "2020-04-22 05:36:47.865611"]]
 (0.1ms)  begin transaction

CommentTest: test_595875


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.868731"], ["updated_at", "2020-04-22 05:36:47.868731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.869269"], ["updated_at", "2020-04-22 05:36:47.869269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.871947"], ["updated_at", "2020-04-22 05:36:47.871947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_197


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.879688"], ["updated_at", "2020-04-22 05:36:47.879688"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_541


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.884884"], ["updated_at", "2020-04-22 05:36:47.884884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.886882"], ["updated_at", "2020-04-22 05:36:47.886882"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.887771"], ["updated_at", "2020-04-22 05:36:47.887771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.890276"], ["updated_at", "2020-04-22 05:36:47.890276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.892985"], ["updated_at", "2020-04-22 05:36:47.892985"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_438


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.899047"], ["updated_at", "2020-04-22 05:36:47.899047"]]
 (0.2ms)  begin transaction

CommentTest: test_759


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.902363"], ["updated_at", "2020-04-22 05:36:47.902363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.905356"], ["updated_at", "2020-04-22 05:36:47.905356"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.906182"], ["updated_at", "2020-04-22 05:36:47.906182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.908865"], ["updated_at", "2020-04-22 05:36:47.908865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.911725"], ["updated_at", "2020-04-22 05:36:47.911725"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_857

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

Course Create (84.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.830190"], ["updated_at", "2020-04-22 05:36:47.830190"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.918002"], ["updated_at", "2020-04-22 05:36:47.918002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.921484"], ["updated_at", "2020-04-22 05:36:47.921484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.926510"], ["updated_at", "2020-04-22 05:36:47.926510"]]
 (0.4ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.930069"], ["updated_at", "2020-04-22 05:36:47.930069"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_554216


Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.919964"], ["updated_at", "2020-04-22 05:36:47.919964"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.932515"], ["updated_at", "2020-04-22 05:36:47.932515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.933406"], ["updated_at", "2020-04-22 05:36:47.933406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.935419"], ["updated_at", "2020-04-22 05:36:47.935419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (10.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.932577"], ["updated_at", "2020-04-22 05:36:47.932577"]]
 (0.1ms)  begin transaction

CommentTest: test_892


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.945620"], ["updated_at", "2020-04-22 05:36:47.945620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.947949"], ["updated_at", "2020-04-22 05:36:47.947949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_603


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (85.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.869957"], ["updated_at", "2020-04-22 05:36:47.869957"]]
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.946311"], ["updated_at", "2020-04-22 05:36:47.946311"]]
 (0.1ms)  begin transaction

CommentTest: test_364003


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.958219"], ["updated_at", "2020-04-22 05:36:47.958219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.958845"], ["updated_at", "2020-04-22 05:36:47.958845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.960449"], ["updated_at", "2020-04-22 05:36:47.960449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.960894"], ["updated_at", "2020-04-22 05:36:47.960894"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_339386


Course Create (13.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.954035"], ["updated_at", "2020-04-22 05:36:47.954035"]]
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_863


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.971857"], ["updated_at", "2020-04-22 05:36:47.971857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.973969"], ["updated_at", "2020-04-22 05:36:47.973969"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.973504"], ["updated_at", "2020-04-22 05:36:47.973504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.977657"], ["updated_at", "2020-04-22 05:36:47.977657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.979815"], ["updated_at", "2020-04-22 05:36:47.979815"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_714


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (20.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.970714"], ["updated_at", "2020-04-22 05:36:47.970714"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.994112"], ["updated_at", "2020-04-22 05:36:47.994112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (36.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.959500"], ["updated_at", "2020-04-22 05:36:47.959500"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:47.996661"], ["updated_at", "2020-04-22 05:36:47.996661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_985


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:47.998191"], ["updated_at", "2020-04-22 05:36:47.998191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.000329"], ["updated_at", "2020-04-22 05:36:48.000329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (11.7ms)  rollback transaction
Course Create (26.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.984950"], ["updated_at", "2020-04-22 05:36:47.984950"]]
 (0.1ms)  begin transaction

CommentTest: test_971216


 (0.1ms)  SAVEPOINT active_record_1
Course Create (22.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:47.999946"], ["updated_at", "2020-04-22 05:36:47.999946"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.021245"], ["updated_at", "2020-04-22 05:36:48.021245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.024549"], ["updated_at", "2020-04-22 05:36:48.024549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.027926"], ["updated_at", "2020-04-22 05:36:48.027926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_955618


Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.030318"], ["updated_at", "2020-04-22 05:36:48.030318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
Course Create (15.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.021107"], ["updated_at", "2020-04-22 05:36:48.021107"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.040170"], ["updated_at", "2020-04-22 05:36:48.040170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (8.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.034012"], ["updated_at", "2020-04-22 05:36:48.034012"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.043405"], ["updated_at", "2020-04-22 05:36:48.043405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.044998"], ["updated_at", "2020-04-22 05:36:48.044998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.047203"], ["updated_at", "2020-04-22 05:36:48.047203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_163


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_303


 (0.1ms)  SAVEPOINT active_record_1
 (7.1ms)  rollback transaction
 (6.1ms)  rollback transaction
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.057288"], ["updated_at", "2020-04-22 05:36:48.057288"]]
 (0.1ms)  begin transaction

CommentTest: test_443711

Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.065142"], ["updated_at", "2020-04-22 05:36:48.065142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (11.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.053425"], ["updated_at", "2020-04-22 05:36:48.053425"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.068733"], ["updated_at", "2020-04-22 05:36:48.068733"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.068988"], ["updated_at", "2020-04-22 05:36:48.068988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.071321"], ["updated_at", "2020-04-22 05:36:48.071321"]]
 (0.1ms)  begin transaction

CommentTest: test_503472

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.078045"], ["updated_at", "2020-04-22 05:36:48.078045"]]
Course Create (6.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.075556"], ["updated_at", "2020-04-22 05:36:48.075556"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.082879"], ["updated_at", "2020-04-22 05:36:48.082879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.083991"], ["updated_at", "2020-04-22 05:36:48.083991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.085170"], ["updated_at", "2020-04-22 05:36:48.085170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_873


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  SAVEPOINT active_record_1
Recording Create (5.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.086088"], ["updated_at", "2020-04-22 05:36:48.086088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_509


 (3.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.095651"], ["updated_at", "2020-04-22 05:36:48.095651"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_578249


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.098455"], ["updated_at", "2020-04-22 05:36:48.098455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.089360"], ["updated_at", "2020-04-22 05:36:48.089360"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.102200"], ["updated_at", "2020-04-22 05:36:48.102200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_113644


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (10.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.100673"], ["updated_at", "2020-04-22 05:36:48.100673"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.106449"], ["updated_at", "2020-04-22 05:36:48.106449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.114194"], ["updated_at", "2020-04-22 05:36:48.114194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.117193"], ["updated_at", "2020-04-22 05:36:48.117193"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.113980"], ["updated_at", "2020-04-22 05:36:48.113980"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_777


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
Course Create (7.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.122201"], ["updated_at", "2020-04-22 05:36:48.122201"]]
 (0.1ms)  begin transaction

CommentTest: test_481

 (0.1ms)  begin transaction


CommentTest: test_639789


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.132547"], ["updated_at", "2020-04-22 05:36:48.132547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (19.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.108820"], ["updated_at", "2020-04-22 05:36:48.108820"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.134768"], ["updated_at", "2020-04-22 05:36:48.134768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.135435"], ["updated_at", "2020-04-22 05:36:48.135435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.136846"], ["updated_at", "2020-04-22 05:36:48.136846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.133065"], ["updated_at", "2020-04-22 05:36:48.133065"]]
 (0.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_615164


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.148084"], ["updated_at", "2020-04-22 05:36:48.148084"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_198


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.150518"], ["updated_at", "2020-04-22 05:36:48.150518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.150506"], ["updated_at", "2020-04-22 05:36:48.150506"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.160463"], ["updated_at", "2020-04-22 05:36:48.160463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_961


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.162612"], ["updated_at", "2020-04-22 05:36:48.162612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.164695"], ["updated_at", "2020-04-22 05:36:48.164695"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.168613"], ["updated_at", "2020-04-22 05:36:48.168613"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.171620"], ["updated_at", "2020-04-22 05:36:48.171620"]]
 (0.1ms)  begin transaction

CommentTest: test_932


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.176460"], ["updated_at", "2020-04-22 05:36:48.176460"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.180263"], ["updated_at", "2020-04-22 05:36:48.180263"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_114


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.182544"], ["updated_at", "2020-04-22 05:36:48.182544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (36.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.148109"], ["updated_at", "2020-04-22 05:36:48.148109"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.187490"], ["updated_at", "2020-04-22 05:36:48.187490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.193182"], ["updated_at", "2020-04-22 05:36:48.193182"]]
 (0.9ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_511


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.199558"], ["updated_at", "2020-04-22 05:36:48.199558"]]
 (0.1ms)  begin transaction

CommentTest: test_953669


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.209093"], ["updated_at", "2020-04-22 05:36:48.209093"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.204177"], ["updated_at", "2020-04-22 05:36:48.204177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.212934"], ["updated_at", "2020-04-22 05:36:48.212934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.216300"], ["updated_at", "2020-04-22 05:36:48.216300"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.216389"], ["updated_at", "2020-04-22 05:36:48.216389"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_900916


 (0.1ms)  begin transaction

CommentTest: test_493


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.227679"], ["updated_at", "2020-04-22 05:36:48.227679"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.230144"], ["updated_at", "2020-04-22 05:36:48.230144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.230170"], ["updated_at", "2020-04-22 05:36:48.230170"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.232382"], ["updated_at", "2020-04-22 05:36:48.232382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.233269"], ["updated_at", "2020-04-22 05:36:48.233269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.235727"], ["updated_at", "2020-04-22 05:36:48.235727"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_709646


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.243343"], ["updated_at", "2020-04-22 05:36:48.243343"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.246258"], ["updated_at", "2020-04-22 05:36:48.246258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_808


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.248741"], ["updated_at", "2020-04-22 05:36:48.248741"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.249249"], ["updated_at", "2020-04-22 05:36:48.249249"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_700919


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.258878"], ["updated_at", "2020-04-22 05:36:48.258878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.259970"], ["updated_at", "2020-04-22 05:36:48.259970"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.261988"], ["updated_at", "2020-04-22 05:36:48.261988"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.264068"], ["updated_at", "2020-04-22 05:36:48.264068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.267562"], ["updated_at", "2020-04-22 05:36:48.267562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_364162


 (0.1ms)  begin transaction

CommentTest: test_837


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.277989"], ["updated_at", "2020-04-22 05:36:48.277989"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.279190"], ["updated_at", "2020-04-22 05:36:48.279190"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.280537"], ["updated_at", "2020-04-22 05:36:48.280537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.282456"], ["updated_at", "2020-04-22 05:36:48.282456"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.282903"], ["updated_at", "2020-04-22 05:36:48.282903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.285166"], ["updated_at", "2020-04-22 05:36:48.285166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_761


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.298841"], ["updated_at", "2020-04-22 05:36:48.298841"]]

CommentTest: test_348770


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.301864"], ["updated_at", "2020-04-22 05:36:48.301864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.301694"], ["updated_at", "2020-04-22 05:36:48.301694"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.305231"], ["updated_at", "2020-04-22 05:36:48.305231"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.306461"], ["updated_at", "2020-04-22 05:36:48.306461"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.311449"], ["updated_at", "2020-04-22 05:36:48.311449"]]
 (0.5ms)  rollback transaction
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_816


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (185.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.132994"], ["updated_at", "2020-04-22 05:36:48.132994"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.321251"], ["updated_at", "2020-04-22 05:36:48.321251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.325589"], ["updated_at", "2020-04-22 05:36:48.325589"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_804193


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (145.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.184764"], ["updated_at", "2020-04-22 05:36:48.184764"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.333780"], ["updated_at", "2020-04-22 05:36:48.333780"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_968789


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.336730"], ["updated_at", "2020-04-22 05:36:48.336730"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.338661"], ["updated_at", "2020-04-22 05:36:48.338661"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.341952"], ["updated_at", "2020-04-22 05:36:48.341952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.344965"], ["updated_at", "2020-04-22 05:36:48.344965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (15.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.329255"], ["updated_at", "2020-04-22 05:36:48.329255"]]
 (0.1ms)  begin transaction

CommentTest: test_152


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.351530"], ["updated_at", "2020-04-22 05:36:48.351530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_590204


Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.354069"], ["updated_at", "2020-04-22 05:36:48.354069"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.359272"], ["updated_at", "2020-04-22 05:36:48.359272"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.362273"], ["updated_at", "2020-04-22 05:36:48.362273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.364832"], ["updated_at", "2020-04-22 05:36:48.364832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_192271


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.368147"], ["updated_at", "2020-04-22 05:36:48.368147"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.374118"], ["updated_at", "2020-04-22 05:36:48.374118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_475167


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.376767"], ["updated_at", "2020-04-22 05:36:48.376767"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.376186"], ["updated_at", "2020-04-22 05:36:48.376186"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.379721"], ["updated_at", "2020-04-22 05:36:48.379721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.382336"], ["updated_at", "2020-04-22 05:36:48.382336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (37.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.350768"], ["updated_at", "2020-04-22 05:36:48.350768"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_646985

Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.390977"], ["updated_at", "2020-04-22 05:36:48.390977"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.2ms)  begin transaction

CommentTest: test_780504


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.394458"], ["updated_at", "2020-04-22 05:36:48.394458"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.395273"], ["updated_at", "2020-04-22 05:36:48.395273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.397241"], ["updated_at", "2020-04-22 05:36:48.397241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.399375"], ["updated_at", "2020-04-22 05:36:48.399375"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_968

Course Create (11.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.395778"], ["updated_at", "2020-04-22 05:36:48.395778"]]

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (92.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.318363"], ["updated_at", "2020-04-22 05:36:48.318363"]]

CommentTest: test_593493


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.410767"], ["updated_at", "2020-04-22 05:36:48.410767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.413220"], ["updated_at", "2020-04-22 05:36:48.413220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.416415"], ["updated_at", "2020-04-22 05:36:48.416415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.416820"], ["updated_at", "2020-04-22 05:36:48.416820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_257261


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.431176"], ["updated_at", "2020-04-22 05:36:48.431176"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.434485"], ["updated_at", "2020-04-22 05:36:48.434485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.437563"], ["updated_at", "2020-04-22 05:36:48.437563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_136


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.446857"], ["updated_at", "2020-04-22 05:36:48.446857"]]
 (0.1ms)  begin transaction

CommentTest: test_435067


Course Create (39.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.409099"], ["updated_at", "2020-04-22 05:36:48.409099"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.451155"], ["updated_at", "2020-04-22 05:36:48.451155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.452142"], ["updated_at", "2020-04-22 05:36:48.452142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.453294"], ["updated_at", "2020-04-22 05:36:48.453294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.454433"], ["updated_at", "2020-04-22 05:36:48.454433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_63


 (0.2ms)  SAVEPOINT active_record_1
Course Create (14.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.451120"], ["updated_at", "2020-04-22 05:36:48.451120"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.468399"], ["updated_at", "2020-04-22 05:36:48.468399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (57.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.413042"], ["updated_at", "2020-04-22 05:36:48.413042"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.472281"], ["updated_at", "2020-04-22 05:36:48.472281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.474929"], ["updated_at", "2020-04-22 05:36:48.474929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.478660"], ["updated_at", "2020-04-22 05:36:48.478660"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.2ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_235977



CommentTest: test_30


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.484715"], ["updated_at", "2020-04-22 05:36:48.484715"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.484770"], ["updated_at", "2020-04-22 05:36:48.484770"]]
 (0.3ms)  begin transaction

CommentTest: test_906219


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.487734"], ["updated_at", "2020-04-22 05:36:48.487734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.491479"], ["updated_at", "2020-04-22 05:36:48.491479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.492446"], ["updated_at", "2020-04-22 05:36:48.492446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.494367"], ["updated_at", "2020-04-22 05:36:48.494367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_169


 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.509060"], ["updated_at", "2020-04-22 05:36:48.509060"]]
 (0.1ms)  begin transaction

CommentTest: test_506333


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.513340"], ["updated_at", "2020-04-22 05:36:48.513340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.513731"], ["updated_at", "2020-04-22 05:36:48.513731"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.516571"], ["updated_at", "2020-04-22 05:36:48.516571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.518319"], ["updated_at", "2020-04-22 05:36:48.518319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.522066"], ["updated_at", "2020-04-22 05:36:48.522066"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_150


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.526473"], ["updated_at", "2020-04-22 05:36:48.526473"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.530427"], ["updated_at", "2020-04-22 05:36:48.530427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.532999"], ["updated_at", "2020-04-22 05:36:48.532999"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_675726


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.535864"], ["updated_at", "2020-04-22 05:36:48.535864"]]

CommentTest: test_899


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.545661"], ["updated_at", "2020-04-22 05:36:48.545661"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.545860"], ["updated_at", "2020-04-22 05:36:48.545860"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.548812"], ["updated_at", "2020-04-22 05:36:48.548812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.549088"], ["updated_at", "2020-04-22 05:36:48.549088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.550586"], ["updated_at", "2020-04-22 05:36:48.550586"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_272036


 (0.1ms)  begin transaction

CommentTest: test_719


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.561657"], ["updated_at", "2020-04-22 05:36:48.561657"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.562110"], ["updated_at", "2020-04-22 05:36:48.562110"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.565826"], ["updated_at", "2020-04-22 05:36:48.565826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.565855"], ["updated_at", "2020-04-22 05:36:48.565855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.568331"], ["updated_at", "2020-04-22 05:36:48.568331"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.568276"], ["updated_at", "2020-04-22 05:36:48.568276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_422617


 (0.1ms)  begin transaction

CommentTest: test_423


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.579560"], ["updated_at", "2020-04-22 05:36:48.579560"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.582597"], ["updated_at", "2020-04-22 05:36:48.582597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.580322"], ["updated_at", "2020-04-22 05:36:48.580322"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.585205"], ["updated_at", "2020-04-22 05:36:48.585205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.587793"], ["updated_at", "2020-04-22 05:36:48.587793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.590184"], ["updated_at", "2020-04-22 05:36:48.590184"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_141866


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.595581"], ["updated_at", "2020-04-22 05:36:48.595581"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_795


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.598405"], ["updated_at", "2020-04-22 05:36:48.598405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (108.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.491730"], ["updated_at", "2020-04-22 05:36:48.491730"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.600616"], ["updated_at", "2020-04-22 05:36:48.600616"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.603150"], ["updated_at", "2020-04-22 05:36:48.603150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.606025"], ["updated_at", "2020-04-22 05:36:48.606025"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_632714


 (0.1ms)  begin transaction

CommentTest: test_385320


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.616560"], ["updated_at", "2020-04-22 05:36:48.616560"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.617560"], ["updated_at", "2020-04-22 05:36:48.617560"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.623809"], ["updated_at", "2020-04-22 05:36:48.623809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.620494"], ["updated_at", "2020-04-22 05:36:48.620494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.626825"], ["updated_at", "2020-04-22 05:36:48.626825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (38.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.600023"], ["updated_at", "2020-04-22 05:36:48.600023"]]
 (0.1ms)  begin transaction

CommentTest: test_813213


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.643846"], ["updated_at", "2020-04-22 05:36:48.643846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.645086"], ["updated_at", "2020-04-22 05:36:48.645086"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.646871"], ["updated_at", "2020-04-22 05:36:48.646871"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_334


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_992755


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.661154"], ["updated_at", "2020-04-22 05:36:48.661154"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.664465"], ["updated_at", "2020-04-22 05:36:48.664465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.665113"], ["updated_at", "2020-04-22 05:36:48.665113"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.667346"], ["updated_at", "2020-04-22 05:36:48.667346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.668319"], ["updated_at", "2020-04-22 05:36:48.668319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.671589"], ["updated_at", "2020-04-22 05:36:48.671589"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_158


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.677809"], ["updated_at", "2020-04-22 05:36:48.677809"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.682447"], ["updated_at", "2020-04-22 05:36:48.682447"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.685222"], ["updated_at", "2020-04-22 05:36:48.685222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_506872


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.697413"], ["updated_at", "2020-04-22 05:36:48.697413"]]
 (0.1ms)  begin transaction

CommentTest: test_941


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.701710"], ["updated_at", "2020-04-22 05:36:48.701710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.701385"], ["updated_at", "2020-04-22 05:36:48.701385"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.714070"], ["updated_at", "2020-04-22 05:36:48.714070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.714939"], ["updated_at", "2020-04-22 05:36:48.714939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.717079"], ["updated_at", "2020-04-22 05:36:48.717079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_439


 (0.1ms)  begin transaction

CommentTest: test_20066


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.737233"], ["updated_at", "2020-04-22 05:36:48.737233"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.736654"], ["updated_at", "2020-04-22 05:36:48.736654"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.742027"], ["updated_at", "2020-04-22 05:36:48.742027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.744500"], ["updated_at", "2020-04-22 05:36:48.744500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.745685"], ["updated_at", "2020-04-22 05:36:48.745685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.747104"], ["updated_at", "2020-04-22 05:36:48.747104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (7.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_21


 (0.9ms)  begin transaction

CommentTest: test_594564


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.766125"], ["updated_at", "2020-04-22 05:36:48.766125"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.767570"], ["updated_at", "2020-04-22 05:36:48.767570"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.769145"], ["updated_at", "2020-04-22 05:36:48.769145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.775055"], ["updated_at", "2020-04-22 05:36:48.775055"]]
Bucket Create (3.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.773470"], ["updated_at", "2020-04-22 05:36:48.773470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.779137"], ["updated_at", "2020-04-22 05:36:48.779137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_47

 (0.5ms)  rollback transaction

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.791499"], ["updated_at", "2020-04-22 05:36:48.791499"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.795333"], ["updated_at", "2020-04-22 05:36:48.795333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_556581


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.799379"], ["updated_at", "2020-04-22 05:36:48.799379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.800915"], ["updated_at", "2020-04-22 05:36:48.800915"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.803572"], ["updated_at", "2020-04-22 05:36:48.803572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.808139"], ["updated_at", "2020-04-22 05:36:48.808139"]]
 (0.1ms)  begin transaction

CommentTest: test_122

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Course Create (192.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.642182"], ["updated_at", "2020-04-22 05:36:48.642182"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.837513"], ["updated_at", "2020-04-22 05:36:48.837513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.841179"], ["updated_at", "2020-04-22 05:36:48.841179"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_635361


 (0.1ms)  SAVEPOINT active_record_1
Course Create (16.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.835141"], ["updated_at", "2020-04-22 05:36:48.835141"]]
Comment Create (5.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.857719"], ["updated_at", "2020-04-22 05:36:48.857719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_661361


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.861621"], ["updated_at", "2020-04-22 05:36:48.861621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.863576"], ["updated_at", "2020-04-22 05:36:48.863576"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.866729"], ["updated_at", "2020-04-22 05:36:48.866729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.869175"], ["updated_at", "2020-04-22 05:36:48.869175"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  begin transaction

CommentTest: test_721


Course Create (20.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.852823"], ["updated_at", "2020-04-22 05:36:48.852823"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.875977"], ["updated_at", "2020-04-22 05:36:48.875977"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.879550"], ["updated_at", "2020-04-22 05:36:48.879550"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (3.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (16.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.874812"], ["updated_at", "2020-04-22 05:36:48.874812"]]
 (0.1ms)  begin transaction

CommentTest: test_851700


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.896195"], ["updated_at", "2020-04-22 05:36:48.896195"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.898729"], ["updated_at", "2020-04-22 05:36:48.898729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_331926


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.901989"], ["updated_at", "2020-04-22 05:36:48.901989"]]
 (2.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.909937"], ["updated_at", "2020-04-22 05:36:48.909937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_646


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.912783"], ["updated_at", "2020-04-22 05:36:48.912783"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.913904"], ["updated_at", "2020-04-22 05:36:48.913904"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.917127"], ["updated_at", "2020-04-22 05:36:48.917127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.919730"], ["updated_at", "2020-04-22 05:36:48.919730"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_283418


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_883


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.935519"], ["updated_at", "2020-04-22 05:36:48.935519"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.941020"], ["updated_at", "2020-04-22 05:36:48.941020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.940244"], ["updated_at", "2020-04-22 05:36:48.940244"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.946159"], ["updated_at", "2020-04-22 05:36:48.946159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.944747"], ["updated_at", "2020-04-22 05:36:48.944747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.949603"], ["updated_at", "2020-04-22 05:36:48.949603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_487460


 (0.1ms)  begin transaction

CommentTest: test_376


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.962368"], ["updated_at", "2020-04-22 05:36:48.962368"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.963535"], ["updated_at", "2020-04-22 05:36:48.963535"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.965552"], ["updated_at", "2020-04-22 05:36:48.965552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.966808"], ["updated_at", "2020-04-22 05:36:48.966808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.967781"], ["updated_at", "2020-04-22 05:36:48.967781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.970003"], ["updated_at", "2020-04-22 05:36:48.970003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.6ms)  rollback transaction

CommentTest: test_672812


 (0.1ms)  begin transaction
Course Create (85.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.896146"], ["updated_at", "2020-04-22 05:36:48.896146"]]

CommentTest: test_371


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.984324"], ["updated_at", "2020-04-22 05:36:48.984324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.981570"], ["updated_at", "2020-04-22 05:36:48.981570"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.987893"], ["updated_at", "2020-04-22 05:36:48.987893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:48.991857"], ["updated_at", "2020-04-22 05:36:48.991857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:48.993977"], ["updated_at", "2020-04-22 05:36:48.993977"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_346641


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.983810"], ["updated_at", "2020-04-22 05:36:48.983810"]]
Course Create (538.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:48.466517"], ["updated_at", "2020-04-22 05:36:48.466517"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.008051"], ["updated_at", "2020-04-22 05:36:49.008051"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.011099"], ["updated_at", "2020-04-22 05:36:49.011099"]]
Bucket Create (5.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.005589"], ["updated_at", "2020-04-22 05:36:49.005589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.014253"], ["updated_at", "2020-04-22 05:36:49.014253"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_139


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.020720"], ["updated_at", "2020-04-22 05:36:49.020720"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.024330"], ["updated_at", "2020-04-22 05:36:49.024330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (23.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.001336"], ["updated_at", "2020-04-22 05:36:49.001336"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.026627"], ["updated_at", "2020-04-22 05:36:49.026627"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.026656"], ["updated_at", "2020-04-22 05:36:49.026656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_733960


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.029593"], ["updated_at", "2020-04-22 05:36:49.029593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.031248"], ["updated_at", "2020-04-22 05:36:49.031248"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_81


 (0.2ms)  begin transaction

CommentTest: test_909300


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.042053"], ["updated_at", "2020-04-22 05:36:49.042053"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.044699"], ["updated_at", "2020-04-22 05:36:49.044699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.045594"], ["updated_at", "2020-04-22 05:36:49.045594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.047477"], ["updated_at", "2020-04-22 05:36:49.047477"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.047659"], ["updated_at", "2020-04-22 05:36:49.047659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_425


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_839010


 (0.2ms)  begin transaction

CommentTest: test_904571


 (0.3ms)  SAVEPOINT active_record_1
Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.040260"], ["updated_at", "2020-04-22 05:36:49.040260"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.060489"], ["updated_at", "2020-04-22 05:36:49.060489"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.066716"], ["updated_at", "2020-04-22 05:36:49.066716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.068506"], ["updated_at", "2020-04-22 05:36:49.068506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.068915"], ["updated_at", "2020-04-22 05:36:49.068915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.070952"], ["updated_at", "2020-04-22 05:36:49.070952"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_317


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.079837"], ["updated_at", "2020-04-22 05:36:49.079837"]]
Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.055567"], ["updated_at", "2020-04-22 05:36:49.055567"]]
 (0.1ms)  begin transaction

CommentTest: test_449212


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.082995"], ["updated_at", "2020-04-22 05:36:49.082995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.082995"], ["updated_at", "2020-04-22 05:36:49.082995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.085329"], ["updated_at", "2020-04-22 05:36:49.085329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.085397"], ["updated_at", "2020-04-22 05:36:49.085397"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_686


Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.083716"], ["updated_at", "2020-04-22 05:36:49.083716"]]
 (0.1ms)  begin transaction

CommentTest: test_427

 (0.2ms)  SAVEPOINT active_record_1

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.095932"], ["updated_at", "2020-04-22 05:36:49.095932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.095641"], ["updated_at", "2020-04-22 05:36:49.095641"]]
 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.098620"], ["updated_at", "2020-04-22 05:36:49.098620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.098413"], ["updated_at", "2020-04-22 05:36:49.098413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.100635"], ["updated_at", "2020-04-22 05:36:49.100635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.097930"], ["updated_at", "2020-04-22 05:36:49.097930"]]
 (1.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.111887"], ["updated_at", "2020-04-22 05:36:49.111887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.113535"], ["updated_at", "2020-04-22 05:36:49.113535"]]
 (0.2ms)  begin transaction

CommentTest: test_599780


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_734


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.117088"], ["updated_at", "2020-04-22 05:36:49.117088"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_372


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.124818"], ["updated_at", "2020-04-22 05:36:49.124818"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.124702"], ["updated_at", "2020-04-22 05:36:49.124702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.128031"], ["updated_at", "2020-04-22 05:36:49.128031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.130017"], ["updated_at", "2020-04-22 05:36:49.130017"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.128928"], ["updated_at", "2020-04-22 05:36:49.128928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (20.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.115762"], ["updated_at", "2020-04-22 05:36:49.115762"]]
 (0.1ms)  begin transaction

CommentTest: test_398


 (0.9ms)  begin transaction

CommentTest: test_362


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.139362"], ["updated_at", "2020-04-22 05:36:49.139362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.141325"], ["updated_at", "2020-04-22 05:36:49.141325"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.141766"], ["updated_at", "2020-04-22 05:36:49.141766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.145081"], ["updated_at", "2020-04-22 05:36:49.145081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.147467"], ["updated_at", "2020-04-22 05:36:49.147467"]]
 (0.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_41495


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.152037"], ["updated_at", "2020-04-22 05:36:49.152037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.155587"], ["updated_at", "2020-04-22 05:36:49.155587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.158084"], ["updated_at", "2020-04-22 05:36:49.158084"]]
 (0.1ms)  begin transaction

CommentTest: test_182


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.160289"], ["updated_at", "2020-04-22 05:36:49.160289"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.164181"], ["updated_at", "2020-04-22 05:36:49.164181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (25.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.139743"], ["updated_at", "2020-04-22 05:36:49.139743"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.167250"], ["updated_at", "2020-04-22 05:36:49.167250"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.167604"], ["updated_at", "2020-04-22 05:36:49.167604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.169976"], ["updated_at", "2020-04-22 05:36:49.169976"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_16504


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (3.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.178969"], ["updated_at", "2020-04-22 05:36:49.178969"]]
 (0.1ms)  begin transaction

CommentTest: test_858


 (0.1ms)  begin transaction

CommentTest: test_825


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.182223"], ["updated_at", "2020-04-22 05:36:49.182223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.183636"], ["updated_at", "2020-04-22 05:36:49.183636"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.184427"], ["updated_at", "2020-04-22 05:36:49.184427"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.186296"], ["updated_at", "2020-04-22 05:36:49.186296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.189271"], ["updated_at", "2020-04-22 05:36:49.189271"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_780252


Course Create (11.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.183135"], ["updated_at", "2020-04-22 05:36:49.183135"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.196930"], ["updated_at", "2020-04-22 05:36:49.196930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.199144"], ["updated_at", "2020-04-22 05:36:49.199144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_454


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.208385"], ["updated_at", "2020-04-22 05:36:49.208385"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.212475"], ["updated_at", "2020-04-22 05:36:49.212475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.215897"], ["updated_at", "2020-04-22 05:36:49.215897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.194572"], ["updated_at", "2020-04-22 05:36:49.194572"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.219154"], ["updated_at", "2020-04-22 05:36:49.219154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_757


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.222318"], ["updated_at", "2020-04-22 05:36:49.222318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (9.1ms)  rollback transaction
 (2.1ms)  rollback transaction
Course Create (8.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.223331"], ["updated_at", "2020-04-22 05:36:49.223331"]]
 (0.1ms)  begin transaction

CommentTest: test_515


 (0.1ms)  begin transaction

CommentTest: test_449842


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.234828"], ["updated_at", "2020-04-22 05:36:49.234828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.236954"], ["updated_at", "2020-04-22 05:36:49.236954"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Course Create (12.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.235510"], ["updated_at", "2020-04-22 05:36:49.235510"]]
 (0.1ms)  begin transaction

CommentTest: test_306


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.251825"], ["updated_at", "2020-04-22 05:36:49.251825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.252158"], ["updated_at", "2020-04-22 05:36:49.252158"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.255519"], ["updated_at", "2020-04-22 05:36:49.255519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.262782"], ["updated_at", "2020-04-22 05:36:49.262782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_233


Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.262496"], ["updated_at", "2020-04-22 05:36:49.262496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.279204"], ["updated_at", "2020-04-22 05:36:49.279204"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.283060"], ["updated_at", "2020-04-22 05:36:49.283060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.285811"], ["updated_at", "2020-04-22 05:36:49.285811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (236.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.062168"], ["updated_at", "2020-04-22 05:36:49.062168"]]
 (0.1ms)  begin transaction

CommentTest: test_884


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.302835"], ["updated_at", "2020-04-22 05:36:49.302835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (74.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.235829"], ["updated_at", "2020-04-22 05:36:49.235829"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.316013"], ["updated_at", "2020-04-22 05:36:49.316013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.317465"], ["updated_at", "2020-04-22 05:36:49.317465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.319706"], ["updated_at", "2020-04-22 05:36:49.319706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  begin transaction

CommentTest: test_80300


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.330966"], ["updated_at", "2020-04-22 05:36:49.330966"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.334902"], ["updated_at", "2020-04-22 05:36:49.334902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_75806


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.341627"], ["updated_at", "2020-04-22 05:36:49.341627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.303796"], ["updated_at", "2020-04-22 05:36:49.303796"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.346540"], ["updated_at", "2020-04-22 05:36:49.346540"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.349894"], ["updated_at", "2020-04-22 05:36:49.349894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_886081


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.357208"], ["updated_at", "2020-04-22 05:36:49.357208"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.362714"], ["updated_at", "2020-04-22 05:36:49.362714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.365657"], ["updated_at", "2020-04-22 05:36:49.365657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_368972


Course Create (38.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.342463"], ["updated_at", "2020-04-22 05:36:49.342463"]]
 (0.1ms)  begin transaction

CommentTest: test_994


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.383879"], ["updated_at", "2020-04-22 05:36:49.383879"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.388508"], ["updated_at", "2020-04-22 05:36:49.388508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.387572"], ["updated_at", "2020-04-22 05:36:49.387572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.394009"], ["updated_at", "2020-04-22 05:36:49.394009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_68


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.396029"], ["updated_at", "2020-04-22 05:36:49.396029"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.9ms)  rollback transaction
Course Create (7.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.398009"], ["updated_at", "2020-04-22 05:36:49.398009"]]
Course Create (13.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.385778"], ["updated_at", "2020-04-22 05:36:49.385778"]]
 (0.1ms)  begin transaction
 (6.0ms)  rollback transaction

CommentTest: test_796327


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.411219"], ["updated_at", "2020-04-22 05:36:49.411219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.411472"], ["updated_at", "2020-04-22 05:36:49.411472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_611053


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.415886"], ["updated_at", "2020-04-22 05:36:49.415886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.415689"], ["updated_at", "2020-04-22 05:36:49.415689"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_430


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.428209"], ["updated_at", "2020-04-22 05:36:49.428209"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.431246"], ["updated_at", "2020-04-22 05:36:49.431246"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.433754"], ["updated_at", "2020-04-22 05:36:49.433754"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_660


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.446543"], ["updated_at", "2020-04-22 05:36:49.446543"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.450463"], ["updated_at", "2020-04-22 05:36:49.450463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (33.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.452438"], ["updated_at", "2020-04-22 05:36:49.452438"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_726


 (0.1ms)  begin transaction

CommentTest: test_226


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.465759"], ["updated_at", "2020-04-22 05:36:49.465759"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.465992"], ["updated_at", "2020-04-22 05:36:49.465992"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.467971"], ["updated_at", "2020-04-22 05:36:49.467971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.468646"], ["updated_at", "2020-04-22 05:36:49.468646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.469747"], ["updated_at", "2020-04-22 05:36:49.469747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.471077"], ["updated_at", "2020-04-22 05:36:49.471077"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (58.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.418311"], ["updated_at", "2020-04-22 05:36:49.418311"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_642


 (0.1ms)  begin transaction

CommentTest: test_406


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.479645"], ["updated_at", "2020-04-22 05:36:49.479645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.481421"], ["updated_at", "2020-04-22 05:36:49.481421"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.482009"], ["updated_at", "2020-04-22 05:36:49.482009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.484716"], ["updated_at", "2020-04-22 05:36:49.484716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.487105"], ["updated_at", "2020-04-22 05:36:49.487105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.479882"], ["updated_at", "2020-04-22 05:36:49.479882"]]
 (0.6ms)  begin transaction

CommentTest: test_566559


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.492713"], ["updated_at", "2020-04-22 05:36:49.492713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.495022"], ["updated_at", "2020-04-22 05:36:49.495022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_868


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (85.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.411274"], ["updated_at", "2020-04-22 05:36:49.411274"]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.500137"], ["updated_at", "2020-04-22 05:36:49.500137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.493673"], ["updated_at", "2020-04-22 05:36:49.493673"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.502872"], ["updated_at", "2020-04-22 05:36:49.502872"]]
 (0.1ms)  begin transaction

CommentTest: test_265


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.504345"], ["updated_at", "2020-04-22 05:36:49.504345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.506756"], ["updated_at", "2020-04-22 05:36:49.506756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_115461


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.513134"], ["updated_at", "2020-04-22 05:36:49.513134"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.516811"], ["updated_at", "2020-04-22 05:36:49.516811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.519956"], ["updated_at", "2020-04-22 05:36:49.519956"]]
 (0.1ms)  begin transaction

CommentTest: test_974678

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.506679"], ["updated_at", "2020-04-22 05:36:49.506679"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.529345"], ["updated_at", "2020-04-22 05:36:49.529345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_229461


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.531653"], ["updated_at", "2020-04-22 05:36:49.531653"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.532954"], ["updated_at", "2020-04-22 05:36:49.532954"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.536432"], ["updated_at", "2020-04-22 05:36:49.536432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.540026"], ["updated_at", "2020-04-22 05:36:49.540026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_586167


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.558845"], ["updated_at", "2020-04-22 05:36:49.558845"]]
 (0.1ms)  begin transaction

CommentTest: test_330


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.562608"], ["updated_at", "2020-04-22 05:36:49.562608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (38.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.525292"], ["updated_at", "2020-04-22 05:36:49.525292"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.564984"], ["updated_at", "2020-04-22 05:36:49.564984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.567570"], ["updated_at", "2020-04-22 05:36:49.567570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.573211"], ["updated_at", "2020-04-22 05:36:49.573211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_140175


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.578002"], ["updated_at", "2020-04-22 05:36:49.578002"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.580836"], ["updated_at", "2020-04-22 05:36:49.580836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_648916


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.583465"], ["updated_at", "2020-04-22 05:36:49.583465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.585000"], ["updated_at", "2020-04-22 05:36:49.585000"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.590538"], ["updated_at", "2020-04-22 05:36:49.590538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_848389


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.593367"], ["updated_at", "2020-04-22 05:36:49.593367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.595919"], ["updated_at", "2020-04-22 05:36:49.595919"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.599041"], ["updated_at", "2020-04-22 05:36:49.599041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.564371"], ["updated_at", "2020-04-22 05:36:49.564371"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.601246"], ["updated_at", "2020-04-22 05:36:49.601246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_855700


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.603175"], ["updated_at", "2020-04-22 05:36:49.603175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_638317


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.610724"], ["updated_at", "2020-04-22 05:36:49.610724"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.608342"], ["updated_at", "2020-04-22 05:36:49.608342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.613965"], ["updated_at", "2020-04-22 05:36:49.613965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.616387"], ["updated_at", "2020-04-22 05:36:49.616387"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_27


 (0.1ms)  SAVEPOINT active_record_1
Course Create (21.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.605507"], ["updated_at", "2020-04-22 05:36:49.605507"]]
Course Create (129.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.498246"], ["updated_at", "2020-04-22 05:36:49.498246"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.629349"], ["updated_at", "2020-04-22 05:36:49.629349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_988408


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.631000"], ["updated_at", "2020-04-22 05:36:49.631000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.631943"], ["updated_at", "2020-04-22 05:36:49.631943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.633584"], ["updated_at", "2020-04-22 05:36:49.633584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_973


 (0.1ms)  begin transaction

CommentTest: test_233393


Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.632136"], ["updated_at", "2020-04-22 05:36:49.632136"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.644210"], ["updated_at", "2020-04-22 05:36:49.644210"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.645773"], ["updated_at", "2020-04-22 05:36:49.645773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.647315"], ["updated_at", "2020-04-22 05:36:49.647315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.647753"], ["updated_at", "2020-04-22 05:36:49.647753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.649388"], ["updated_at", "2020-04-22 05:36:49.649388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_473021


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.658711"], ["updated_at", "2020-04-22 05:36:49.658711"]]
 (0.1ms)  begin transaction

CommentTest: test_754658


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.661300"], ["updated_at", "2020-04-22 05:36:49.661300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.661923"], ["updated_at", "2020-04-22 05:36:49.661923"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.663296"], ["updated_at", "2020-04-22 05:36:49.663296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.664208"], ["updated_at", "2020-04-22 05:36:49.664208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.666443"], ["updated_at", "2020-04-22 05:36:49.666443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_797614


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_391281


Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.674661"], ["updated_at", "2020-04-22 05:36:49.674661"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.677457"], ["updated_at", "2020-04-22 05:36:49.677457"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.679676"], ["updated_at", "2020-04-22 05:36:49.679676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.680341"], ["updated_at", "2020-04-22 05:36:49.680341"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.682021"], ["updated_at", "2020-04-22 05:36:49.682021"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.682363"], ["updated_at", "2020-04-22 05:36:49.682363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_659367


 (0.1ms)  begin transaction

CommentTest: test_966354


 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.692791"], ["updated_at", "2020-04-22 05:36:49.692791"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.695004"], ["updated_at", "2020-04-22 05:36:49.695004"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.697102"], ["updated_at", "2020-04-22 05:36:49.697102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.697907"], ["updated_at", "2020-04-22 05:36:49.697907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.700101"], ["updated_at", "2020-04-22 05:36:49.700101"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.700345"], ["updated_at", "2020-04-22 05:36:49.700345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_673780


 (0.1ms)  begin transaction

CommentTest: test_237859


 (0.1ms)  SAVEPOINT active_record_1
Course Create (85.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.626513"], ["updated_at", "2020-04-22 05:36:49.626513"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.712338"], ["updated_at", "2020-04-22 05:36:49.712338"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.714520"], ["updated_at", "2020-04-22 05:36:49.714520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.714983"], ["updated_at", "2020-04-22 05:36:49.714983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.717179"], ["updated_at", "2020-04-22 05:36:49.717179"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.717734"], ["updated_at", "2020-04-22 05:36:49.717734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_729


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.728939"], ["updated_at", "2020-04-22 05:36:49.728939"]]
 (0.1ms)  begin transaction

CommentTest: test_120254


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.732072"], ["updated_at", "2020-04-22 05:36:49.732072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.732465"], ["updated_at", "2020-04-22 05:36:49.732465"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.734135"], ["updated_at", "2020-04-22 05:36:49.734135"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.735583"], ["updated_at", "2020-04-22 05:36:49.735583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.738527"], ["updated_at", "2020-04-22 05:36:49.738527"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_572


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.744017"], ["updated_at", "2020-04-22 05:36:49.744017"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_528854


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.746625"], ["updated_at", "2020-04-22 05:36:49.746625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.748999"], ["updated_at", "2020-04-22 05:36:49.748999"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.748917"], ["updated_at", "2020-04-22 05:36:49.748917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.751645"], ["updated_at", "2020-04-22 05:36:49.751645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (69.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Course Create (116.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.715622"], ["updated_at", "2020-04-22 05:36:49.715622"]]
 (0.1ms)  begin transaction

CommentTest: test_839


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.835221"], ["updated_at", "2020-04-22 05:36:49.835221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.838178"], ["updated_at", "2020-04-22 05:36:49.838178"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.753930"], ["updated_at", "2020-04-22 05:36:49.753930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_176488


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.849618"], ["updated_at", "2020-04-22 05:36:49.849618"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.852185"], ["updated_at", "2020-04-22 05:36:49.852185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.855582"], ["updated_at", "2020-04-22 05:36:49.855582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_361375


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_226477


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.866830"], ["updated_at", "2020-04-22 05:36:49.866830"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.868991"], ["updated_at", "2020-04-22 05:36:49.868991"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.874508"], ["updated_at", "2020-04-22 05:36:49.874508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.870207"], ["updated_at", "2020-04-22 05:36:49.870207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.877353"], ["updated_at", "2020-04-22 05:36:49.877353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.879460"], ["updated_at", "2020-04-22 05:36:49.879460"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_739389


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_698446


Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.887221"], ["updated_at", "2020-04-22 05:36:49.887221"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.889339"], ["updated_at", "2020-04-22 05:36:49.889339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.888899"], ["updated_at", "2020-04-22 05:36:49.888899"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.891546"], ["updated_at", "2020-04-22 05:36:49.891546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.891106"], ["updated_at", "2020-04-22 05:36:49.891106"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.893585"], ["updated_at", "2020-04-22 05:36:49.893585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_30218


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.900078"], ["updated_at", "2020-04-22 05:36:49.900078"]]
 (0.1ms)  begin transaction

CommentTest: test_839709


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.902482"], ["updated_at", "2020-04-22 05:36:49.902482"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.902847"], ["updated_at", "2020-04-22 05:36:49.902847"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.904544"], ["updated_at", "2020-04-22 05:36:49.904544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.906357"], ["updated_at", "2020-04-22 05:36:49.906357"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.909982"], ["updated_at", "2020-04-22 05:36:49.909982"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_815554


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (82.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.835063"], ["updated_at", "2020-04-22 05:36:49.835063"]]
 (0.1ms)  begin transaction

CommentTest: test_397180


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.919749"], ["updated_at", "2020-04-22 05:36:49.919749"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.919755"], ["updated_at", "2020-04-22 05:36:49.919755"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.921950"], ["updated_at", "2020-04-22 05:36:49.921950"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.922454"], ["updated_at", "2020-04-22 05:36:49.922454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.924066"], ["updated_at", "2020-04-22 05:36:49.924066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.932990"], ["updated_at", "2020-04-22 05:36:49.932990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.935915"], ["updated_at", "2020-04-22 05:36:49.935915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_413941


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.938311"], ["updated_at", "2020-04-22 05:36:49.938311"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.939279"], ["updated_at", "2020-04-22 05:36:49.939279"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.947829"], ["updated_at", "2020-04-22 05:36:49.947829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.2ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.956479"], ["updated_at", "2020-04-22 05:36:49.956479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_127


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.965890"], ["updated_at", "2020-04-22 05:36:49.965890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.968431"], ["updated_at", "2020-04-22 05:36:49.968431"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.973767"], ["updated_at", "2020-04-22 05:36:49.973767"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_881995


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_790


Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.980779"], ["updated_at", "2020-04-22 05:36:49.980779"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.986358"], ["updated_at", "2020-04-22 05:36:49.986358"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.991184"], ["updated_at", "2020-04-22 05:36:49.991184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:49.992190"], ["updated_at", "2020-04-22 05:36:49.992190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.994211"], ["updated_at", "2020-04-22 05:36:49.994211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:49.999228"], ["updated_at", "2020-04-22 05:36:49.999228"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  begin transaction

CommentTest: test_894


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.007416"], ["updated_at", "2020-04-22 05:36:50.007416"]]
 (2.0ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.010515"], ["updated_at", "2020-04-22 05:36:50.010515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.013034"], ["updated_at", "2020-04-22 05:36:50.013034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_547361


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.016311"], ["updated_at", "2020-04-22 05:36:50.016311"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.019152"], ["updated_at", "2020-04-22 05:36:50.019152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_228


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.023656"], ["updated_at", "2020-04-22 05:36:50.023656"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.023381"], ["updated_at", "2020-04-22 05:36:50.023381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.026165"], ["updated_at", "2020-04-22 05:36:50.026165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.029152"], ["updated_at", "2020-04-22 05:36:50.029152"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_774897


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_187


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.037902"], ["updated_at", "2020-04-22 05:36:50.037902"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.040870"], ["updated_at", "2020-04-22 05:36:50.040870"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.041844"], ["updated_at", "2020-04-22 05:36:50.041844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.043441"], ["updated_at", "2020-04-22 05:36:50.043441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.043673"], ["updated_at", "2020-04-22 05:36:50.043673"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.045488"], ["updated_at", "2020-04-22 05:36:50.045488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (135.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.916605"], ["updated_at", "2020-04-22 05:36:49.916605"]]
 (0.1ms)  begin transaction

CommentTest: test_512231


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.054233"], ["updated_at", "2020-04-22 05:36:50.054233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.057636"], ["updated_at", "2020-04-22 05:36:50.057636"]]
 (0.1ms)  begin transaction

CommentTest: test_931


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.058502"], ["updated_at", "2020-04-22 05:36:50.058502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.060131"], ["updated_at", "2020-04-22 05:36:50.060131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.063573"], ["updated_at", "2020-04-22 05:36:50.063573"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.060090"], ["updated_at", "2020-04-22 05:36:50.060090"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_124380


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.067791"], ["updated_at", "2020-04-22 05:36:50.067791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.070044"], ["updated_at", "2020-04-22 05:36:50.070044"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_634414


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.074470"], ["updated_at", "2020-04-22 05:36:50.074470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.078576"], ["updated_at", "2020-04-22 05:36:50.078576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.069159"], ["updated_at", "2020-04-22 05:36:50.069159"]]

CommentTest: test_527


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.080792"], ["updated_at", "2020-04-22 05:36:50.080792"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.081333"], ["updated_at", "2020-04-22 05:36:50.081333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.083331"], ["updated_at", "2020-04-22 05:36:50.083331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_69529


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.090483"], ["updated_at", "2020-04-22 05:36:50.090483"]]
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.081027"], ["updated_at", "2020-04-22 05:36:50.081027"]]
 (0.1ms)  begin transaction

CommentTest: test_822859


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.093454"], ["updated_at", "2020-04-22 05:36:50.093454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.094467"], ["updated_at", "2020-04-22 05:36:50.094467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.097296"], ["updated_at", "2020-04-22 05:36:50.097296"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.097096"], ["updated_at", "2020-04-22 05:36:50.097096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.094517"], ["updated_at", "2020-04-22 05:36:50.094517"]]
 (0.1ms)  begin transaction

CommentTest: test_460


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.107061"], ["updated_at", "2020-04-22 05:36:50.107061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_944250


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.108996"], ["updated_at", "2020-04-22 05:36:50.108996"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.109168"], ["updated_at", "2020-04-22 05:36:50.109168"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.115449"], ["updated_at", "2020-04-22 05:36:50.115449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_511567


Course Create (11.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.106946"], ["updated_at", "2020-04-22 05:36:50.106946"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.118421"], ["updated_at", "2020-04-22 05:36:50.118421"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.120815"], ["updated_at", "2020-04-22 05:36:50.120815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.124394"], ["updated_at", "2020-04-22 05:36:50.124394"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_635537


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.131228"], ["updated_at", "2020-04-22 05:36:50.131228"]]
 (0.1ms)  begin transaction

CommentTest: test_124


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.134726"], ["updated_at", "2020-04-22 05:36:50.134726"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.135092"], ["updated_at", "2020-04-22 05:36:50.135092"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.138038"], ["updated_at", "2020-04-22 05:36:50.138038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.136939"], ["updated_at", "2020-04-22 05:36:50.136939"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.141619"], ["updated_at", "2020-04-22 05:36:50.141619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_346


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.152408"], ["updated_at", "2020-04-22 05:36:50.152408"]]
 (4.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.158045"], ["updated_at", "2020-04-22 05:36:50.158045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_952445


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.160387"], ["updated_at", "2020-04-22 05:36:50.160387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.162511"], ["updated_at", "2020-04-22 05:36:50.162511"]]
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_227


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.172887"], ["updated_at", "2020-04-22 05:36:50.172887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.172488"], ["updated_at", "2020-04-22 05:36:50.172488"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.175117"], ["updated_at", "2020-04-22 05:36:50.175117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.177206"], ["updated_at", "2020-04-22 05:36:50.177206"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (6.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.174974"], ["updated_at", "2020-04-22 05:36:50.174974"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_207


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.187680"], ["updated_at", "2020-04-22 05:36:50.187680"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.192041"], ["updated_at", "2020-04-22 05:36:50.192041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (3.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.194079"], ["updated_at", "2020-04-22 05:36:50.194079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_400143


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.200815"], ["updated_at", "2020-04-22 05:36:50.200815"]]
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_785


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.209600"], ["updated_at", "2020-04-22 05:36:50.209600"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.214789"], ["updated_at", "2020-04-22 05:36:50.214789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.217132"], ["updated_at", "2020-04-22 05:36:50.217132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.219346"], ["updated_at", "2020-04-22 05:36:50.219346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.223894"], ["updated_at", "2020-04-22 05:36:50.223894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (109.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.118410"], ["updated_at", "2020-04-22 05:36:50.118410"]]

CommentTest: test_929


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.230131"], ["updated_at", "2020-04-22 05:36:50.230131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.232082"], ["updated_at", "2020-04-22 05:36:50.232082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_269328


Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.229875"], ["updated_at", "2020-04-22 05:36:50.229875"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.243513"], ["updated_at", "2020-04-22 05:36:50.243513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_70546


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.246521"], ["updated_at", "2020-04-22 05:36:50.246521"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_619


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.247345"], ["updated_at", "2020-04-22 05:36:50.247345"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.259942"], ["updated_at", "2020-04-22 05:36:50.259942"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.260607"], ["updated_at", "2020-04-22 05:36:50.260607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.263939"], ["updated_at", "2020-04-22 05:36:50.263939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.264235"], ["updated_at", "2020-04-22 05:36:50.264235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.266524"], ["updated_at", "2020-04-22 05:36:50.266524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_199106


 (0.1ms)  begin transaction

CommentTest: test_760


 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.276282"], ["updated_at", "2020-04-22 05:36:50.276282"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.275929"], ["updated_at", "2020-04-22 05:36:50.275929"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.279516"], ["updated_at", "2020-04-22 05:36:50.279516"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.280754"], ["updated_at", "2020-04-22 05:36:50.280754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.281521"], ["updated_at", "2020-04-22 05:36:50.281521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.282892"], ["updated_at", "2020-04-22 05:36:50.282892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_817


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.290697"], ["updated_at", "2020-04-22 05:36:50.290697"]]
 (0.1ms)  begin transaction

CommentTest: test_489353


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.293637"], ["updated_at", "2020-04-22 05:36:50.293637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.296150"], ["updated_at", "2020-04-22 05:36:50.296150"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.296011"], ["updated_at", "2020-04-22 05:36:50.296011"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.299041"], ["updated_at", "2020-04-22 05:36:50.299041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.301542"], ["updated_at", "2020-04-22 05:36:50.301542"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_221


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.307942"], ["updated_at", "2020-04-22 05:36:50.307942"]]
 (0.3ms)  begin transaction

CommentTest: test_457056


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.313913"], ["updated_at", "2020-04-22 05:36:50.313913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.313806"], ["updated_at", "2020-04-22 05:36:50.313806"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.316124"], ["updated_at", "2020-04-22 05:36:50.316124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.317271"], ["updated_at", "2020-04-22 05:36:50.317271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.319424"], ["updated_at", "2020-04-22 05:36:50.319424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_448


 (0.5ms)  rollback transaction
Course Create (84.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.242728"], ["updated_at", "2020-04-22 05:36:50.242728"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_350618


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.330065"], ["updated_at", "2020-04-22 05:36:50.330065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.330302"], ["updated_at", "2020-04-22 05:36:50.330302"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.332877"], ["updated_at", "2020-04-22 05:36:50.332877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.334090"], ["updated_at", "2020-04-22 05:36:50.334090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.336743"], ["updated_at", "2020-04-22 05:36:50.336743"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.327890"], ["updated_at", "2020-04-22 05:36:50.327890"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.341082"], ["updated_at", "2020-04-22 05:36:50.341082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_821452


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.343757"], ["updated_at", "2020-04-22 05:36:50.343757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_543136


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.351267"], ["updated_at", "2020-04-22 05:36:50.351267"]]
 (0.1ms)  begin transaction

CommentTest: test_470


Course Create (11.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.343613"], ["updated_at", "2020-04-22 05:36:50.343613"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.357088"], ["updated_at", "2020-04-22 05:36:50.357088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.358254"], ["updated_at", "2020-04-22 05:36:50.358254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.359411"], ["updated_at", "2020-04-22 05:36:50.359411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.360507"], ["updated_at", "2020-04-22 05:36:50.360507"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.356767"], ["updated_at", "2020-04-22 05:36:50.356767"]]
 (0.1ms)  begin transaction

CommentTest: test_521462


 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.370137"], ["updated_at", "2020-04-22 05:36:50.370137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_192882


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.373251"], ["updated_at", "2020-04-22 05:36:50.373251"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.373712"], ["updated_at", "2020-04-22 05:36:50.373712"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.376808"], ["updated_at", "2020-04-22 05:36:50.376808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.380767"], ["updated_at", "2020-04-22 05:36:50.380767"]]
 (0.1ms)  begin transaction

CommentTest: test_29


Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.371881"], ["updated_at", "2020-04-22 05:36:50.371881"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.386401"], ["updated_at", "2020-04-22 05:36:50.386401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.388919"], ["updated_at", "2020-04-22 05:36:50.388919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.384193"], ["updated_at", "2020-04-22 05:36:50.384193"]]
 (0.1ms)  begin transaction

CommentTest: test_750875


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.400325"], ["updated_at", "2020-04-22 05:36:50.400325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  begin transaction

Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.402983"], ["updated_at", "2020-04-22 05:36:50.402983"]]

CommentTest: test_872866


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.407460"], ["updated_at", "2020-04-22 05:36:50.407460"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.411476"], ["updated_at", "2020-04-22 05:36:50.411476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.400498"], ["updated_at", "2020-04-22 05:36:50.400498"]]
 (0.1ms)  begin transaction

CommentTest: test_38


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.415847"], ["updated_at", "2020-04-22 05:36:50.415847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.416106"], ["updated_at", "2020-04-22 05:36:50.416106"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.418398"], ["updated_at", "2020-04-22 05:36:50.418398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (783.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:49.643117"], ["updated_at", "2020-04-22 05:36:49.643117"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.429370"], ["updated_at", "2020-04-22 05:36:50.429370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_282028


Course Create (14.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.416029"], ["updated_at", "2020-04-22 05:36:50.416029"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.431704"], ["updated_at", "2020-04-22 05:36:50.431704"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.433572"], ["updated_at", "2020-04-22 05:36:50.433572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_126319


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.436025"], ["updated_at", "2020-04-22 05:36:50.436025"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_301


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.441447"], ["updated_at", "2020-04-22 05:36:50.441447"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.447712"], ["updated_at", "2020-04-22 05:36:50.447712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_337


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.451818"], ["updated_at", "2020-04-22 05:36:50.451818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.452737"], ["updated_at", "2020-04-22 05:36:50.452737"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.457455"], ["updated_at", "2020-04-22 05:36:50.457455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.462994"], ["updated_at", "2020-04-22 05:36:50.462994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_598


 (0.1ms)  begin transaction

CommentTest: test_735489


Course Create (41.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.432327"], ["updated_at", "2020-04-22 05:36:50.432327"]]
 (1.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.476558"], ["updated_at", "2020-04-22 05:36:50.476558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.479629"], ["updated_at", "2020-04-22 05:36:50.479629"]]
Course Create (36.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.443432"], ["updated_at", "2020-04-22 05:36:50.443432"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.482596"], ["updated_at", "2020-04-22 05:36:50.482596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.484726"], ["updated_at", "2020-04-22 05:36:50.484726"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (13.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.474410"], ["updated_at", "2020-04-22 05:36:50.474410"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.492937"], ["updated_at", "2020-04-22 05:36:50.492937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_408


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.495181"], ["updated_at", "2020-04-22 05:36:50.495181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.496122"], ["updated_at", "2020-04-22 05:36:50.496122"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.498741"], ["updated_at", "2020-04-22 05:36:50.498741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_978263


 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.500827"], ["updated_at", "2020-04-22 05:36:50.500827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.501667"], ["updated_at", "2020-04-22 05:36:50.501667"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.507290"], ["updated_at", "2020-04-22 05:36:50.507290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_740


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.512828"], ["updated_at", "2020-04-22 05:36:50.512828"]]

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.514098"], ["updated_at", "2020-04-22 05:36:50.514098"]]

CommentTest: test_655


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.515689"], ["updated_at", "2020-04-22 05:36:50.515689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.517497"], ["updated_at", "2020-04-22 05:36:50.517497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (7.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.516496"], ["updated_at", "2020-04-22 05:36:50.516496"]]
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_975181


CommentTest: test_288



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.526808"], ["updated_at", "2020-04-22 05:36:50.526808"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.530021"], ["updated_at", "2020-04-22 05:36:50.530021"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.530184"], ["updated_at", "2020-04-22 05:36:50.530184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.531967"], ["updated_at", "2020-04-22 05:36:50.531967"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.532060"], ["updated_at", "2020-04-22 05:36:50.532060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_60


 (0.2ms)  SAVEPOINT active_record_1
 (4.4ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.546026"], ["updated_at", "2020-04-22 05:36:50.546026"]]
 (0.6ms)  begin transaction

Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.527384"], ["updated_at", "2020-04-22 05:36:50.527384"]]

CommentTest: test_504


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.550027"], ["updated_at", "2020-04-22 05:36:50.550027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.551981"], ["updated_at", "2020-04-22 05:36:50.551981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.552264"], ["updated_at", "2020-04-22 05:36:50.552264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.558060"], ["updated_at", "2020-04-22 05:36:50.558060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_162


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_191552


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.566959"], ["updated_at", "2020-04-22 05:36:50.566959"]]
Course Create (15.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.551732"], ["updated_at", "2020-04-22 05:36:50.551732"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.570095"], ["updated_at", "2020-04-22 05:36:50.570095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.570499"], ["updated_at", "2020-04-22 05:36:50.570499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.573175"], ["updated_at", "2020-04-22 05:36:50.573175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.574038"], ["updated_at", "2020-04-22 05:36:50.574038"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_307


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_832


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.582138"], ["updated_at", "2020-04-22 05:36:50.582138"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.585779"], ["updated_at", "2020-04-22 05:36:50.585779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.585437"], ["updated_at", "2020-04-22 05:36:50.585437"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.587758"], ["updated_at", "2020-04-22 05:36:50.587758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.591330"], ["updated_at", "2020-04-22 05:36:50.591330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.593523"], ["updated_at", "2020-04-22 05:36:50.593523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_261


 (0.1ms)  begin transaction

CommentTest: test_353


 (0.3ms)  SAVEPOINT active_record_1
Course Create (35.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.569426"], ["updated_at", "2020-04-22 05:36:50.569426"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.604627"], ["updated_at", "2020-04-22 05:36:50.604627"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.607220"], ["updated_at", "2020-04-22 05:36:50.607220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.607989"], ["updated_at", "2020-04-22 05:36:50.607989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.609803"], ["updated_at", "2020-04-22 05:36:50.609803"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.610555"], ["updated_at", "2020-04-22 05:36:50.610555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_144928


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.637043"], ["updated_at", "2020-04-22 05:36:50.637043"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.641045"], ["updated_at", "2020-04-22 05:36:50.641045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_576


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.643198"], ["updated_at", "2020-04-22 05:36:50.643198"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.643947"], ["updated_at", "2020-04-22 05:36:50.643947"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.648080"], ["updated_at", "2020-04-22 05:36:50.648080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_512614


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.651042"], ["updated_at", "2020-04-22 05:36:50.651042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.652776"], ["updated_at", "2020-04-22 05:36:50.652776"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.656901"], ["updated_at", "2020-04-22 05:36:50.656901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.659029"], ["updated_at", "2020-04-22 05:36:50.659029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_101


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.662686"], ["updated_at", "2020-04-22 05:36:50.662686"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.665425"], ["updated_at", "2020-04-22 05:36:50.665425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_547389


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.668243"], ["updated_at", "2020-04-22 05:36:50.668243"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.668717"], ["updated_at", "2020-04-22 05:36:50.668717"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.671596"], ["updated_at", "2020-04-22 05:36:50.671596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.673705"], ["updated_at", "2020-04-22 05:36:50.673705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_878


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.677871"], ["updated_at", "2020-04-22 05:36:50.677871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.681769"], ["updated_at", "2020-04-22 05:36:50.681769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.0ms)  rollback transaction
Course Create (87.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.605806"], ["updated_at", "2020-04-22 05:36:50.605806"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.684046"], ["updated_at", "2020-04-22 05:36:50.684046"]]
 (0.1ms)  begin transaction

CommentTest: test_139715


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.696312"], ["updated_at", "2020-04-22 05:36:50.696312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.699409"], ["updated_at", "2020-04-22 05:36:50.699409"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.697022"], ["updated_at", "2020-04-22 05:36:50.697022"]]
 (0.1ms)  begin transaction

CommentTest: test_815


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.710529"], ["updated_at", "2020-04-22 05:36:50.710529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.713602"], ["updated_at", "2020-04-22 05:36:50.713602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_487


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.717512"], ["updated_at", "2020-04-22 05:36:50.717512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.710872"], ["updated_at", "2020-04-22 05:36:50.710872"]]
 (0.1ms)  begin transaction

CommentTest: test_929098


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.725947"], ["updated_at", "2020-04-22 05:36:50.725947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.729033"], ["updated_at", "2020-04-22 05:36:50.729033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.729311"], ["updated_at", "2020-04-22 05:36:50.729311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.732574"], ["updated_at", "2020-04-22 05:36:50.732574"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (12.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.726565"], ["updated_at", "2020-04-22 05:36:50.726565"]]
 (0.2ms)  begin transaction

CommentTest: test_73


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.742266"], ["updated_at", "2020-04-22 05:36:50.742266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.745225"], ["updated_at", "2020-04-22 05:36:50.745225"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_674


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.749601"], ["updated_at", "2020-04-22 05:36:50.749601"]]
Course Create (14.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.743229"], ["updated_at", "2020-04-22 05:36:50.743229"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.759978"], ["updated_at", "2020-04-22 05:36:50.759978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.759991"], ["updated_at", "2020-04-22 05:36:50.759991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.768215"], ["updated_at", "2020-04-22 05:36:50.768215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.769108"], ["updated_at", "2020-04-22 05:36:50.769108"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_31076


 (0.3ms)  begin transaction

CommentTest: test_610


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.781109"], ["updated_at", "2020-04-22 05:36:50.781109"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.785392"], ["updated_at", "2020-04-22 05:36:50.785392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_77


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.787688"], ["updated_at", "2020-04-22 05:36:50.787688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.791035"], ["updated_at", "2020-04-22 05:36:50.791035"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.794010"], ["updated_at", "2020-04-22 05:36:50.794010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_599


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.800666"], ["updated_at", "2020-04-22 05:36:50.800666"]]
Course Create (16.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.777223"], ["updated_at", "2020-04-22 05:36:50.777223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.804647"], ["updated_at", "2020-04-22 05:36:50.804647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.807908"], ["updated_at", "2020-04-22 05:36:50.807908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_525


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.817114"], ["updated_at", "2020-04-22 05:36:50.817114"]]
 (0.1ms)  begin transaction

CommentTest: test_39673


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.819714"], ["updated_at", "2020-04-22 05:36:50.819714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.819676"], ["updated_at", "2020-04-22 05:36:50.819676"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.823751"], ["updated_at", "2020-04-22 05:36:50.823751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.825869"], ["updated_at", "2020-04-22 05:36:50.825869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.828764"], ["updated_at", "2020-04-22 05:36:50.828764"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_606


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.837748"], ["updated_at", "2020-04-22 05:36:50.837748"]]
 (0.1ms)  begin transaction

CommentTest: test_428755


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.843200"], ["updated_at", "2020-04-22 05:36:50.843200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.843818"], ["updated_at", "2020-04-22 05:36:50.843818"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.846004"], ["updated_at", "2020-04-22 05:36:50.846004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.851123"], ["updated_at", "2020-04-22 05:36:50.851123"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.853372"], ["updated_at", "2020-04-22 05:36:50.853372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_758124


Course Create (89.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.800473"], ["updated_at", "2020-04-22 05:36:50.800473"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.892342"], ["updated_at", "2020-04-22 05:36:50.892342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.894537"], ["updated_at", "2020-04-22 05:36:50.894537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_309


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.908687"], ["updated_at", "2020-04-22 05:36:50.908687"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.912687"], ["updated_at", "2020-04-22 05:36:50.912687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.915566"], ["updated_at", "2020-04-22 05:36:50.915566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_632


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.921122"], ["updated_at", "2020-04-22 05:36:50.921122"]]
Course Create (37.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.890998"], ["updated_at", "2020-04-22 05:36:50.890998"]]
 (0.1ms)  begin transaction

CommentTest: test_914


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.931810"], ["updated_at", "2020-04-22 05:36:50.931810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.928627"], ["updated_at", "2020-04-22 05:36:50.928627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.934623"], ["updated_at", "2020-04-22 05:36:50.934623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.935741"], ["updated_at", "2020-04-22 05:36:50.935741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_805747


Course Create (12.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.933278"], ["updated_at", "2020-04-22 05:36:50.933278"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.947920"], ["updated_at", "2020-04-22 05:36:50.947920"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.950429"], ["updated_at", "2020-04-22 05:36:50.950429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.5ms)  begin transaction

CommentTest: test_895


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.957868"], ["updated_at", "2020-04-22 05:36:50.957868"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_264


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.960924"], ["updated_at", "2020-04-22 05:36:50.960924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.963055"], ["updated_at", "2020-04-22 05:36:50.963055"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.964615"], ["updated_at", "2020-04-22 05:36:50.964615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.966222"], ["updated_at", "2020-04-22 05:36:50.966222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.968489"], ["updated_at", "2020-04-22 05:36:50.968489"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_219


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.983528"], ["updated_at", "2020-04-22 05:36:50.983528"]]
 (0.2ms)  begin transaction

CommentTest: test_285


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.987780"], ["updated_at", "2020-04-22 05:36:50.987780"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.993441"], ["updated_at", "2020-04-22 05:36:50.993441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.995866"], ["updated_at", "2020-04-22 05:36:50.995866"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:50.993953"], ["updated_at", "2020-04-22 05:36:50.993953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:50.999122"], ["updated_at", "2020-04-22 05:36:50.999122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_138


 (0.1ms)  SAVEPOINT active_record_1
Course Create (57.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.947121"], ["updated_at", "2020-04-22 05:36:50.947121"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.006270"], ["updated_at", "2020-04-22 05:36:51.006270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.010089"], ["updated_at", "2020-04-22 05:36:51.010089"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_140


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.016399"], ["updated_at", "2020-04-22 05:36:51.016399"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.020067"], ["updated_at", "2020-04-22 05:36:51.020067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.025067"], ["updated_at", "2020-04-22 05:36:51.025067"]]
 (0.1ms)  begin transaction

CommentTest: test_263180


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.028053"], ["updated_at", "2020-04-22 05:36:51.028053"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.032258"], ["updated_at", "2020-04-22 05:36:51.032258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.034807"], ["updated_at", "2020-04-22 05:36:51.034807"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_347


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_988981


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.048717"], ["updated_at", "2020-04-22 05:36:51.048717"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.051201"], ["updated_at", "2020-04-22 05:36:51.051201"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.052419"], ["updated_at", "2020-04-22 05:36:51.052419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.055004"], ["updated_at", "2020-04-22 05:36:51.055004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.057417"], ["updated_at", "2020-04-22 05:36:51.057417"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.060094"], ["updated_at", "2020-04-22 05:36:51.060094"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_340773


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.067444"], ["updated_at", "2020-04-22 05:36:51.067444"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.069967"], ["updated_at", "2020-04-22 05:36:51.069967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.075831"], ["updated_at", "2020-04-22 05:36:51.075831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_854


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.082247"], ["updated_at", "2020-04-22 05:36:51.082247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_674175


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.085808"], ["updated_at", "2020-04-22 05:36:51.085808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (87.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.004139"], ["updated_at", "2020-04-22 05:36:51.004139"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.094314"], ["updated_at", "2020-04-22 05:36:51.094314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.096813"], ["updated_at", "2020-04-22 05:36:51.096813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.099001"], ["updated_at", "2020-04-22 05:36:51.099001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_861


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_836


Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.108494"], ["updated_at", "2020-04-22 05:36:51.108494"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.112686"], ["updated_at", "2020-04-22 05:36:51.112686"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.115185"], ["updated_at", "2020-04-22 05:36:51.115185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.115207"], ["updated_at", "2020-04-22 05:36:51.115207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.117376"], ["updated_at", "2020-04-22 05:36:51.117376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.118807"], ["updated_at", "2020-04-22 05:36:51.118807"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (36.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.092967"], ["updated_at", "2020-04-22 05:36:51.092967"]]
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.131711"], ["updated_at", "2020-04-22 05:36:51.131711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.133925"], ["updated_at", "2020-04-22 05:36:51.133925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_743


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_201


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.0ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.137386"], ["updated_at", "2020-04-22 05:36:51.137386"]]
 (0.1ms)  begin transaction

CommentTest: test_415122


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.149218"], ["updated_at", "2020-04-22 05:36:51.149218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.150551"], ["updated_at", "2020-04-22 05:36:51.150551"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.151549"], ["updated_at", "2020-04-22 05:36:51.151549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.153426"], ["updated_at", "2020-04-22 05:36:51.153426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.156735"], ["updated_at", "2020-04-22 05:36:51.156735"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_92


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (22.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.142819"], ["updated_at", "2020-04-22 05:36:51.142819"]]
 (0.1ms)  begin transaction

CommentTest: test_448200


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.168533"], ["updated_at", "2020-04-22 05:36:51.168533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.171553"], ["updated_at", "2020-04-22 05:36:51.171553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.164320"], ["updated_at", "2020-04-22 05:36:51.164320"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.176655"], ["updated_at", "2020-04-22 05:36:51.176655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_389


Course Create (18.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.168512"], ["updated_at", "2020-04-22 05:36:51.168512"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.185970"], ["updated_at", "2020-04-22 05:36:51.185970"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.191448"], ["updated_at", "2020-04-22 05:36:51.191448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.194097"], ["updated_at", "2020-04-22 05:36:51.194097"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_325109


 (0.1ms)  begin transaction

CommentTest: test_173


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.208023"], ["updated_at", "2020-04-22 05:36:51.208023"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.208121"], ["updated_at", "2020-04-22 05:36:51.208121"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.211351"], ["updated_at", "2020-04-22 05:36:51.211351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.213247"], ["updated_at", "2020-04-22 05:36:51.213247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.214834"], ["updated_at", "2020-04-22 05:36:51.214834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.217517"], ["updated_at", "2020-04-22 05:36:51.217517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_44241


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (37.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.190572"], ["updated_at", "2020-04-22 05:36:51.190572"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.230713"], ["updated_at", "2020-04-22 05:36:51.230713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_478


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.233088"], ["updated_at", "2020-04-22 05:36:51.233088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.233098"], ["updated_at", "2020-04-22 05:36:51.233098"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.236869"], ["updated_at", "2020-04-22 05:36:51.236869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.240388"], ["updated_at", "2020-04-22 05:36:51.240388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_822


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.243864"], ["updated_at", "2020-04-22 05:36:51.243864"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.246733"], ["updated_at", "2020-04-22 05:36:51.246733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_754


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.248925"], ["updated_at", "2020-04-22 05:36:51.248925"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.250622"], ["updated_at", "2020-04-22 05:36:51.250622"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.253680"], ["updated_at", "2020-04-22 05:36:51.253680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.258837"], ["updated_at", "2020-04-22 05:36:51.258837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_896


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.262457"], ["updated_at", "2020-04-22 05:36:51.262457"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.267234"], ["updated_at", "2020-04-22 05:36:51.267234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.269430"], ["updated_at", "2020-04-22 05:36:51.269430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_488


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_601


Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.274900"], ["updated_at", "2020-04-22 05:36:51.274900"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.280107"], ["updated_at", "2020-04-22 05:36:51.280107"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.280955"], ["updated_at", "2020-04-22 05:36:51.280955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.283151"], ["updated_at", "2020-04-22 05:36:51.283151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.283501"], ["updated_at", "2020-04-22 05:36:51.283501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.285227"], ["updated_at", "2020-04-22 05:36:51.285227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_533


 (0.1ms)  begin transaction

CommentTest: test_420


Course Create (813.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:50.479912"], ["updated_at", "2020-04-22 05:36:50.479912"]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.300810"], ["updated_at", "2020-04-22 05:36:51.300810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.300111"], ["updated_at", "2020-04-22 05:36:51.300111"]]
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.302996"], ["updated_at", "2020-04-22 05:36:51.302996"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.303574"], ["updated_at", "2020-04-22 05:36:51.303574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.308880"], ["updated_at", "2020-04-22 05:36:51.308880"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_27785


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.316326"], ["updated_at", "2020-04-22 05:36:51.316326"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.319247"], ["updated_at", "2020-04-22 05:36:51.319247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.322275"], ["updated_at", "2020-04-22 05:36:51.322275"]]
 (0.1ms)  begin transaction

CommentTest: test_24


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.324962"], ["updated_at", "2020-04-22 05:36:51.324962"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.327622"], ["updated_at", "2020-04-22 05:36:51.327622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.329840"], ["updated_at", "2020-04-22 05:36:51.329840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_554426


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.333031"], ["updated_at", "2020-04-22 05:36:51.333031"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.335946"], ["updated_at", "2020-04-22 05:36:51.335946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.339305"], ["updated_at", "2020-04-22 05:36:51.339305"]]
 (0.1ms)  begin transaction

CommentTest: test_935


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.343462"], ["updated_at", "2020-04-22 05:36:51.343462"]]
 (0.1ms)  begin transaction

CommentTest: test_133364


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.350390"], ["updated_at", "2020-04-22 05:36:51.350390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.350759"], ["updated_at", "2020-04-22 05:36:51.350759"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.353658"], ["updated_at", "2020-04-22 05:36:51.353658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.358823"], ["updated_at", "2020-04-22 05:36:51.358823"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.352850"], ["updated_at", "2020-04-22 05:36:51.352850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_942449


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.369605"], ["updated_at", "2020-04-22 05:36:51.369605"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.372985"], ["updated_at", "2020-04-22 05:36:51.372985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.375385"], ["updated_at", "2020-04-22 05:36:51.375385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (11.0ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_580


 (0.5ms)  begin transaction

CommentTest: test_18982


 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.387637"], ["updated_at", "2020-04-22 05:36:51.387637"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.390977"], ["updated_at", "2020-04-22 05:36:51.390977"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.395056"], ["updated_at", "2020-04-22 05:36:51.395056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.392902"], ["updated_at", "2020-04-22 05:36:51.392902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.397670"], ["updated_at", "2020-04-22 05:36:51.397670"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.397824"], ["updated_at", "2020-04-22 05:36:51.397824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_592476


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_356


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.409922"], ["updated_at", "2020-04-22 05:36:51.409922"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.413647"], ["updated_at", "2020-04-22 05:36:51.413647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (184.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.227733"], ["updated_at", "2020-04-22 05:36:51.227733"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.416447"], ["updated_at", "2020-04-22 05:36:51.416447"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.416332"], ["updated_at", "2020-04-22 05:36:51.416332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.419089"], ["updated_at", "2020-04-22 05:36:51.419089"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_24358


 (0.1ms)  begin transaction

CommentTest: test_248850


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.430235"], ["updated_at", "2020-04-22 05:36:51.430235"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.432906"], ["updated_at", "2020-04-22 05:36:51.432906"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.434347"], ["updated_at", "2020-04-22 05:36:51.434347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.435647"], ["updated_at", "2020-04-22 05:36:51.435647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.436375"], ["updated_at", "2020-04-22 05:36:51.436375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.438645"], ["updated_at", "2020-04-22 05:36:51.438645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_522661


 (0.1ms)  begin transaction

CommentTest: test_169479


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.448007"], ["updated_at", "2020-04-22 05:36:51.448007"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.450999"], ["updated_at", "2020-04-22 05:36:51.450999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.452633"], ["updated_at", "2020-04-22 05:36:51.452633"]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.448943"], ["updated_at", "2020-04-22 05:36:51.448943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.457994"], ["updated_at", "2020-04-22 05:36:51.457994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.461569"], ["updated_at", "2020-04-22 05:36:51.461569"]]
 (0.1ms)  begin transaction

CommentTest: test_374662


 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (53.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.412716"], ["updated_at", "2020-04-22 05:36:51.412716"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.468956"], ["updated_at", "2020-04-22 05:36:51.468956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.473640"], ["updated_at", "2020-04-22 05:36:51.473640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_521807


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_39


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.481965"], ["updated_at", "2020-04-22 05:36:51.481965"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.484939"], ["updated_at", "2020-04-22 05:36:51.484939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.483888"], ["updated_at", "2020-04-22 05:36:51.483888"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.487173"], ["updated_at", "2020-04-22 05:36:51.487173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.487919"], ["updated_at", "2020-04-22 05:36:51.487919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.493131"], ["updated_at", "2020-04-22 05:36:51.493131"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_915571


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.501084"], ["updated_at", "2020-04-22 05:36:51.501084"]]
 (0.1ms)  begin transaction
Course Create (36.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.466404"], ["updated_at", "2020-04-22 05:36:51.466404"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.505815"], ["updated_at", "2020-04-22 05:36:51.505815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.506834"], ["updated_at", "2020-04-22 05:36:51.506834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_730


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.508497"], ["updated_at", "2020-04-22 05:36:51.508497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.513700"], ["updated_at", "2020-04-22 05:36:51.513700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.510243"], ["updated_at", "2020-04-22 05:36:51.510243"]]
 (0.1ms)  begin transaction

CommentTest: test_72565


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.519987"], ["updated_at", "2020-04-22 05:36:51.519987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.525167"], ["updated_at", "2020-04-22 05:36:51.525167"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_645041


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.530284"], ["updated_at", "2020-04-22 05:36:51.530284"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.533901"], ["updated_at", "2020-04-22 05:36:51.533901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.536136"], ["updated_at", "2020-04-22 05:36:51.536136"]]
Course Create (21.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.519497"], ["updated_at", "2020-04-22 05:36:51.519497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_86


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.542773"], ["updated_at", "2020-04-22 05:36:51.542773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.545161"], ["updated_at", "2020-04-22 05:36:51.545161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
Course Create (254.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.298529"], ["updated_at", "2020-04-22 05:36:51.298529"]]
 (0.1ms)  begin transaction

CommentTest: test_650092


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.557687"], ["updated_at", "2020-04-22 05:36:51.557687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (15.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.543710"], ["updated_at", "2020-04-22 05:36:51.543710"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.559748"], ["updated_at", "2020-04-22 05:36:51.559748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.564258"], ["updated_at", "2020-04-22 05:36:51.564258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_692


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.570240"], ["updated_at", "2020-04-22 05:36:51.570240"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.570648"], ["updated_at", "2020-04-22 05:36:51.570648"]]

CommentTest: test_880650


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.574189"], ["updated_at", "2020-04-22 05:36:51.574189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.576262"], ["updated_at", "2020-04-22 05:36:51.576262"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_534


 (0.1ms)  begin transaction

CommentTest: test_897


 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.574448"], ["updated_at", "2020-04-22 05:36:51.574448"]]
 (1.8ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.584508"], ["updated_at", "2020-04-22 05:36:51.584508"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.588225"], ["updated_at", "2020-04-22 05:36:51.588225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.589424"], ["updated_at", "2020-04-22 05:36:51.589424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.591113"], ["updated_at", "2020-04-22 05:36:51.591113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.594871"], ["updated_at", "2020-04-22 05:36:51.594871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_39860


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.602982"], ["updated_at", "2020-04-22 05:36:51.602982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.608182"], ["updated_at", "2020-04-22 05:36:51.608182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_753


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.610739"], ["updated_at", "2020-04-22 05:36:51.610739"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.611966"], ["updated_at", "2020-04-22 05:36:51.611966"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.617197"], ["updated_at", "2020-04-22 05:36:51.617197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.619414"], ["updated_at", "2020-04-22 05:36:51.619414"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_688210


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.627688"], ["updated_at", "2020-04-22 05:36:51.627688"]]
 (0.1ms)  begin transaction

CommentTest: test_177


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.632045"], ["updated_at", "2020-04-22 05:36:51.632045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.634525"], ["updated_at", "2020-04-22 05:36:51.634525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.633772"], ["updated_at", "2020-04-22 05:36:51.633772"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.638889"], ["updated_at", "2020-04-22 05:36:51.638889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.641115"], ["updated_at", "2020-04-22 05:36:51.641115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_816179


 (0.1ms)  begin transaction

CommentTest: test_111


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.652314"], ["updated_at", "2020-04-22 05:36:51.652314"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.653120"], ["updated_at", "2020-04-22 05:36:51.653120"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.656046"], ["updated_at", "2020-04-22 05:36:51.656046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.658541"], ["updated_at", "2020-04-22 05:36:51.658541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.660118"], ["updated_at", "2020-04-22 05:36:51.660118"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.660889"], ["updated_at", "2020-04-22 05:36:51.660889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (84.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.585423"], ["updated_at", "2020-04-22 05:36:51.585423"]]
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.672323"], ["updated_at", "2020-04-22 05:36:51.672323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.674340"], ["updated_at", "2020-04-22 05:36:51.674340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_919


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_936


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.684206"], ["updated_at", "2020-04-22 05:36:51.684206"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.686795"], ["updated_at", "2020-04-22 05:36:51.686795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.691120"], ["updated_at", "2020-04-22 05:36:51.691120"]]
 (0.1ms)  begin transaction

CommentTest: test_843066


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.681883"], ["updated_at", "2020-04-22 05:36:51.681883"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_48


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.698864"], ["updated_at", "2020-04-22 05:36:51.698864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.693980"], ["updated_at", "2020-04-22 05:36:51.693980"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.703794"], ["updated_at", "2020-04-22 05:36:51.703794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.702818"], ["updated_at", "2020-04-22 05:36:51.702818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.707491"], ["updated_at", "2020-04-22 05:36:51.707491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_538028


Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.700910"], ["updated_at", "2020-04-22 05:36:51.700910"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.725085"], ["updated_at", "2020-04-22 05:36:51.725085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_749


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.727805"], ["updated_at", "2020-04-22 05:36:51.727805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.730631"], ["updated_at", "2020-04-22 05:36:51.730631"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_664


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.736944"], ["updated_at", "2020-04-22 05:36:51.736944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.739037"], ["updated_at", "2020-04-22 05:36:51.739037"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.743288"], ["updated_at", "2020-04-22 05:36:51.743288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.745338"], ["updated_at", "2020-04-22 05:36:51.745338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.742667"], ["updated_at", "2020-04-22 05:36:51.742667"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_788


Course Create (28.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.723675"], ["updated_at", "2020-04-22 05:36:51.723675"]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.757082"], ["updated_at", "2020-04-22 05:36:51.757082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_409


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.759576"], ["updated_at", "2020-04-22 05:36:51.759576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.761469"], ["updated_at", "2020-04-22 05:36:51.761469"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.765889"], ["updated_at", "2020-04-22 05:36:51.765889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.769532"], ["updated_at", "2020-04-22 05:36:51.769532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_34525


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.773992"], ["updated_at", "2020-04-22 05:36:51.773992"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.776826"], ["updated_at", "2020-04-22 05:36:51.776826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_1


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.779992"], ["updated_at", "2020-04-22 05:36:51.779992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.780958"], ["updated_at", "2020-04-22 05:36:51.780958"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.785005"], ["updated_at", "2020-04-22 05:36:51.785005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.787555"], ["updated_at", "2020-04-22 05:36:51.787555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (37.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.753991"], ["updated_at", "2020-04-22 05:36:51.753991"]]
 (0.1ms)  begin transaction

CommentTest: test_765935


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.794292"], ["updated_at", "2020-04-22 05:36:51.794292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.796514"], ["updated_at", "2020-04-22 05:36:51.796514"]]
 (1.5ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (6.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_586


Course Create (12.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.795723"], ["updated_at", "2020-04-22 05:36:51.795723"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_966


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.812504"], ["updated_at", "2020-04-22 05:36:51.812504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.814281"], ["updated_at", "2020-04-22 05:36:51.814281"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.816097"], ["updated_at", "2020-04-22 05:36:51.816097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.816997"], ["updated_at", "2020-04-22 05:36:51.816997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.819070"], ["updated_at", "2020-04-22 05:36:51.819070"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.8ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_370585


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.828662"], ["updated_at", "2020-04-22 05:36:51.828662"]]
 (0.1ms)  begin transaction

CommentTest: test_485


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.832075"], ["updated_at", "2020-04-22 05:36:51.832075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.832304"], ["updated_at", "2020-04-22 05:36:51.832304"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.834595"], ["updated_at", "2020-04-22 05:36:51.834595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.835661"], ["updated_at", "2020-04-22 05:36:51.835661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.842653"], ["updated_at", "2020-04-22 05:36:51.842653"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_110315


 (0.3ms)  begin transaction

CommentTest: test_42


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.854060"], ["updated_at", "2020-04-22 05:36:51.854060"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.857503"], ["updated_at", "2020-04-22 05:36:51.857503"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.860238"], ["updated_at", "2020-04-22 05:36:51.860238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.860012"], ["updated_at", "2020-04-22 05:36:51.860012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.862973"], ["updated_at", "2020-04-22 05:36:51.862973"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.863934"], ["updated_at", "2020-04-22 05:36:51.863934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_733


 (0.1ms)  begin transaction

CommentTest: test_97508


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.874157"], ["updated_at", "2020-04-22 05:36:51.874157"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.874574"], ["updated_at", "2020-04-22 05:36:51.874574"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.876786"], ["updated_at", "2020-04-22 05:36:51.876786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.877274"], ["updated_at", "2020-04-22 05:36:51.877274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.881288"], ["updated_at", "2020-04-22 05:36:51.881288"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.881064"], ["updated_at", "2020-04-22 05:36:51.881064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_475


 (0.1ms)  begin transaction

CommentTest: test_560078


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.891593"], ["updated_at", "2020-04-22 05:36:51.891593"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.892883"], ["updated_at", "2020-04-22 05:36:51.892883"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.895818"], ["updated_at", "2020-04-22 05:36:51.895818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.895699"], ["updated_at", "2020-04-22 05:36:51.895699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.898457"], ["updated_at", "2020-04-22 05:36:51.898457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.898802"], ["updated_at", "2020-04-22 05:36:51.898802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_453


 (0.1ms)  begin transaction

CommentTest: test_679994


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.912382"], ["updated_at", "2020-04-22 05:36:51.912382"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.912314"], ["updated_at", "2020-04-22 05:36:51.912314"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.916636"], ["updated_at", "2020-04-22 05:36:51.916636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.916890"], ["updated_at", "2020-04-22 05:36:51.916890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.919295"], ["updated_at", "2020-04-22 05:36:51.919295"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.919720"], ["updated_at", "2020-04-22 05:36:51.919720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_957978


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_263


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.930491"], ["updated_at", "2020-04-22 05:36:51.930491"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.932370"], ["updated_at", "2020-04-22 05:36:51.932370"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.933551"], ["updated_at", "2020-04-22 05:36:51.933551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.935825"], ["updated_at", "2020-04-22 05:36:51.935825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.936202"], ["updated_at", "2020-04-22 05:36:51.936202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.940298"], ["updated_at", "2020-04-22 05:36:51.940298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_764855


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_582


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.950230"], ["updated_at", "2020-04-22 05:36:51.950230"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.952229"], ["updated_at", "2020-04-22 05:36:51.952229"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.953168"], ["updated_at", "2020-04-22 05:36:51.953168"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.957997"], ["updated_at", "2020-04-22 05:36:51.957997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.958190"], ["updated_at", "2020-04-22 05:36:51.958190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.960135"], ["updated_at", "2020-04-22 05:36:51.960135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_3633


 (0.1ms)  begin transaction

CommentTest: test_344


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.970160"], ["updated_at", "2020-04-22 05:36:51.970160"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.970117"], ["updated_at", "2020-04-22 05:36:51.970117"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.973142"], ["updated_at", "2020-04-22 05:36:51.973142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.973471"], ["updated_at", "2020-04-22 05:36:51.973471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.975704"], ["updated_at", "2020-04-22 05:36:51.975704"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.975888"], ["updated_at", "2020-04-22 05:36:51.975888"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_231


 (0.3ms)  begin transaction

CommentTest: test_980503


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.987194"], ["updated_at", "2020-04-22 05:36:51.987194"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.989530"], ["updated_at", "2020-04-22 05:36:51.989530"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.991011"], ["updated_at", "2020-04-22 05:36:51.991011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:51.992405"], ["updated_at", "2020-04-22 05:36:51.992405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.993313"], ["updated_at", "2020-04-22 05:36:51.993313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:51.995044"], ["updated_at", "2020-04-22 05:36:51.995044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_528


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_347119


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.003172"], ["updated_at", "2020-04-22 05:36:52.003172"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.009777"], ["updated_at", "2020-04-22 05:36:52.009777"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.010196"], ["updated_at", "2020-04-22 05:36:52.010196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.012381"], ["updated_at", "2020-04-22 05:36:52.012381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.012527"], ["updated_at", "2020-04-22 05:36:52.012527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.015335"], ["updated_at", "2020-04-22 05:36:52.015335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_596


 (0.1ms)  begin transaction

CommentTest: test_884662


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.025289"], ["updated_at", "2020-04-22 05:36:52.025289"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.025602"], ["updated_at", "2020-04-22 05:36:52.025602"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.028005"], ["updated_at", "2020-04-22 05:36:52.028005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.028242"], ["updated_at", "2020-04-22 05:36:52.028242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.030827"], ["updated_at", "2020-04-22 05:36:52.030827"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.031247"], ["updated_at", "2020-04-22 05:36:52.031247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_738075


 (0.1ms)  begin transaction

CommentTest: test_713


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.042956"], ["updated_at", "2020-04-22 05:36:52.042956"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.045725"], ["updated_at", "2020-04-22 05:36:52.045725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.044398"], ["updated_at", "2020-04-22 05:36:52.044398"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.048328"], ["updated_at", "2020-04-22 05:36:52.048328"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.048466"], ["updated_at", "2020-04-22 05:36:52.048466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.051240"], ["updated_at", "2020-04-22 05:36:52.051240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_874689


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_250


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.058135"], ["updated_at", "2020-04-22 05:36:52.058135"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.060892"], ["updated_at", "2020-04-22 05:36:52.060892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.060361"], ["updated_at", "2020-04-22 05:36:52.060361"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.063910"], ["updated_at", "2020-04-22 05:36:52.063910"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.064524"], ["updated_at", "2020-04-22 05:36:52.064524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.066872"], ["updated_at", "2020-04-22 05:36:52.066872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_806155


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.073579"], ["updated_at", "2020-04-22 05:36:52.073579"]]
 (0.2ms)  begin transaction

CommentTest: test_379


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.077184"], ["updated_at", "2020-04-22 05:36:52.077184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.079476"], ["updated_at", "2020-04-22 05:36:52.079476"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.079298"], ["updated_at", "2020-04-22 05:36:52.079298"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.082813"], ["updated_at", "2020-04-22 05:36:52.082813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.085412"], ["updated_at", "2020-04-22 05:36:52.085412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_988190


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.091770"], ["updated_at", "2020-04-22 05:36:52.091770"]]
 (0.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_553


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.095507"], ["updated_at", "2020-04-22 05:36:52.095507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (540.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.558417"], ["updated_at", "2020-04-22 05:36:51.558417"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.101529"], ["updated_at", "2020-04-22 05:36:52.101529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.102019"], ["updated_at", "2020-04-22 05:36:52.102019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.103914"], ["updated_at", "2020-04-22 05:36:52.103914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_215636


 (0.1ms)  begin transaction

CommentTest: test_470707


Course Create (13.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.099580"], ["updated_at", "2020-04-22 05:36:52.099580"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.113988"], ["updated_at", "2020-04-22 05:36:52.113988"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.115597"], ["updated_at", "2020-04-22 05:36:52.115597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.117643"], ["updated_at", "2020-04-22 05:36:52.117643"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.117583"], ["updated_at", "2020-04-22 05:36:52.117583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.119765"], ["updated_at", "2020-04-22 05:36:52.119765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (1.0ms)  begin transaction

CommentTest: test_589


 (0.1ms)  begin transaction

CommentTest: test_878283


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.130832"], ["updated_at", "2020-04-22 05:36:52.130832"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.133790"], ["updated_at", "2020-04-22 05:36:52.133790"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.136059"], ["updated_at", "2020-04-22 05:36:52.136059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.137088"], ["updated_at", "2020-04-22 05:36:52.137088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.141727"], ["updated_at", "2020-04-22 05:36:52.141727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.143358"], ["updated_at", "2020-04-22 05:36:52.143358"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (35.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.113988"], ["updated_at", "2020-04-22 05:36:52.113988"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_514


 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.152703"], ["updated_at", "2020-04-22 05:36:52.152703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.155740"], ["updated_at", "2020-04-22 05:36:52.155740"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_687482


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.159477"], ["updated_at", "2020-04-22 05:36:52.159477"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.162409"], ["updated_at", "2020-04-22 05:36:52.162409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_348980


 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.156818"], ["updated_at", "2020-04-22 05:36:52.156818"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.166729"], ["updated_at", "2020-04-22 05:36:52.166729"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.171398"], ["updated_at", "2020-04-22 05:36:52.171398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.173479"], ["updated_at", "2020-04-22 05:36:52.173479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_957


 (0.1ms)  begin transaction

CommentTest: test_920812


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.182298"], ["updated_at", "2020-04-22 05:36:52.182298"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.182954"], ["updated_at", "2020-04-22 05:36:52.182954"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.185146"], ["updated_at", "2020-04-22 05:36:52.185146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.186784"], ["updated_at", "2020-04-22 05:36:52.186784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.187304"], ["updated_at", "2020-04-22 05:36:52.187304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.191012"], ["updated_at", "2020-04-22 05:36:52.191012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_100


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_36725


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.199600"], ["updated_at", "2020-04-22 05:36:52.199600"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.202649"], ["updated_at", "2020-04-22 05:36:52.202649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.201874"], ["updated_at", "2020-04-22 05:36:52.201874"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.204932"], ["updated_at", "2020-04-22 05:36:52.204932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.209151"], ["updated_at", "2020-04-22 05:36:52.209151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.212404"], ["updated_at", "2020-04-22 05:36:52.212404"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_295


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.219102"], ["updated_at", "2020-04-22 05:36:52.219102"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.223076"], ["updated_at", "2020-04-22 05:36:52.223076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_624728


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.225402"], ["updated_at", "2020-04-22 05:36:52.225402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.226937"], ["updated_at", "2020-04-22 05:36:52.226937"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.231755"], ["updated_at", "2020-04-22 05:36:52.231755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_654


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.234956"], ["updated_at", "2020-04-22 05:36:52.234956"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.237097"], ["updated_at", "2020-04-22 05:36:52.237097"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.242735"], ["updated_at", "2020-04-22 05:36:52.242735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.244886"], ["updated_at", "2020-04-22 05:36:52.244886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (436.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:51.810848"], ["updated_at", "2020-04-22 05:36:51.810848"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_423961


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.249519"], ["updated_at", "2020-04-22 05:36:52.249519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.251926"], ["updated_at", "2020-04-22 05:36:52.251926"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_877


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.255199"], ["updated_at", "2020-04-22 05:36:52.255199"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.258060"], ["updated_at", "2020-04-22 05:36:52.258060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_818


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.260162"], ["updated_at", "2020-04-22 05:36:52.260162"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.262086"], ["updated_at", "2020-04-22 05:36:52.262086"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.265332"], ["updated_at", "2020-04-22 05:36:52.265332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.267450"], ["updated_at", "2020-04-22 05:36:52.267450"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_388


Course Create (109.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.166417"], ["updated_at", "2020-04-22 05:36:52.166417"]]
 (0.1ms)  begin transaction

CommentTest: test_747


 (0.2ms)  SAVEPOINT active_record_1
Course Create (26.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.251244"], ["updated_at", "2020-04-22 05:36:52.251244"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.278322"], ["updated_at", "2020-04-22 05:36:52.278322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.280962"], ["updated_at", "2020-04-22 05:36:52.280962"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.281050"], ["updated_at", "2020-04-22 05:36:52.281050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.283727"], ["updated_at", "2020-04-22 05:36:52.283727"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_749710


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.280030"], ["updated_at", "2020-04-22 05:36:52.280030"]]
 (0.1ms)  begin transaction

CommentTest: test_783810


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.294606"], ["updated_at", "2020-04-22 05:36:52.294606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.296281"], ["updated_at", "2020-04-22 05:36:52.296281"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.298378"], ["updated_at", "2020-04-22 05:36:52.298378"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.300589"], ["updated_at", "2020-04-22 05:36:52.300589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.303268"], ["updated_at", "2020-04-22 05:36:52.303268"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_28


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.309585"], ["updated_at", "2020-04-22 05:36:52.309585"]]
 (0.1ms)  begin transaction

CommentTest: test_590413


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.313077"], ["updated_at", "2020-04-22 05:36:52.313077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (37.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.277659"], ["updated_at", "2020-04-22 05:36:52.277659"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.316005"], ["updated_at", "2020-04-22 05:36:52.316005"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.318339"], ["updated_at", "2020-04-22 05:36:52.318339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.320733"], ["updated_at", "2020-04-22 05:36:52.320733"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_974


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (36.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.292055"], ["updated_at", "2020-04-22 05:36:52.292055"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_831


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.330863"], ["updated_at", "2020-04-22 05:36:52.330863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.331604"], ["updated_at", "2020-04-22 05:36:52.331604"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.333683"], ["updated_at", "2020-04-22 05:36:52.333683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.334855"], ["updated_at", "2020-04-22 05:36:52.334855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.337053"], ["updated_at", "2020-04-22 05:36:52.337053"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_866756


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.343656"], ["updated_at", "2020-04-22 05:36:52.343656"]]
 (0.1ms)  begin transaction

CommentTest: test_260


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.346633"], ["updated_at", "2020-04-22 05:36:52.346633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.349016"], ["updated_at", "2020-04-22 05:36:52.349016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.348691"], ["updated_at", "2020-04-22 05:36:52.348691"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.351785"], ["updated_at", "2020-04-22 05:36:52.351785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.353621"], ["updated_at", "2020-04-22 05:36:52.353621"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_973177


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.358416"], ["updated_at", "2020-04-22 05:36:52.358416"]]
 (0.8ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.361409"], ["updated_at", "2020-04-22 05:36:52.361409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_335


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.364824"], ["updated_at", "2020-04-22 05:36:52.364824"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.364689"], ["updated_at", "2020-04-22 05:36:52.364689"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.367483"], ["updated_at", "2020-04-22 05:36:52.367483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.369534"], ["updated_at", "2020-04-22 05:36:52.369534"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_932739


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.376896"], ["updated_at", "2020-04-22 05:36:52.376896"]]
 (0.7ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.380105"], ["updated_at", "2020-04-22 05:36:52.380105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.383772"], ["updated_at", "2020-04-22 05:36:52.383772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_355


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.387104"], ["updated_at", "2020-04-22 05:36:52.387104"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.390521"], ["updated_at", "2020-04-22 05:36:52.390521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.392414"], ["updated_at", "2020-04-22 05:36:52.392414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_821053


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.399452"], ["updated_at", "2020-04-22 05:36:52.399452"]]
 (0.7ms)  rollback transaction
Bucket Create (3.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.402845"], ["updated_at", "2020-04-22 05:36:52.402845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_995


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.408838"], ["updated_at", "2020-04-22 05:36:52.408838"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.408861"], ["updated_at", "2020-04-22 05:36:52.408861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.411895"], ["updated_at", "2020-04-22 05:36:52.411895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.414211"], ["updated_at", "2020-04-22 05:36:52.414211"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_598605


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.427849"], ["updated_at", "2020-04-22 05:36:52.427849"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.434183"], ["updated_at", "2020-04-22 05:36:52.434183"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.435143"], ["updated_at", "2020-04-22 05:36:52.435143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.437232"], ["updated_at", "2020-04-22 05:36:52.437232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.437876"], ["updated_at", "2020-04-22 05:36:52.437876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.441735"], ["updated_at", "2020-04-22 05:36:52.441735"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_370676


 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.454576"], ["updated_at", "2020-04-22 05:36:52.454576"]]
 (0.1ms)  begin transaction

CommentTest: test_8


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.460525"], ["updated_at", "2020-04-22 05:36:52.460525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (152.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.315265"], ["updated_at", "2020-04-22 05:36:52.315265"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.465922"], ["updated_at", "2020-04-22 05:36:52.465922"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.469955"], ["updated_at", "2020-04-22 05:36:52.469955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.472969"], ["updated_at", "2020-04-22 05:36:52.472969"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_518057


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.478529"], ["updated_at", "2020-04-22 05:36:52.478529"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.482224"], ["updated_at", "2020-04-22 05:36:52.482224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_647695


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.484914"], ["updated_at", "2020-04-22 05:36:52.484914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (27.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.462757"], ["updated_at", "2020-04-22 05:36:52.462757"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.492808"], ["updated_at", "2020-04-22 05:36:52.492808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.497687"], ["updated_at", "2020-04-22 05:36:52.497687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_327656


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.502429"], ["updated_at", "2020-04-22 05:36:52.502429"]]
 (2.7ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.508215"], ["updated_at", "2020-04-22 05:36:52.508215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_943


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.512232"], ["updated_at", "2020-04-22 05:36:52.512232"]]
Course Create (22.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.486403"], ["updated_at", "2020-04-22 05:36:52.486403"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.519887"], ["updated_at", "2020-04-22 05:36:52.519887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.524690"], ["updated_at", "2020-04-22 05:36:52.524690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_552556


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.527856"], ["updated_at", "2020-04-22 05:36:52.527856"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.531979"], ["updated_at", "2020-04-22 05:36:52.531979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_31805


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.534626"], ["updated_at", "2020-04-22 05:36:52.534626"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.535613"], ["updated_at", "2020-04-22 05:36:52.535613"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.540144"], ["updated_at", "2020-04-22 05:36:52.540144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.542505"], ["updated_at", "2020-04-22 05:36:52.542505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_121636


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.546353"], ["updated_at", "2020-04-22 05:36:52.546353"]]
 (2.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.551903"], ["updated_at", "2020-04-22 05:36:52.551903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_294438


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.554320"], ["updated_at", "2020-04-22 05:36:52.554320"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (38.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.516491"], ["updated_at", "2020-04-22 05:36:52.516491"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.559867"], ["updated_at", "2020-04-22 05:36:52.559867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.562604"], ["updated_at", "2020-04-22 05:36:52.562604"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_514454


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.567381"], ["updated_at", "2020-04-22 05:36:52.567381"]]

CommentTest: test_594


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.575699"], ["updated_at", "2020-04-22 05:36:52.575699"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.576238"], ["updated_at", "2020-04-22 05:36:52.576238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.578960"], ["updated_at", "2020-04-22 05:36:52.578960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.581962"], ["updated_at", "2020-04-22 05:36:52.581962"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.581574"], ["updated_at", "2020-04-22 05:36:52.581574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_394


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_571701


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.593470"], ["updated_at", "2020-04-22 05:36:52.593470"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.596801"], ["updated_at", "2020-04-22 05:36:52.596801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.595758"], ["updated_at", "2020-04-22 05:36:52.595758"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.600122"], ["updated_at", "2020-04-22 05:36:52.600122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.600777"], ["updated_at", "2020-04-22 05:36:52.600777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.602828"], ["updated_at", "2020-04-22 05:36:52.602828"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_23


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.608942"], ["updated_at", "2020-04-22 05:36:52.608942"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380238


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.612492"], ["updated_at", "2020-04-22 05:36:52.612492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.616109"], ["updated_at", "2020-04-22 05:36:52.616109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.617942"], ["updated_at", "2020-04-22 05:36:52.617942"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.621106"], ["updated_at", "2020-04-22 05:36:52.621106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_148


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.639296"], ["updated_at", "2020-04-22 05:36:52.639296"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.642225"], ["updated_at", "2020-04-22 05:36:52.642225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.639798"], ["updated_at", "2020-04-22 05:36:52.639798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.646305"], ["updated_at", "2020-04-22 05:36:52.646305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_651


 (0.1ms)  begin transaction

CommentTest: test_14379


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.657477"], ["updated_at", "2020-04-22 05:36:52.657477"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.657850"], ["updated_at", "2020-04-22 05:36:52.657850"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.660784"], ["updated_at", "2020-04-22 05:36:52.660784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.662302"], ["updated_at", "2020-04-22 05:36:52.662302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.663845"], ["updated_at", "2020-04-22 05:36:52.663845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.667514"], ["updated_at", "2020-04-22 05:36:52.667514"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_902


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.678696"], ["updated_at", "2020-04-22 05:36:52.678696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.682825"], ["updated_at", "2020-04-22 05:36:52.682825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.686104"], ["updated_at", "2020-04-22 05:36:52.686104"]]
 (0.1ms)  begin transaction

CommentTest: test_610416


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.689027"], ["updated_at", "2020-04-22 05:36:52.689027"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.692743"], ["updated_at", "2020-04-22 05:36:52.692743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.695874"], ["updated_at", "2020-04-22 05:36:52.695874"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_444


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.706835"], ["updated_at", "2020-04-22 05:36:52.706835"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.710697"], ["updated_at", "2020-04-22 05:36:52.710697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.713175"], ["updated_at", "2020-04-22 05:36:52.713175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_689057


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.722844"], ["updated_at", "2020-04-22 05:36:52.722844"]]
 (0.1ms)  begin transaction

CommentTest: test_134


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.727277"], ["updated_at", "2020-04-22 05:36:52.727277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.727214"], ["updated_at", "2020-04-22 05:36:52.727214"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.729915"], ["updated_at", "2020-04-22 05:36:52.729915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.729598"], ["updated_at", "2020-04-22 05:36:52.729598"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.732526"], ["updated_at", "2020-04-22 05:36:52.732526"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_79764


 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.743209"], ["updated_at", "2020-04-22 05:36:52.743209"]]
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.747999"], ["updated_at", "2020-04-22 05:36:52.747999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.750764"], ["updated_at", "2020-04-22 05:36:52.750764"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction

CommentTest: test_600


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.762277"], ["updated_at", "2020-04-22 05:36:52.762277"]]

CommentTest: test_117201


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.771596"], ["updated_at", "2020-04-22 05:36:52.771596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (445.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.328962"], ["updated_at", "2020-04-22 05:36:52.328962"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.775376"], ["updated_at", "2020-04-22 05:36:52.775376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.777550"], ["updated_at", "2020-04-22 05:36:52.777550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.780963"], ["updated_at", "2020-04-22 05:36:52.780963"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_946


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.792380"], ["updated_at", "2020-04-22 05:36:52.792380"]]

CommentTest: test_246


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.795224"], ["updated_at", "2020-04-22 05:36:52.795224"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.795477"], ["updated_at", "2020-04-22 05:36:52.795477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.799221"], ["updated_at", "2020-04-22 05:36:52.799221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.801502"], ["updated_at", "2020-04-22 05:36:52.801502"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.800352"], ["updated_at", "2020-04-22 05:36:52.800352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_482


 (0.1ms)  SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.812281"], ["updated_at", "2020-04-22 05:36:52.812281"]]
 (0.1ms)  begin transaction

CommentTest: test_117


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.816777"], ["updated_at", "2020-04-22 05:36:52.816777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.818836"], ["updated_at", "2020-04-22 05:36:52.818836"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.818084"], ["updated_at", "2020-04-22 05:36:52.818084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.821282"], ["updated_at", "2020-04-22 05:36:52.821282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_345


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.843903"], ["updated_at", "2020-04-22 05:36:52.843903"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.845304"], ["updated_at", "2020-04-22 05:36:52.845304"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.849085"], ["updated_at", "2020-04-22 05:36:52.849085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.851658"], ["updated_at", "2020-04-22 05:36:52.851658"]]
 (0.8ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_593


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_206


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.860603"], ["updated_at", "2020-04-22 05:36:52.860603"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.863387"], ["updated_at", "2020-04-22 05:36:52.863387"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.865382"], ["updated_at", "2020-04-22 05:36:52.865382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.866701"], ["updated_at", "2020-04-22 05:36:52.866701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.870194"], ["updated_at", "2020-04-22 05:36:52.870194"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.868449"], ["updated_at", "2020-04-22 05:36:52.868449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_584


 (0.1ms)  SAVEPOINT active_record_1
Course Create (103.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.772428"], ["updated_at", "2020-04-22 05:36:52.772428"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.890989"], ["updated_at", "2020-04-22 05:36:52.890989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_310


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.894740"], ["updated_at", "2020-04-22 05:36:52.894740"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.896093"], ["updated_at", "2020-04-22 05:36:52.896093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.900057"], ["updated_at", "2020-04-22 05:36:52.900057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.902929"], ["updated_at", "2020-04-22 05:36:52.902929"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_71995


Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.913855"], ["updated_at", "2020-04-22 05:36:52.913855"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.917712"], ["updated_at", "2020-04-22 05:36:52.917712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.919867"], ["updated_at", "2020-04-22 05:36:52.919867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  begin transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_322


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.927085"], ["updated_at", "2020-04-22 05:36:52.927085"]]
 (0.2ms)  begin transaction

CommentTest: test_309898


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.932782"], ["updated_at", "2020-04-22 05:36:52.932782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.934720"], ["updated_at", "2020-04-22 05:36:52.934720"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.935845"], ["updated_at", "2020-04-22 05:36:52.935845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.940200"], ["updated_at", "2020-04-22 05:36:52.940200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.943283"], ["updated_at", "2020-04-22 05:36:52.943283"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_689


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_187549


Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.951868"], ["updated_at", "2020-04-22 05:36:52.951868"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.958816"], ["updated_at", "2020-04-22 05:36:52.958816"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.959860"], ["updated_at", "2020-04-22 05:36:52.959860"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.961934"], ["updated_at", "2020-04-22 05:36:52.961934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.962586"], ["updated_at", "2020-04-22 05:36:52.962586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.964443"], ["updated_at", "2020-04-22 05:36:52.964443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_220


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.972941"], ["updated_at", "2020-04-22 05:36:52.972941"]]
 (1.0ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.976709"], ["updated_at", "2020-04-22 05:36:52.976709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_958651


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.981458"], ["updated_at", "2020-04-22 05:36:52.981458"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.983312"], ["updated_at", "2020-04-22 05:36:52.983312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:52.986448"], ["updated_at", "2020-04-22 05:36:52.986448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:52.990473"], ["updated_at", "2020-04-22 05:36:52.990473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_433


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.995835"], ["updated_at", "2020-04-22 05:36:52.995835"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.000446"], ["updated_at", "2020-04-22 05:36:53.000446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.010376"], ["updated_at", "2020-04-22 05:36:53.010376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_707992


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.017640"], ["updated_at", "2020-04-22 05:36:53.017640"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.022739"], ["updated_at", "2020-04-22 05:36:53.022739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_559


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.025431"], ["updated_at", "2020-04-22 05:36:53.025431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.026677"], ["updated_at", "2020-04-22 05:36:53.026677"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.031819"], ["updated_at", "2020-04-22 05:36:53.031819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_672089


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.034682"], ["updated_at", "2020-04-22 05:36:53.034682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.040117"], ["updated_at", "2020-04-22 05:36:53.040117"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.042983"], ["updated_at", "2020-04-22 05:36:53.042983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.051169"], ["updated_at", "2020-04-22 05:36:53.051169"]]
 (1.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_340


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.060256"], ["updated_at", "2020-04-22 05:36:53.060256"]]
 (0.2ms)  begin transaction

CommentTest: test_770714


Course Create (184.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.885918"], ["updated_at", "2020-04-22 05:36:52.885918"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.067885"], ["updated_at", "2020-04-22 05:36:53.067885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.072942"], ["updated_at", "2020-04-22 05:36:53.072942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.076205"], ["updated_at", "2020-04-22 05:36:53.076205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.080342"], ["updated_at", "2020-04-22 05:36:53.080342"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_569


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.086234"], ["updated_at", "2020-04-22 05:36:53.086234"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.089736"], ["updated_at", "2020-04-22 05:36:53.089736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.092024"], ["updated_at", "2020-04-22 05:36:53.092024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (27.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.070403"], ["updated_at", "2020-04-22 05:36:53.070403"]]
 (0.1ms)  begin transaction

CommentTest: test_212


 (0.1ms)  SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.102038"], ["updated_at", "2020-04-22 05:36:53.102038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.104328"], ["updated_at", "2020-04-22 05:36:53.104328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_748


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.111380"], ["updated_at", "2020-04-22 05:36:53.111380"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.118020"], ["updated_at", "2020-04-22 05:36:53.118020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (20.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.101353"], ["updated_at", "2020-04-22 05:36:53.101353"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.120457"], ["updated_at", "2020-04-22 05:36:53.120457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.124982"], ["updated_at", "2020-04-22 05:36:53.124982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_726784


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.127235"], ["updated_at", "2020-04-22 05:36:53.127235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_71


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.137774"], ["updated_at", "2020-04-22 05:36:53.137774"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.140969"], ["updated_at", "2020-04-22 05:36:53.140969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_380


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.143576"], ["updated_at", "2020-04-22 05:36:53.143576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.145993"], ["updated_at", "2020-04-22 05:36:53.145993"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_505


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.150359"], ["updated_at", "2020-04-22 05:36:53.150359"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (21.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.127749"], ["updated_at", "2020-04-22 05:36:53.127749"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.158824"], ["updated_at", "2020-04-22 05:36:53.158824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.159982"], ["updated_at", "2020-04-22 05:36:53.159982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.162515"], ["updated_at", "2020-04-22 05:36:53.162515"]]
 (0.9ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_667


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.169426"], ["updated_at", "2020-04-22 05:36:53.169426"]]
 (0.1ms)  begin transaction

CommentTest: test_342407


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.174030"], ["updated_at", "2020-04-22 05:36:53.174030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.174211"], ["updated_at", "2020-04-22 05:36:53.174211"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.176680"], ["updated_at", "2020-04-22 05:36:53.176680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.179265"], ["updated_at", "2020-04-22 05:36:53.179265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.183989"], ["updated_at", "2020-04-22 05:36:53.183989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_259


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.188602"], ["updated_at", "2020-04-22 05:36:53.188602"]]
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.191766"], ["updated_at", "2020-04-22 05:36:53.191766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (37.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.153953"], ["updated_at", "2020-04-22 05:36:53.153953"]]
 (0.1ms)  begin transaction

CommentTest: test_318905


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.194903"], ["updated_at", "2020-04-22 05:36:53.194903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.194704"], ["updated_at", "2020-04-22 05:36:53.194704"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.197619"], ["updated_at", "2020-04-22 05:36:53.197619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_205


 (0.1ms)  begin transaction

CommentTest: test_860


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.199670"], ["updated_at", "2020-04-22 05:36:53.199670"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.210619"], ["updated_at", "2020-04-22 05:36:53.210619"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.213634"], ["updated_at", "2020-04-22 05:36:53.213634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.215790"], ["updated_at", "2020-04-22 05:36:53.215790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.217724"], ["updated_at", "2020-04-22 05:36:53.217724"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.217941"], ["updated_at", "2020-04-22 05:36:53.217941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_583


 (0.1ms)  begin transaction

CommentTest: test_696020


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.227938"], ["updated_at", "2020-04-22 05:36:53.227938"]]
Course Create (21.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.209094"], ["updated_at", "2020-04-22 05:36:53.209094"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.232397"], ["updated_at", "2020-04-22 05:36:53.232397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.232793"], ["updated_at", "2020-04-22 05:36:53.232793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.234451"], ["updated_at", "2020-04-22 05:36:53.234451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.234890"], ["updated_at", "2020-04-22 05:36:53.234890"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_164


 (0.5ms)  rollback transaction
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.228282"], ["updated_at", "2020-04-22 05:36:53.228282"]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_84


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.247389"], ["updated_at", "2020-04-22 05:36:53.247389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.246923"], ["updated_at", "2020-04-22 05:36:53.246923"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.249621"], ["updated_at", "2020-04-22 05:36:53.249621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.249621"], ["updated_at", "2020-04-22 05:36:53.249621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.252340"], ["updated_at", "2020-04-22 05:36:53.252340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (2.6ms)  rollback transaction

CommentTest: test_5431


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_82


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.265487"], ["updated_at", "2020-04-22 05:36:53.265487"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.268559"], ["updated_at", "2020-04-22 05:36:53.268559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.268020"], ["updated_at", "2020-04-22 05:36:53.268020"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.271803"], ["updated_at", "2020-04-22 05:36:53.271803"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.271836"], ["updated_at", "2020-04-22 05:36:53.271836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.274607"], ["updated_at", "2020-04-22 05:36:53.274607"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (36.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.245065"], ["updated_at", "2020-04-22 05:36:53.245065"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_654948


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.284317"], ["updated_at", "2020-04-22 05:36:53.284317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.286736"], ["updated_at", "2020-04-22 05:36:53.286736"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_657


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_83


Course Create (17.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.284512"], ["updated_at", "2020-04-22 05:36:53.284512"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.295609"], ["updated_at", "2020-04-22 05:36:53.295609"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.304492"], ["updated_at", "2020-04-22 05:36:53.304492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.308690"], ["updated_at", "2020-04-22 05:36:53.308690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.309492"], ["updated_at", "2020-04-22 05:36:53.309492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.311465"], ["updated_at", "2020-04-22 05:36:53.311465"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_790521


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.321014"], ["updated_at", "2020-04-22 05:36:53.321014"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_924


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.325579"], ["updated_at", "2020-04-22 05:36:53.325579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.327803"], ["updated_at", "2020-04-22 05:36:53.327803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.327474"], ["updated_at", "2020-04-22 05:36:53.327474"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.330987"], ["updated_at", "2020-04-22 05:36:53.330987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.333220"], ["updated_at", "2020-04-22 05:36:53.333220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_475877


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.338837"], ["updated_at", "2020-04-22 05:36:53.338837"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.341303"], ["updated_at", "2020-04-22 05:36:53.341303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_648


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.344095"], ["updated_at", "2020-04-22 05:36:53.344095"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.343866"], ["updated_at", "2020-04-22 05:36:53.343866"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.349286"], ["updated_at", "2020-04-22 05:36:53.349286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.352752"], ["updated_at", "2020-04-22 05:36:53.352752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_452557


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.359857"], ["updated_at", "2020-04-22 05:36:53.359857"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.362952"], ["updated_at", "2020-04-22 05:36:53.362952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.367965"], ["updated_at", "2020-04-22 05:36:53.367965"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_916


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.375488"], ["updated_at", "2020-04-22 05:36:53.375488"]]
 (0.1ms)  begin transaction

CommentTest: test_645680


 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.383272"], ["updated_at", "2020-04-22 05:36:53.383272"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.382706"], ["updated_at", "2020-04-22 05:36:53.382706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.387348"], ["updated_at", "2020-04-22 05:36:53.387348"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.388104"], ["updated_at", "2020-04-22 05:36:53.388104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.389440"], ["updated_at", "2020-04-22 05:36:53.389440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_705923


 (0.1ms)  begin transaction

CommentTest: test_324


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.399806"], ["updated_at", "2020-04-22 05:36:53.399806"]]
Course Create (844.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:52.556955"], ["updated_at", "2020-04-22 05:36:52.556955"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.403354"], ["updated_at", "2020-04-22 05:36:53.403354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.402720"], ["updated_at", "2020-04-22 05:36:53.402720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.408895"], ["updated_at", "2020-04-22 05:36:53.408895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.411753"], ["updated_at", "2020-04-22 05:36:53.411753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_369861


 (0.6ms)  rollback transaction
 (1.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.420284"], ["updated_at", "2020-04-22 05:36:53.420284"]]
 (0.1ms)  begin transaction

CommentTest: test_405979


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.425171"], ["updated_at", "2020-04-22 05:36:53.425171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.425104"], ["updated_at", "2020-04-22 05:36:53.425104"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.428148"], ["updated_at", "2020-04-22 05:36:53.428148"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.433015"], ["updated_at", "2020-04-22 05:36:53.433015"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.437117"], ["updated_at", "2020-04-22 05:36:53.437117"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_603675


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (138.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.303478"], ["updated_at", "2020-04-22 05:36:53.303478"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.444944"], ["updated_at", "2020-04-22 05:36:53.444944"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.448208"], ["updated_at", "2020-04-22 05:36:53.448208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.447886"], ["updated_at", "2020-04-22 05:36:53.447886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_998176


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.451975"], ["updated_at", "2020-04-22 05:36:53.451975"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.451875"], ["updated_at", "2020-04-22 05:36:53.451875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (1.1ms)  rollback transaction
Course Create (56.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.401241"], ["updated_at", "2020-04-22 05:36:53.401241"]]
 (0.1ms)  begin transaction
Course Create (14.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.452849"], ["updated_at", "2020-04-22 05:36:53.452849"]]

CommentTest: test_878730


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.469295"], ["updated_at", "2020-04-22 05:36:53.469295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.469566"], ["updated_at", "2020-04-22 05:36:53.469566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.474611"], ["updated_at", "2020-04-22 05:36:53.474611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.475473"], ["updated_at", "2020-04-22 05:36:53.475473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_631


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_99


Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.481814"], ["updated_at", "2020-04-22 05:36:53.481814"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.490263"], ["updated_at", "2020-04-22 05:36:53.490263"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.490214"], ["updated_at", "2020-04-22 05:36:53.490214"]]
 (0.1ms)  begin transaction

CommentTest: test_174046


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.492561"], ["updated_at", "2020-04-22 05:36:53.492561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.493963"], ["updated_at", "2020-04-22 05:36:53.493963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.496840"], ["updated_at", "2020-04-22 05:36:53.496840"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_703


Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.494876"], ["updated_at", "2020-04-22 05:36:53.494876"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.503577"], ["updated_at", "2020-04-22 05:36:53.503577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.510257"], ["updated_at", "2020-04-22 05:36:53.510257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_184


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.523351"], ["updated_at", "2020-04-22 05:36:53.523351"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.525964"], ["updated_at", "2020-04-22 05:36:53.525964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.528399"], ["updated_at", "2020-04-22 05:36:53.528399"]]
 (0.1ms)  begin transaction

CommentTest: test_88734


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.531809"], ["updated_at", "2020-04-22 05:36:53.531809"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.536841"], ["updated_at", "2020-04-22 05:36:53.536841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_434


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.542330"], ["updated_at", "2020-04-22 05:36:53.542330"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.543558"], ["updated_at", "2020-04-22 05:36:53.543558"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.547407"], ["updated_at", "2020-04-22 05:36:53.547407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.558197"], ["updated_at", "2020-04-22 05:36:53.558197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_571994


Course Create (58.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.502475"], ["updated_at", "2020-04-22 05:36:53.502475"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.563858"], ["updated_at", "2020-04-22 05:36:53.563858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.569604"], ["updated_at", "2020-04-22 05:36:53.569604"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_668


 (0.2ms)  begin transaction

CommentTest: test_183


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.580235"], ["updated_at", "2020-04-22 05:36:53.580235"]]
Course Create (114.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.469391"], ["updated_at", "2020-04-22 05:36:53.469391"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.583751"], ["updated_at", "2020-04-22 05:36:53.583751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.586203"], ["updated_at", "2020-04-22 05:36:53.586203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.587397"], ["updated_at", "2020-04-22 05:36:53.587397"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.588480"], ["updated_at", "2020-04-22 05:36:53.588480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_648716


 (0.1ms)  begin transaction

CommentTest: test_538


 (0.1ms)  SAVEPOINT active_record_1
Course Create (9.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.581118"], ["updated_at", "2020-04-22 05:36:53.581118"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (39.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.561556"], ["updated_at", "2020-04-22 05:36:53.561556"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.603373"], ["updated_at", "2020-04-22 05:36:53.603373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.603136"], ["updated_at", "2020-04-22 05:36:53.603136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.607696"], ["updated_at", "2020-04-22 05:36:53.607696"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (3.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.612561"], ["updated_at", "2020-04-22 05:36:53.612561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (20.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.601119"], ["updated_at", "2020-04-22 05:36:53.601119"]]
 (0.2ms)  begin transaction

CommentTest: test_95076


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.624506"], ["updated_at", "2020-04-22 05:36:53.624506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.627582"], ["updated_at", "2020-04-22 05:36:53.627582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_209


 (1.0ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Course Create (13.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.625549"], ["updated_at", "2020-04-22 05:36:53.625549"]]
 (0.1ms)  begin transaction

CommentTest: test_296


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.642798"], ["updated_at", "2020-04-22 05:36:53.642798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.642572"], ["updated_at", "2020-04-22 05:36:53.642572"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.645450"], ["updated_at", "2020-04-22 05:36:53.645450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.645439"], ["updated_at", "2020-04-22 05:36:53.645439"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.648238"], ["updated_at", "2020-04-22 05:36:53.648238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_922695


 (0.8ms)  rollback transaction
Course Create (57.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.599562"], ["updated_at", "2020-04-22 05:36:53.599562"]]
 (0.2ms)  begin transaction

CommentTest: test_707


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.660281"], ["updated_at", "2020-04-22 05:36:53.660281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.659004"], ["updated_at", "2020-04-22 05:36:53.659004"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.662797"], ["updated_at", "2020-04-22 05:36:53.662797"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.663478"], ["updated_at", "2020-04-22 05:36:53.663478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.665990"], ["updated_at", "2020-04-22 05:36:53.665990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Course Create (9.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.661374"], ["updated_at", "2020-04-22 05:36:53.661374"]]
 (0.1ms)  begin transaction

CommentTest: test_872013


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.674043"], ["updated_at", "2020-04-22 05:36:53.674043"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.676336"], ["updated_at", "2020-04-22 05:36:53.676336"]]

CommentTest: test_911812


Course Create (36.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.637353"], ["updated_at", "2020-04-22 05:36:53.637353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.679243"], ["updated_at", "2020-04-22 05:36:53.679243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.681896"], ["updated_at", "2020-04-22 05:36:53.681896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_145


 (0.1ms)  begin transaction

CommentTest: test_456


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.690275"], ["updated_at", "2020-04-22 05:36:53.690275"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.691207"], ["updated_at", "2020-04-22 05:36:53.691207"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.693410"], ["updated_at", "2020-04-22 05:36:53.693410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.694322"], ["updated_at", "2020-04-22 05:36:53.694322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.696127"], ["updated_at", "2020-04-22 05:36:53.696127"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.696834"], ["updated_at", "2020-04-22 05:36:53.696834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_291 CommentTest: test_494



 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.708984"], ["updated_at", "2020-04-22 05:36:53.708984"]]
Course Create (36.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.673534"], ["updated_at", "2020-04-22 05:36:53.673534"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.712128"], ["updated_at", "2020-04-22 05:36:53.712128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.712449"], ["updated_at", "2020-04-22 05:36:53.712449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.714814"], ["updated_at", "2020-04-22 05:36:53.714814"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.714533"], ["updated_at", "2020-04-22 05:36:53.714533"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_461618


 (0.1ms)  begin transaction

CommentTest: test_518


Course Create (14.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.708959"], ["updated_at", "2020-04-22 05:36:53.708959"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.725594"], ["updated_at", "2020-04-22 05:36:53.725594"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.727757"], ["updated_at", "2020-04-22 05:36:53.727757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.729346"], ["updated_at", "2020-04-22 05:36:53.729346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.731527"], ["updated_at", "2020-04-22 05:36:53.731527"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.732328"], ["updated_at", "2020-04-22 05:36:53.732328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_333


 (0.1ms)  begin transaction

CommentTest: test_33


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.743528"], ["updated_at", "2020-04-22 05:36:53.743528"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.743651"], ["updated_at", "2020-04-22 05:36:53.743651"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.746616"], ["updated_at", "2020-04-22 05:36:53.746616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.746815"], ["updated_at", "2020-04-22 05:36:53.746815"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.749262"], ["updated_at", "2020-04-22 05:36:53.749262"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.749160"], ["updated_at", "2020-04-22 05:36:53.749160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_933


 (0.1ms)  SAVEPOINT active_record_1
Course Create (37.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.725106"], ["updated_at", "2020-04-22 05:36:53.725106"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.761941"], ["updated_at", "2020-04-22 05:36:53.761941"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.764772"], ["updated_at", "2020-04-22 05:36:53.764772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_570


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.766996"], ["updated_at", "2020-04-22 05:36:53.766996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.768267"], ["updated_at", "2020-04-22 05:36:53.768267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.770229"], ["updated_at", "2020-04-22 05:36:53.770229"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_885628


 (0.2ms)  begin transaction

CommentTest: test_354


 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.774392"], ["updated_at", "2020-04-22 05:36:53.774392"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.783622"], ["updated_at", "2020-04-22 05:36:53.783622"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.785520"], ["updated_at", "2020-04-22 05:36:53.785520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.786771"], ["updated_at", "2020-04-22 05:36:53.786771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.787619"], ["updated_at", "2020-04-22 05:36:53.787619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.794421"], ["updated_at", "2020-04-22 05:36:53.794421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_647


 (0.1ms)  begin transaction

CommentTest: test_496


 (0.1ms)  SAVEPOINT active_record_1
Course Create (26.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.782536"], ["updated_at", "2020-04-22 05:36:53.782536"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.809351"], ["updated_at", "2020-04-22 05:36:53.809351"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.812923"], ["updated_at", "2020-04-22 05:36:53.812923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.816274"], ["updated_at", "2020-04-22 05:36:53.816274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.816990"], ["updated_at", "2020-04-22 05:36:53.816990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.819198"], ["updated_at", "2020-04-22 05:36:53.819198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (14.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.808386"], ["updated_at", "2020-04-22 05:36:53.808386"]]
 (0.1ms)  begin transaction

CommentTest: test_717287


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.832848"], ["updated_at", "2020-04-22 05:36:53.832848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_412


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.835777"], ["updated_at", "2020-04-22 05:36:53.835777"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.841542"], ["updated_at", "2020-04-22 05:36:53.841542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.845481"], ["updated_at", "2020-04-22 05:36:53.845481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.850400"], ["updated_at", "2020-04-22 05:36:53.850400"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_959


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.856687"], ["updated_at", "2020-04-22 05:36:53.856687"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.860281"], ["updated_at", "2020-04-22 05:36:53.860281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_118


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.862283"], ["updated_at", "2020-04-22 05:36:53.862283"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.862466"], ["updated_at", "2020-04-22 05:36:53.862466"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.867295"], ["updated_at", "2020-04-22 05:36:53.867295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.869154"], ["updated_at", "2020-04-22 05:36:53.869154"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.8ms)  rollback transaction

CommentTest: test_237


 (0.1ms)  begin transaction

CommentTest: test_168


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.885077"], ["updated_at", "2020-04-22 05:36:53.885077"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.885708"], ["updated_at", "2020-04-22 05:36:53.885708"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.889848"], ["updated_at", "2020-04-22 05:36:53.889848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.889522"], ["updated_at", "2020-04-22 05:36:53.889522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.892129"], ["updated_at", "2020-04-22 05:36:53.892129"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.892346"], ["updated_at", "2020-04-22 05:36:53.892346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_805


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_297


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.904632"], ["updated_at", "2020-04-22 05:36:53.904632"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.908799"], ["updated_at", "2020-04-22 05:36:53.908799"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.909504"], ["updated_at", "2020-04-22 05:36:53.909504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.911640"], ["updated_at", "2020-04-22 05:36:53.911640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.913176"], ["updated_at", "2020-04-22 05:36:53.913176"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.915245"], ["updated_at", "2020-04-22 05:36:53.915245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (86.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.834300"], ["updated_at", "2020-04-22 05:36:53.834300"]]
 (0.1ms)  begin transaction

CommentTest: test_249


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.925344"], ["updated_at", "2020-04-22 05:36:53.925344"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.927536"], ["updated_at", "2020-04-22 05:36:53.927536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_562035


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.942536"], ["updated_at", "2020-04-22 05:36:53.942536"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.946419"], ["updated_at", "2020-04-22 05:36:53.946419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_383


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.950220"], ["updated_at", "2020-04-22 05:36:53.950220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.950436"], ["updated_at", "2020-04-22 05:36:53.950436"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.959745"], ["updated_at", "2020-04-22 05:36:53.959745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_954990


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.962593"], ["updated_at", "2020-04-22 05:36:53.962593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.962997"], ["updated_at", "2020-04-22 05:36:53.962997"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.966643"], ["updated_at", "2020-04-22 05:36:53.966643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.969971"], ["updated_at", "2020-04-22 05:36:53.969971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_87


 (0.1ms)  begin transaction

CommentTest: test_281178


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.982298"], ["updated_at", "2020-04-22 05:36:53.982298"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.983458"], ["updated_at", "2020-04-22 05:36:53.983458"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.985828"], ["updated_at", "2020-04-22 05:36:53.985828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:53.986374"], ["updated_at", "2020-04-22 05:36:53.986374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.988117"], ["updated_at", "2020-04-22 05:36:53.988117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:53.992987"], ["updated_at", "2020-04-22 05:36:53.992987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_39323


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.001566"], ["updated_at", "2020-04-22 05:36:54.001566"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.007218"], ["updated_at", "2020-04-22 05:36:54.007218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.009626"], ["updated_at", "2020-04-22 05:36:54.009626"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_440051


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.020154"], ["updated_at", "2020-04-22 05:36:54.020154"]]
Course Create (340.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.678371"], ["updated_at", "2020-04-22 05:36:53.678371"]]
 (0.1ms)  begin transaction

CommentTest: test_276


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.023523"], ["updated_at", "2020-04-22 05:36:54.023523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.024466"], ["updated_at", "2020-04-22 05:36:54.024466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.025878"], ["updated_at", "2020-04-22 05:36:54.025878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.026820"], ["updated_at", "2020-04-22 05:36:54.026820"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.025335"], ["updated_at", "2020-04-22 05:36:54.025335"]]

CommentTest: test_259461


 (0.1ms)  begin transaction

CommentTest: test_236534


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.037293"], ["updated_at", "2020-04-22 05:36:54.037293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.038470"], ["updated_at", "2020-04-22 05:36:54.038470"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.040464"], ["updated_at", "2020-04-22 05:36:54.040464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.041854"], ["updated_at", "2020-04-22 05:36:54.041854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.043789"], ["updated_at", "2020-04-22 05:36:54.043789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_590


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.037140"], ["updated_at", "2020-04-22 05:36:54.037140"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.051392"], ["updated_at", "2020-04-22 05:36:54.051392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.053480"], ["updated_at", "2020-04-22 05:36:54.053480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_290780


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.057221"], ["updated_at", "2020-04-22 05:36:54.057221"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.060448"], ["updated_at", "2020-04-22 05:36:54.060448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_479636


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.062870"], ["updated_at", "2020-04-22 05:36:54.062870"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.063579"], ["updated_at", "2020-04-22 05:36:54.063579"]]
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.067707"], ["updated_at", "2020-04-22 05:36:54.067707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.069877"], ["updated_at", "2020-04-22 05:36:54.069877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_793514


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.076304"], ["updated_at", "2020-04-22 05:36:54.076304"]]
 (0.1ms)  begin transaction

CommentTest: test_846334


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.079848"], ["updated_at", "2020-04-22 05:36:54.079848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.080527"], ["updated_at", "2020-04-22 05:36:54.080527"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.082207"], ["updated_at", "2020-04-22 05:36:54.082207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.083035"], ["updated_at", "2020-04-22 05:36:54.083035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.085281"], ["updated_at", "2020-04-22 05:36:54.085281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_23540


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_404483


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.094371"], ["updated_at", "2020-04-22 05:36:54.094371"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.097826"], ["updated_at", "2020-04-22 05:36:54.097826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.097382"], ["updated_at", "2020-04-22 05:36:54.097382"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.100685"], ["updated_at", "2020-04-22 05:36:54.100685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.100420"], ["updated_at", "2020-04-22 05:36:54.100420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.102629"], ["updated_at", "2020-04-22 05:36:54.102629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_494205


 (0.1ms)  begin transaction

CommentTest: test_673041


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.113584"], ["updated_at", "2020-04-22 05:36:54.113584"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.114481"], ["updated_at", "2020-04-22 05:36:54.114481"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.117072"], ["updated_at", "2020-04-22 05:36:54.117072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.117478"], ["updated_at", "2020-04-22 05:36:54.117478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.119281"], ["updated_at", "2020-04-22 05:36:54.119281"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.119076"], ["updated_at", "2020-04-22 05:36:54.119076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_950615


 (0.1ms)  begin transaction

CommentTest: test_546380


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.130383"], ["updated_at", "2020-04-22 05:36:54.130383"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.130872"], ["updated_at", "2020-04-22 05:36:54.130872"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.133405"], ["updated_at", "2020-04-22 05:36:54.133405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.136004"], ["updated_at", "2020-04-22 05:36:54.136004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.135930"], ["updated_at", "2020-04-22 05:36:54.135930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.139225"], ["updated_at", "2020-04-22 05:36:54.139225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_855621


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.146980"], ["updated_at", "2020-04-22 05:36:54.146980"]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.150397"], ["updated_at", "2020-04-22 05:36:54.150397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.154468"], ["updated_at", "2020-04-22 05:36:54.154468"]]
 (0.1ms)  begin transaction

CommentTest: test_532043


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.159124"], ["updated_at", "2020-04-22 05:36:54.159124"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.161721"], ["updated_at", "2020-04-22 05:36:54.161721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.163541"], ["updated_at", "2020-04-22 05:36:54.163541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_61253


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.167178"], ["updated_at", "2020-04-22 05:36:54.167178"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.169818"], ["updated_at", "2020-04-22 05:36:54.169818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_577877


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.172792"], ["updated_at", "2020-04-22 05:36:54.172792"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.174749"], ["updated_at", "2020-04-22 05:36:54.174749"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.177481"], ["updated_at", "2020-04-22 05:36:54.177481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.179896"], ["updated_at", "2020-04-22 05:36:54.179896"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_619488


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (135.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.049273"], ["updated_at", "2020-04-22 05:36:54.049273"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.187626"], ["updated_at", "2020-04-22 05:36:54.187626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.192742"], ["updated_at", "2020-04-22 05:36:54.192742"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_864018


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.196614"], ["updated_at", "2020-04-22 05:36:54.196614"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.201218"], ["updated_at", "2020-04-22 05:36:54.201218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_521


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.205011"], ["updated_at", "2020-04-22 05:36:54.205011"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.208120"], ["updated_at", "2020-04-22 05:36:54.208120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.211386"], ["updated_at", "2020-04-22 05:36:54.211386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.214780"], ["updated_at", "2020-04-22 05:36:54.214780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_984927


 (0.1ms)  begin transaction

CommentTest: test_827


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.224882"], ["updated_at", "2020-04-22 05:36:54.224882"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.227644"], ["updated_at", "2020-04-22 05:36:54.227644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.225566"], ["updated_at", "2020-04-22 05:36:54.225566"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.229814"], ["updated_at", "2020-04-22 05:36:54.229814"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.230291"], ["updated_at", "2020-04-22 05:36:54.230291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.233678"], ["updated_at", "2020-04-22 05:36:54.233678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_626


 (0.1ms)  begin transaction

CommentTest: test_112528


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.244917"], ["updated_at", "2020-04-22 05:36:54.244917"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.245958"], ["updated_at", "2020-04-22 05:36:54.245958"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.247888"], ["updated_at", "2020-04-22 05:36:54.247888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.249099"], ["updated_at", "2020-04-22 05:36:54.249099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.250196"], ["updated_at", "2020-04-22 05:36:54.250196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.252379"], ["updated_at", "2020-04-22 05:36:54.252379"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_967


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.260666"], ["updated_at", "2020-04-22 05:36:54.260666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.266229"], ["updated_at", "2020-04-22 05:36:54.266229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_304966


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.268991"], ["updated_at", "2020-04-22 05:36:54.268991"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.269552"], ["updated_at", "2020-04-22 05:36:54.269552"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.272945"], ["updated_at", "2020-04-22 05:36:54.272945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.275761"], ["updated_at", "2020-04-22 05:36:54.275761"]]
 (0.1ms)  begin transaction

CommentTest: test_315


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.278042"], ["updated_at", "2020-04-22 05:36:54.278042"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.281712"], ["updated_at", "2020-04-22 05:36:54.281712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.284345"], ["updated_at", "2020-04-22 05:36:54.284345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_327955


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.288615"], ["updated_at", "2020-04-22 05:36:54.288615"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.294968"], ["updated_at", "2020-04-22 05:36:54.294968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_923


Course Create (114.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.185645"], ["updated_at", "2020-04-22 05:36:54.185645"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.300064"], ["updated_at", "2020-04-22 05:36:54.300064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.303347"], ["updated_at", "2020-04-22 05:36:54.303347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.305992"], ["updated_at", "2020-04-22 05:36:54.305992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_801738


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.318160"], ["updated_at", "2020-04-22 05:36:54.318160"]]
 (0.1ms)  begin transaction

CommentTest: test_706737


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.320889"], ["updated_at", "2020-04-22 05:36:54.320889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.3ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.325685"], ["updated_at", "2020-04-22 05:36:54.325685"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.320984"], ["updated_at", "2020-04-22 05:36:54.320984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.328272"], ["updated_at", "2020-04-22 05:36:54.328272"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.332265"], ["updated_at", "2020-04-22 05:36:54.332265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_700448


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.335043"], ["updated_at", "2020-04-22 05:36:54.335043"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.338125"], ["updated_at", "2020-04-22 05:36:54.338125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.340857"], ["updated_at", "2020-04-22 05:36:54.340857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_370345


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_117985


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.346603"], ["updated_at", "2020-04-22 05:36:54.346603"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.352938"], ["updated_at", "2020-04-22 05:36:54.352938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.352073"], ["updated_at", "2020-04-22 05:36:54.352073"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.357729"], ["updated_at", "2020-04-22 05:36:54.357729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.357445"], ["updated_at", "2020-04-22 05:36:54.357445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.359949"], ["updated_at", "2020-04-22 05:36:54.359949"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_138058


Course Create (444.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:53.926993"], ["updated_at", "2020-04-22 05:36:53.926993"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.375736"], ["updated_at", "2020-04-22 05:36:54.375736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_478638


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.375732"], ["updated_at", "2020-04-22 05:36:54.375732"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.377881"], ["updated_at", "2020-04-22 05:36:54.377881"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.378772"], ["updated_at", "2020-04-22 05:36:54.378772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.382044"], ["updated_at", "2020-04-22 05:36:54.382044"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.377845"], ["updated_at", "2020-04-22 05:36:54.377845"]]
 (0.4ms)  begin transaction

CommentTest: test_238


 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.390935"], ["updated_at", "2020-04-22 05:36:54.390935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_432729


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.393696"], ["updated_at", "2020-04-22 05:36:54.393696"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.393618"], ["updated_at", "2020-04-22 05:36:54.393618"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.397848"], ["updated_at", "2020-04-22 05:36:54.397848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.400730"], ["updated_at", "2020-04-22 05:36:54.400730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (20.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.389322"], ["updated_at", "2020-04-22 05:36:54.389322"]]
Course Create (109.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.301291"], ["updated_at", "2020-04-22 05:36:54.301291"]]
 (0.1ms)  begin transaction

CommentTest: test_470130


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.413056"], ["updated_at", "2020-04-22 05:36:54.413056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.413484"], ["updated_at", "2020-04-22 05:36:54.413484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.415684"], ["updated_at", "2020-04-22 05:36:54.415684"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.415542"], ["updated_at", "2020-04-22 05:36:54.415542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_596293


 (0.1ms)  begin transaction

CommentTest: test_618


Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.414222"], ["updated_at", "2020-04-22 05:36:54.414222"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_809


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.424698"], ["updated_at", "2020-04-22 05:36:54.424698"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.426890"], ["updated_at", "2020-04-22 05:36:54.426890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.427768"], ["updated_at", "2020-04-22 05:36:54.427768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.429629"], ["updated_at", "2020-04-22 05:36:54.429629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.432956"], ["updated_at", "2020-04-22 05:36:54.432956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (4.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_998119


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_438795


Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.445405"], ["updated_at", "2020-04-22 05:36:54.445405"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (22.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.426927"], ["updated_at", "2020-04-22 05:36:54.426927"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.452185"], ["updated_at", "2020-04-22 05:36:54.452185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.452429"], ["updated_at", "2020-04-22 05:36:54.452429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.456155"], ["updated_at", "2020-04-22 05:36:54.456155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.458205"], ["updated_at", "2020-04-22 05:36:54.458205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_217


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.465367"], ["updated_at", "2020-04-22 05:36:54.465367"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.470138"], ["updated_at", "2020-04-22 05:36:54.470138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (5.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.474579"], ["updated_at", "2020-04-22 05:36:54.474579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_711


Course Create (34.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.447706"], ["updated_at", "2020-04-22 05:36:54.447706"]]
 (0.1ms)  SAVEPOINT active_record_1
 (6.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.487116"], ["updated_at", "2020-04-22 05:36:54.487116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_292926


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.492822"], ["updated_at", "2020-04-22 05:36:54.492822"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.492202"], ["updated_at", "2020-04-22 05:36:54.492202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.496856"], ["updated_at", "2020-04-22 05:36:54.496856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.498831"], ["updated_at", "2020-04-22 05:36:54.498831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (21.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.484805"], ["updated_at", "2020-04-22 05:36:54.484805"]]
 (0.1ms)  begin transaction

CommentTest: test_518089


Comment Create (5.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.509771"], ["updated_at", "2020-04-22 05:36:54.509771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_109733


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.512101"], ["updated_at", "2020-04-22 05:36:54.512101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.514035"], ["updated_at", "2020-04-22 05:36:54.514035"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.516866"], ["updated_at", "2020-04-22 05:36:54.516866"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.509862"], ["updated_at", "2020-04-22 05:36:54.509862"]]
 (0.1ms)  begin transaction

CommentTest: test_445


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.521550"], ["updated_at", "2020-04-22 05:36:54.521550"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.522593"], ["updated_at", "2020-04-22 05:36:54.522593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.524581"], ["updated_at", "2020-04-22 05:36:54.524581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_788519


 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.523275"], ["updated_at", "2020-04-22 05:36:54.523275"]]

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.533015"], ["updated_at", "2020-04-22 05:36:54.533015"]]

CommentTest: test_492512


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.535449"], ["updated_at", "2020-04-22 05:36:54.535449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.535484"], ["updated_at", "2020-04-22 05:36:54.535484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.539975"], ["updated_at", "2020-04-22 05:36:54.539975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.540841"], ["updated_at", "2020-04-22 05:36:54.540841"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.535393"], ["updated_at", "2020-04-22 05:36:54.535393"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.549449"], ["updated_at", "2020-04-22 05:36:54.549449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.552384"], ["updated_at", "2020-04-22 05:36:54.552384"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_246820


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_953


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_864241


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.560238"], ["updated_at", "2020-04-22 05:36:54.560238"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.563236"], ["updated_at", "2020-04-22 05:36:54.563236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.555252"], ["updated_at", "2020-04-22 05:36:54.555252"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.566661"], ["updated_at", "2020-04-22 05:36:54.566661"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.570520"], ["updated_at", "2020-04-22 05:36:54.570520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.573651"], ["updated_at", "2020-04-22 05:36:54.573651"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_951


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.577480"], ["updated_at", "2020-04-22 05:36:54.577480"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.580253"], ["updated_at", "2020-04-22 05:36:54.580253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.582249"], ["updated_at", "2020-04-22 05:36:54.582249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_157264


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.586482"], ["updated_at", "2020-04-22 05:36:54.586482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.590589"], ["updated_at", "2020-04-22 05:36:54.590589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_906


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.593104"], ["updated_at", "2020-04-22 05:36:54.593104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.593469"], ["updated_at", "2020-04-22 05:36:54.593469"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.596065"], ["updated_at", "2020-04-22 05:36:54.596065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.598386"], ["updated_at", "2020-04-22 05:36:54.598386"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_332421


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.603520"], ["updated_at", "2020-04-22 05:36:54.603520"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_797


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.609942"], ["updated_at", "2020-04-22 05:36:54.609942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.611478"], ["updated_at", "2020-04-22 05:36:54.611478"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.613003"], ["updated_at", "2020-04-22 05:36:54.613003"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.614323"], ["updated_at", "2020-04-22 05:36:54.614323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.616903"], ["updated_at", "2020-04-22 05:36:54.616903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_480502


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_762


 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.629544"], ["updated_at", "2020-04-22 05:36:54.629544"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.635362"], ["updated_at", "2020-04-22 05:36:54.635362"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.641110"], ["updated_at", "2020-04-22 05:36:54.641110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.645956"], ["updated_at", "2020-04-22 05:36:54.645956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.647212"], ["updated_at", "2020-04-22 05:36:54.647212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_332


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.659076"], ["updated_at", "2020-04-22 05:36:54.659076"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.659613"], ["updated_at", "2020-04-22 05:36:54.659613"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.662321"], ["updated_at", "2020-04-22 05:36:54.662321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.665240"], ["updated_at", "2020-04-22 05:36:54.665240"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_888271


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (110.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.563059"], ["updated_at", "2020-04-22 05:36:54.563059"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.676216"], ["updated_at", "2020-04-22 05:36:54.676216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_717


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.678425"], ["updated_at", "2020-04-22 05:36:54.678425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.673694"], ["updated_at", "2020-04-22 05:36:54.673694"]]
 (0.1ms)  begin transaction

CommentTest: test_466537


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.693285"], ["updated_at", "2020-04-22 05:36:54.693285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.694033"], ["updated_at", "2020-04-22 05:36:54.694033"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.696763"], ["updated_at", "2020-04-22 05:36:54.696763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.699541"], ["updated_at", "2020-04-22 05:36:54.699541"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.696276"], ["updated_at", "2020-04-22 05:36:54.696276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (23.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.683726"], ["updated_at", "2020-04-22 05:36:54.683726"]]
 (0.1ms)  begin transaction

CommentTest: test_912077


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.710699"], ["updated_at", "2020-04-22 05:36:54.710699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.712910"], ["updated_at", "2020-04-22 05:36:54.712910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_74079


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.723860"], ["updated_at", "2020-04-22 05:36:54.723860"]]
 (0.1ms)  begin transaction

CommentTest: test_694


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.727178"], ["updated_at", "2020-04-22 05:36:54.727178"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.727697"], ["updated_at", "2020-04-22 05:36:54.727697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.730540"], ["updated_at", "2020-04-22 05:36:54.730540"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.730339"], ["updated_at", "2020-04-22 05:36:54.730339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.732995"], ["updated_at", "2020-04-22 05:36:54.732995"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_668934


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.741659"], ["updated_at", "2020-04-22 05:36:54.741659"]]
 (0.1ms)  begin transaction

CommentTest: test_159


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.746111"], ["updated_at", "2020-04-22 05:36:54.746111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.746247"], ["updated_at", "2020-04-22 05:36:54.746247"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.749117"], ["updated_at", "2020-04-22 05:36:54.749117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.748793"], ["updated_at", "2020-04-22 05:36:54.748793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.752051"], ["updated_at", "2020-04-22 05:36:54.752051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_875848

 (0.6ms)  rollback transaction

Course Create (338.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.425763"], ["updated_at", "2020-04-22 05:36:54.425763"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.766363"], ["updated_at", "2020-04-22 05:36:54.766363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.769436"], ["updated_at", "2020-04-22 05:36:54.769436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (63.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.710902"], ["updated_at", "2020-04-22 05:36:54.710902"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.776126"], ["updated_at", "2020-04-22 05:36:54.776126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.778301"], ["updated_at", "2020-04-22 05:36:54.778301"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.769509"], ["updated_at", "2020-04-22 05:36:54.769509"]]
 (0.1ms)  begin transaction

CommentTest: test_965


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_120


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.784799"], ["updated_at", "2020-04-22 05:36:54.784799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.791362"], ["updated_at", "2020-04-22 05:36:54.791362"]]
 (0.1ms)  begin transaction

CommentTest: test_951665


Course Create (7.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.784271"], ["updated_at", "2020-04-22 05:36:54.784271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.803486"], ["updated_at", "2020-04-22 05:36:54.803486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_442647


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.808770"], ["updated_at", "2020-04-22 05:36:54.808770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.811500"], ["updated_at", "2020-04-22 05:36:54.811500"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.816133"], ["updated_at", "2020-04-22 05:36:54.816133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.818907"], ["updated_at", "2020-04-22 05:36:54.818907"]]
 (0.7ms)  rollback transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_575


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_717334


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.824916"], ["updated_at", "2020-04-22 05:36:54.824916"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.832828"], ["updated_at", "2020-04-22 05:36:54.832828"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.834287"], ["updated_at", "2020-04-22 05:36:54.834287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.836916"], ["updated_at", "2020-04-22 05:36:54.836916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.836619"], ["updated_at", "2020-04-22 05:36:54.836619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.840683"], ["updated_at", "2020-04-22 05:36:54.840683"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_767


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.846628"], ["updated_at", "2020-04-22 05:36:54.846628"]]
 (0.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.849515"], ["updated_at", "2020-04-22 05:36:54.849515"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.853702"], ["updated_at", "2020-04-22 05:36:54.853702"]]

CommentTest: test_606585


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.860124"], ["updated_at", "2020-04-22 05:36:54.860124"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.862672"], ["updated_at", "2020-04-22 05:36:54.862672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.864672"], ["updated_at", "2020-04-22 05:36:54.864672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_462


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.869568"], ["updated_at", "2020-04-22 05:36:54.869568"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.876148"], ["updated_at", "2020-04-22 05:36:54.876148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_894897


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.880191"], ["updated_at", "2020-04-22 05:36:54.880191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.882131"], ["updated_at", "2020-04-22 05:36:54.882131"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.886533"], ["updated_at", "2020-04-22 05:36:54.886533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_338


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.892457"], ["updated_at", "2020-04-22 05:36:54.892457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.893644"], ["updated_at", "2020-04-22 05:36:54.893644"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.896973"], ["updated_at", "2020-04-22 05:36:54.896973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.899248"], ["updated_at", "2020-04-22 05:36:54.899248"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_426489


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.904082"], ["updated_at", "2020-04-22 05:36:54.904082"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.911223"], ["updated_at", "2020-04-22 05:36:54.911223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_192


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.915402"], ["updated_at", "2020-04-22 05:36:54.915402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.915952"], ["updated_at", "2020-04-22 05:36:54.915952"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.920459"], ["updated_at", "2020-04-22 05:36:54.920459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.925782"], ["updated_at", "2020-04-22 05:36:54.925782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_258273


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.929231"], ["updated_at", "2020-04-22 05:36:54.929231"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_715


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.933562"], ["updated_at", "2020-04-22 05:36:54.933562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.935734"], ["updated_at", "2020-04-22 05:36:54.935734"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.936172"], ["updated_at", "2020-04-22 05:36:54.936172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.938759"], ["updated_at", "2020-04-22 05:36:54.938759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.942297"], ["updated_at", "2020-04-22 05:36:54.942297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_734270


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.946683"], ["updated_at", "2020-04-22 05:36:54.946683"]]
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.950569"], ["updated_at", "2020-04-22 05:36:54.950569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.952633"], ["updated_at", "2020-04-22 05:36:54.952633"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_981


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.958613"], ["updated_at", "2020-04-22 05:36:54.958613"]]
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.962047"], ["updated_at", "2020-04-22 05:36:54.962047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_802963


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.965067"], ["updated_at", "2020-04-22 05:36:54.965067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.965226"], ["updated_at", "2020-04-22 05:36:54.965226"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.968612"], ["updated_at", "2020-04-22 05:36:54.968612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.970328"], ["updated_at", "2020-04-22 05:36:54.970328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_702


 (0.1ms)  SAVEPOINT active_record_1
Course Create (184.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.794816"], ["updated_at", "2020-04-22 05:36:54.794816"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.982538"], ["updated_at", "2020-04-22 05:36:54.982538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_399349


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.985761"], ["updated_at", "2020-04-22 05:36:54.985761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.987063"], ["updated_at", "2020-04-22 05:36:54.987063"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.991370"], ["updated_at", "2020-04-22 05:36:54.991370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:54.993377"], ["updated_at", "2020-04-22 05:36:54.993377"]]
 (0.1ms)  begin transaction

CommentTest: test_628076


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.995817"], ["updated_at", "2020-04-22 05:36:54.995817"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:54.999117"], ["updated_at", "2020-04-22 05:36:54.999117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_644488


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.001600"], ["updated_at", "2020-04-22 05:36:55.001600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.003649"], ["updated_at", "2020-04-22 05:36:55.003649"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.009674"], ["updated_at", "2020-04-22 05:36:55.009674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.012410"], ["updated_at", "2020-04-22 05:36:55.012410"]]
 (0.1ms)  begin transaction

CommentTest: test_613340


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.014775"], ["updated_at", "2020-04-22 05:36:55.014775"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.017097"], ["updated_at", "2020-04-22 05:36:55.017097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.019931"], ["updated_at", "2020-04-22 05:36:55.019931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_413331


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.031534"], ["updated_at", "2020-04-22 05:36:55.031534"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.034470"], ["updated_at", "2020-04-22 05:36:55.034470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.036893"], ["updated_at", "2020-04-22 05:36:55.036893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_270920


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.049959"], ["updated_at", "2020-04-22 05:36:55.049959"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.053136"], ["updated_at", "2020-04-22 05:36:55.053136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.056700"], ["updated_at", "2020-04-22 05:36:55.056700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_920016


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.066196"], ["updated_at", "2020-04-22 05:36:55.066196"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.068585"], ["updated_at", "2020-04-22 05:36:55.068585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.071578"], ["updated_at", "2020-04-22 05:36:55.071578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_935540


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.081692"], ["updated_at", "2020-04-22 05:36:55.081692"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.084133"], ["updated_at", "2020-04-22 05:36:55.084133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.086121"], ["updated_at", "2020-04-22 05:36:55.086121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (113.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.980932"], ["updated_at", "2020-04-22 05:36:54.980932"]]
 (0.1ms)  begin transaction

CommentTest: test_892931


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.096568"], ["updated_at", "2020-04-22 05:36:55.096568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.098891"], ["updated_at", "2020-04-22 05:36:55.098891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_779


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.111336"], ["updated_at", "2020-04-22 05:36:55.111336"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.113912"], ["updated_at", "2020-04-22 05:36:55.113912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.116246"], ["updated_at", "2020-04-22 05:36:55.116246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_319


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.126382"], ["updated_at", "2020-04-22 05:36:55.126382"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.128804"], ["updated_at", "2020-04-22 05:36:55.128804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.130716"], ["updated_at", "2020-04-22 05:36:55.130716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_557


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.141290"], ["updated_at", "2020-04-22 05:36:55.141290"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.144458"], ["updated_at", "2020-04-22 05:36:55.144458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.146897"], ["updated_at", "2020-04-22 05:36:55.146897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_970


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.162296"], ["updated_at", "2020-04-22 05:36:55.162296"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.164483"], ["updated_at", "2020-04-22 05:36:55.164483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.166488"], ["updated_at", "2020-04-22 05:36:55.166488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_458


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.180874"], ["updated_at", "2020-04-22 05:36:55.180874"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.183869"], ["updated_at", "2020-04-22 05:36:55.183869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.186198"], ["updated_at", "2020-04-22 05:36:55.186198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_783


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.198234"], ["updated_at", "2020-04-22 05:36:55.198234"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.201070"], ["updated_at", "2020-04-22 05:36:55.201070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.203079"], ["updated_at", "2020-04-22 05:36:55.203079"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_110


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.212968"], ["updated_at", "2020-04-22 05:36:55.212968"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.216154"], ["updated_at", "2020-04-22 05:36:55.216154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.218602"], ["updated_at", "2020-04-22 05:36:55.218602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_141


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.231206"], ["updated_at", "2020-04-22 05:36:55.231206"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.234346"], ["updated_at", "2020-04-22 05:36:55.234346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.237101"], ["updated_at", "2020-04-22 05:36:55.237101"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.2ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_64


 (0.3ms)  SAVEPOINT active_record_1
Course Create (194.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.096935"], ["updated_at", "2020-04-22 05:36:55.096935"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.299412"], ["updated_at", "2020-04-22 05:36:55.299412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.313485"], ["updated_at", "2020-04-22 05:36:55.313485"]]
 (9.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_289368


 (0.3ms)  SAVEPOINT active_record_1
Course Create (91.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.275069"], ["updated_at", "2020-04-22 05:36:55.275069"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.378343"], ["updated_at", "2020-04-22 05:36:55.378343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.387405"], ["updated_at", "2020-04-22 05:36:55.387405"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_771


Course Create (67.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.367428"], ["updated_at", "2020-04-22 05:36:55.367428"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.444010"], ["updated_at", "2020-04-22 05:36:55.444010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.452425"], ["updated_at", "2020-04-22 05:36:55.452425"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_227410


Course Create (72.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.439225"], ["updated_at", "2020-04-22 05:36:55.439225"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.523180"], ["updated_at", "2020-04-22 05:36:55.523180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.534069"], ["updated_at", "2020-04-22 05:36:55.534069"]]
 (3.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.5ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Course Create (44.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.503871"], ["updated_at", "2020-04-22 05:36:55.503871"]]
 (0.2ms)  begin transaction

CommentTest: test_604


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.582404"], ["updated_at", "2020-04-22 05:36:55.582404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.596339"], ["updated_at", "2020-04-22 05:36:55.596339"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_469392


 (0.3ms)  SAVEPOINT active_record_1
Course Create (12.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.658615"], ["updated_at", "2020-04-22 05:36:55.658615"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.703346"], ["updated_at", "2020-04-22 05:36:55.703346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.717504"], ["updated_at", "2020-04-22 05:36:55.717504"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (13.2ms)  rollback transaction
Course Create (255.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.583397"], ["updated_at", "2020-04-22 05:36:55.583397"]]
 (0.3ms)  begin transaction

CommentTest: test_688995


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.845756"], ["updated_at", "2020-04-22 05:36:55.845756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.861889"], ["updated_at", "2020-04-22 05:36:55.861889"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_40


Comment Create (7.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (67.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.846338"], ["updated_at", "2020-04-22 05:36:55.846338"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (1146.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:54.782011"], ["updated_at", "2020-04-22 05:36:54.782011"]]
 (0.2ms)  begin transaction

CommentTest: test_532389


Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.921113"], ["updated_at", "2020-04-22 05:36:55.921113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.933234"], ["updated_at", "2020-04-22 05:36:55.933234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.940243"], ["updated_at", "2020-04-22 05:36:55.940243"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (6.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:55.938595"], ["updated_at", "2020-04-22 05:36:55.938595"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.1ms)  rollback transaction
 (1.1ms)  begin transaction

CommentTest: test_94


Course Create (27.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.933057"], ["updated_at", "2020-04-22 05:36:55.933057"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:55.985859"], ["updated_at", "2020-04-22 05:36:55.985859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_221894


Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.002044"], ["updated_at", "2020-04-22 05:36:56.002044"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (124.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.915662"], ["updated_at", "2020-04-22 05:36:55.915662"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.047734"], ["updated_at", "2020-04-22 05:36:56.047734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.057009"], ["updated_at", "2020-04-22 05:36:56.057009"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_232


Course Create (120.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:55.981594"], ["updated_at", "2020-04-22 05:36:55.981594"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (67.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.040310"], ["updated_at", "2020-04-22 05:36:56.040310"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.109539"], ["updated_at", "2020-04-22 05:36:56.109539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.120457"], ["updated_at", "2020-04-22 05:36:56.120457"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.119975"], ["updated_at", "2020-04-22 05:36:56.119975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_624234


Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_195


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (23.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.142683"], ["updated_at", "2020-04-22 05:36:56.142683"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (33.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.132192"], ["updated_at", "2020-04-22 05:36:56.132192"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.178782"], ["updated_at", "2020-04-22 05:36:56.178782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.235919"], ["updated_at", "2020-04-22 05:36:56.235919"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_976884


 (1.9ms)  rollback transaction
Course Create (105.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.160133"], ["updated_at", "2020-04-22 05:36:56.160133"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.274859"], ["updated_at", "2020-04-22 05:36:56.274859"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.278984"], ["updated_at", "2020-04-22 05:36:56.278984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  begin transaction

CommentTest: test_784815


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.283931"], ["updated_at", "2020-04-22 05:36:56.283931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.286899"], ["updated_at", "2020-04-22 05:36:56.286899"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Course Create (17.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.290916"], ["updated_at", "2020-04-22 05:36:56.290916"]]
 (0.4ms)  begin transaction

CommentTest: test_498


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.319503"], ["updated_at", "2020-04-22 05:36:56.319503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.328001"], ["updated_at", "2020-04-22 05:36:56.328001"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.333633"], ["updated_at", "2020-04-22 05:36:56.333633"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (1.7ms)  rollback transaction
Course Create (254.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.107396"], ["updated_at", "2020-04-22 05:36:56.107396"]]
Course Create (43.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.321802"], ["updated_at", "2020-04-22 05:36:56.321802"]]
 (0.2ms)  begin transaction

CommentTest: test_434467


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.375924"], ["updated_at", "2020-04-22 05:36:56.375924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_169910


Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.381298"], ["updated_at", "2020-04-22 05:36:56.381298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.384310"], ["updated_at", "2020-04-22 05:36:56.384310"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.4ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.394378"], ["updated_at", "2020-04-22 05:36:56.394378"]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (7.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_429


Course Create (29.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.383252"], ["updated_at", "2020-04-22 05:36:56.383252"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.428034"], ["updated_at", "2020-04-22 05:36:56.428034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Course Create (37.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.385202"], ["updated_at", "2020-04-22 05:36:56.385202"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.442045"], ["updated_at", "2020-04-22 05:36:56.442045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_320


Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.439464"], ["updated_at", "2020-04-22 05:36:56.439464"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.450577"], ["updated_at", "2020-04-22 05:36:56.450577"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
Course Create (67.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.420612"], ["updated_at", "2020-04-22 05:36:56.420612"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.505614"], ["updated_at", "2020-04-22 05:36:56.505614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_512007


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.517400"], ["updated_at", "2020-04-22 05:36:56.517400"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.9ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (64.6ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Course Create (95.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.449530"], ["updated_at", "2020-04-22 05:36:56.449530"]]
 (0.2ms)  begin transaction

CommentTest: test_776


 (0.2ms)  begin transaction

CommentTest: test_126273


Bucket Create (6.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.552047"], ["updated_at", "2020-04-22 05:36:56.552047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.556094"], ["updated_at", "2020-04-22 05:36:56.556094"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.568025"], ["updated_at", "2020-04-22 05:36:56.568025"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (6.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.587582"], ["updated_at", "2020-04-22 05:36:56.587582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (4.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.607366"], ["updated_at", "2020-04-22 05:36:56.607366"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (105.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_165


Course Create (130.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.594231"], ["updated_at", "2020-04-22 05:36:56.594231"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.735332"], ["updated_at", "2020-04-22 05:36:56.735332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (2.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.744717"], ["updated_at", "2020-04-22 05:36:56.744717"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (8.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (24.2ms)  rollback transaction
 (24.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_739


 (0.4ms)  SAVEPOINT active_record_1
 (1.0ms)  begin transaction

CommentTest: test_687745


Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.833077"], ["updated_at", "2020-04-22 05:36:56.833077"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.840192"], ["updated_at", "2020-04-22 05:36:56.840192"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.844901"], ["updated_at", "2020-04-22 05:36:56.844901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.853239"], ["updated_at", "2020-04-22 05:36:56.853239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.856987"], ["updated_at", "2020-04-22 05:36:56.856987"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.864960"], ["updated_at", "2020-04-22 05:36:56.864960"]]
 (4.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_108


Course Create (378.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.518299"], ["updated_at", "2020-04-22 05:36:56.518299"]]
 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.916135"], ["updated_at", "2020-04-22 05:36:56.916135"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_540462


 (1.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.923249"], ["updated_at", "2020-04-22 05:36:56.923249"]]
Course Create (186.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.736332"], ["updated_at", "2020-04-22 05:36:56.736332"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.933892"], ["updated_at", "2020-04-22 05:36:56.933892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.943224"], ["updated_at", "2020-04-22 05:36:56.943224"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_844686


 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (45.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.916319"], ["updated_at", "2020-04-22 05:36:56.916319"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_358


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.973126"], ["updated_at", "2020-04-22 05:36:56.973126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.976041"], ["updated_at", "2020-04-22 05:36:56.976041"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:56.986356"], ["updated_at", "2020-04-22 05:36:56.986356"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.985498"], ["updated_at", "2020-04-22 05:36:56.985498"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:56.995070"], ["updated_at", "2020-04-22 05:36:56.995070"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (4.2ms)  rollback transaction
Course Create (63.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.966219"], ["updated_at", "2020-04-22 05:36:56.966219"]]
 (0.3ms)  begin transaction

CommentTest: test_997


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.045616"], ["updated_at", "2020-04-22 05:36:57.045616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_630


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.053501"], ["updated_at", "2020-04-22 05:36:57.053501"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (9.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.051261"], ["updated_at", "2020-04-22 05:36:57.051261"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.067952"], ["updated_at", "2020-04-22 05:36:57.067952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Course Create (21.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.060601"], ["updated_at", "2020-04-22 05:36:57.060601"]]
 (0.2ms)  begin transaction

CommentTest: test_70457


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.093137"], ["updated_at", "2020-04-22 05:36:57.093137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.084822"], ["updated_at", "2020-04-22 05:36:57.084822"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.101618"], ["updated_at", "2020-04-22 05:36:57.101618"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (5.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.7ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_535


 (5.3ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (62.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.093166"], ["updated_at", "2020-04-22 05:36:57.093166"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.150585"], ["updated_at", "2020-04-22 05:36:57.150585"]]
 (0.2ms)  begin transaction

CommentTest: test_495


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.167887"], ["updated_at", "2020-04-22 05:36:57.167887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.176488"], ["updated_at", "2020-04-22 05:36:57.176488"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.169885"], ["updated_at", "2020-04-22 05:36:57.169885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.188616"], ["updated_at", "2020-04-22 05:36:57.188616"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.2ms)  rollback transaction
 (2.6ms)  rollback transaction
Course Create (48.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.174329"], ["updated_at", "2020-04-22 05:36:57.174329"]]
 (0.2ms)  begin transaction

CommentTest: test_990


 (0.2ms)  begin transaction

CommentTest: test_774556


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.232555"], ["updated_at", "2020-04-22 05:36:57.232555"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.231327"], ["updated_at", "2020-04-22 05:36:57.231327"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.246805"], ["updated_at", "2020-04-22 05:36:57.246805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.255896"], ["updated_at", "2020-04-22 05:36:57.255896"]]
Recording Create (12.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.247491"], ["updated_at", "2020-04-22 05:36:57.247491"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

Course Create (78.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.234902"], ["updated_at", "2020-04-22 05:36:57.234902"]]

CommentTest: test_357


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.321352"], ["updated_at", "2020-04-22 05:36:57.321352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_738


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.370158"], ["updated_at", "2020-04-22 05:36:57.370158"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.383044"], ["updated_at", "2020-04-22 05:36:57.383044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.392428"], ["updated_at", "2020-04-22 05:36:57.392428"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (10.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (13.1ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_464


 (1.0ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.535937"], ["updated_at", "2020-04-22 05:36:57.535937"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.556957"], ["updated_at", "2020-04-22 05:36:57.556957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.601787"], ["updated_at", "2020-04-22 05:36:57.601787"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_90


 (0.6ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.666643"], ["updated_at", "2020-04-22 05:36:57.666643"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.681745"], ["updated_at", "2020-04-22 05:36:57.681745"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.695526"], ["updated_at", "2020-04-22 05:36:57.695526"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_969


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.728331"], ["updated_at", "2020-04-22 05:36:57.728331"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.743730"], ["updated_at", "2020-04-22 05:36:57.743730"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.779176"], ["updated_at", "2020-04-22 05:36:57.779176"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (14.5ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_775


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.873774"], ["updated_at", "2020-04-22 05:36:57.873774"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.882226"], ["updated_at", "2020-04-22 05:36:57.882226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.893790"], ["updated_at", "2020-04-22 05:36:57.893790"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (15.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_993


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.947781"], ["updated_at", "2020-04-22 05:36:57.947781"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:57.957261"], ["updated_at", "2020-04-22 05:36:57.957261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:57.968743"], ["updated_at", "2020-04-22 05:36:57.968743"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1070.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:56.923873"], ["updated_at", "2020-04-22 05:36:56.923873"]]
 (1.7ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.001436"], ["updated_at", "2020-04-22 05:36:58.001436"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.008074"], ["updated_at", "2020-04-22 05:36:58.008074"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_546


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_470771


 (0.2ms)  SAVEPOINT active_record_1
Course Create (17.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.018362"], ["updated_at", "2020-04-22 05:36:58.018362"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.048933"], ["updated_at", "2020-04-22 05:36:58.048933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (8.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.061244"], ["updated_at", "2020-04-22 05:36:58.061244"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (14.5ms)  rollback transaction
Course Create (113.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.037976"], ["updated_at", "2020-04-22 05:36:58.037976"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.163193"], ["updated_at", "2020-04-22 05:36:58.163193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.172957"], ["updated_at", "2020-04-22 05:36:58.172957"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (33.5ms)  begin transaction

CommentTest: test_325


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_139727


 (0.3ms)  SAVEPOINT active_record_1
Course Create (64.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.199338"], ["updated_at", "2020-04-22 05:36:58.199338"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.282529"], ["updated_at", "2020-04-22 05:36:58.282529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.293306"], ["updated_at", "2020-04-22 05:36:58.293306"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.351447"], ["updated_at", "2020-04-22 05:36:58.351447"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.363738"], ["updated_at", "2020-04-22 05:36:58.363738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.369106"], ["updated_at", "2020-04-22 05:36:58.369106"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (7.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (23.6ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_755


 (0.5ms)  SAVEPOINT active_record_1
Course Create (16.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.494282"], ["updated_at", "2020-04-22 05:36:58.494282"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.522306"], ["updated_at", "2020-04-22 05:36:58.522306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.534658"], ["updated_at", "2020-04-22 05:36:58.534658"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_302


Course Create (347.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.232719"], ["updated_at", "2020-04-22 05:36:58.232719"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.620877"], ["updated_at", "2020-04-22 05:36:58.620877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.630268"], ["updated_at", "2020-04-22 05:36:58.630268"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.8ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_940787


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.726314"], ["updated_at", "2020-04-22 05:36:58.726314"]]
 (9.6ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.751194"], ["updated_at", "2020-04-22 05:36:58.751194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.768288"], ["updated_at", "2020-04-22 05:36:58.768288"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_807554


 (0.9ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.873614"], ["updated_at", "2020-04-22 05:36:58.873614"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:58.891491"], ["updated_at", "2020-04-22 05:36:58.891491"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:58.902472"], ["updated_at", "2020-04-22 05:36:58.902472"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_201919


 (0.3ms)  SAVEPOINT active_record_1
Course Create (299.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:58.617327"], ["updated_at", "2020-04-22 05:36:58.617327"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.065453"], ["updated_at", "2020-04-22 05:36:59.065453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.075409"], ["updated_at", "2020-04-22 05:36:59.075409"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (52.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.052984"], ["updated_at", "2020-04-22 05:36:59.052984"]]
 (0.3ms)  begin transaction

CommentTest: test_130


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.139761"], ["updated_at", "2020-04-22 05:36:59.139761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.140142"], ["updated_at", "2020-04-22 05:36:59.140142"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.147028"], ["updated_at", "2020-04-22 05:36:59.147028"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_520781


Course Create (42.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.139456"], ["updated_at", "2020-04-22 05:36:59.139456"]]
 (0.3ms)  SAVEPOINT active_record_1
 (3.6ms)  SAVEPOINT active_record_1
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.190382"], ["updated_at", "2020-04-22 05:36:59.190382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.200735"], ["updated_at", "2020-04-22 05:36:59.200735"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_658209


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.212175"], ["updated_at", "2020-04-22 05:36:59.212175"]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_404


Course Create (43.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.184728"], ["updated_at", "2020-04-22 05:36:59.184728"]]
Bucket Create (5.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.225678"], ["updated_at", "2020-04-22 05:36:59.225678"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.236423"], ["updated_at", "2020-04-22 05:36:59.236423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.244725"], ["updated_at", "2020-04-22 05:36:59.244725"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.242895"], ["updated_at", "2020-04-22 05:36:59.242895"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_120676


Course Create (62.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.235162"], ["updated_at", "2020-04-22 05:36:59.235162"]]
Course Create (1977.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:57.319997"], ["updated_at", "2020-04-22 05:36:57.319997"]]
 (1.0ms)  begin transaction

CommentTest: test_825480


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.305733"], ["updated_at", "2020-04-22 05:36:59.305733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.306872"], ["updated_at", "2020-04-22 05:36:59.306872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.311827"], ["updated_at", "2020-04-22 05:36:59.311827"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.321429"], ["updated_at", "2020-04-22 05:36:59.321429"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (33.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.307241"], ["updated_at", "2020-04-22 05:36:59.307241"]]
 (0.2ms)  begin transaction

CommentTest: test_123


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.346761"], ["updated_at", "2020-04-22 05:36:59.346761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.357241"], ["updated_at", "2020-04-22 05:36:59.357241"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
Course Create (61.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.294657"], ["updated_at", "2020-04-22 05:36:59.294657"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.384543"], ["updated_at", "2020-04-22 05:36:59.384543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.1ms)  begin transaction

CommentTest: test_10


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (10.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.391803"], ["updated_at", "2020-04-22 05:36:59.391803"]]
 (29.8ms)  SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (6.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (6.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Course Create (32.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.393235"], ["updated_at", "2020-04-22 05:36:59.393235"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.438078"], ["updated_at", "2020-04-22 05:36:59.438078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_394861


 (0.2ms)  begin transaction

CommentTest: test_723475


 (0.3ms)  SAVEPOINT active_record_1
Course Create (96.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.349077"], ["updated_at", "2020-04-22 05:36:59.349077"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.452894"], ["updated_at", "2020-04-22 05:36:59.452894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.454951"], ["updated_at", "2020-04-22 05:36:59.454951"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.459814"], ["updated_at", "2020-04-22 05:36:59.459814"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_800

 (5.1ms)  rollback transaction

 (0.3ms)  SAVEPOINT active_record_1
Course Create (43.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.451841"], ["updated_at", "2020-04-22 05:36:59.451841"]]
Course Create (68.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.446800"], ["updated_at", "2020-04-22 05:36:59.446800"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.508136"], ["updated_at", "2020-04-22 05:36:59.508136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.521072"], ["updated_at", "2020-04-22 05:36:59.521072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_987


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.529769"], ["updated_at", "2020-04-22 05:36:59.529769"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.535298"], ["updated_at", "2020-04-22 05:36:59.535298"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (5.9ms)  rollback transaction
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (51.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.533213"], ["updated_at", "2020-04-22 05:36:59.533213"]]
 (12.2ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.591230"], ["updated_at", "2020-04-22 05:36:59.591230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (100.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.497054"], ["updated_at", "2020-04-22 05:36:59.497054"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.599541"], ["updated_at", "2020-04-22 05:36:59.599541"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.603994"], ["updated_at", "2020-04-22 05:36:59.603994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_534446


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.616415"], ["updated_at", "2020-04-22 05:36:59.616415"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_764500


Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Course Create (31.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.615710"], ["updated_at", "2020-04-22 05:36:59.615710"]]

CommentTest: test_886


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.654254"], ["updated_at", "2020-04-22 05:36:59.654254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (25.2ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.671266"], ["updated_at", "2020-04-22 05:36:59.671266"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_616


Course Create (60.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.626355"], ["updated_at", "2020-04-22 05:36:59.626355"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.695250"], ["updated_at", "2020-04-22 05:36:59.695250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.706614"], ["updated_at", "2020-04-22 05:36:59.706614"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_776419


Course Create (54.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.683638"], ["updated_at", "2020-04-22 05:36:59.683638"]]
Course Create (93.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.659982"], ["updated_at", "2020-04-22 05:36:59.659982"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.763115"], ["updated_at", "2020-04-22 05:36:59.763115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.751919"], ["updated_at", "2020-04-22 05:36:59.751919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.784039"], ["updated_at", "2020-04-22 05:36:59.784039"]]

CommentTest: test_309541


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.782679"], ["updated_at", "2020-04-22 05:36:59.782679"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_133


 (0.3ms)  SAVEPOINT active_record_1
Course Create (37.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.794673"], ["updated_at", "2020-04-22 05:36:59.794673"]]
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.839968"], ["updated_at", "2020-04-22 05:36:59.839968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_166


Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.847288"], ["updated_at", "2020-04-22 05:36:59.847288"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (87.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.751657"], ["updated_at", "2020-04-22 05:36:59.751657"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.861004"], ["updated_at", "2020-04-22 05:36:59.861004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.868144"], ["updated_at", "2020-04-22 05:36:59.868144"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (40.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.853496"], ["updated_at", "2020-04-22 05:36:59.853496"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_628469


Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.903092"], ["updated_at", "2020-04-22 05:36:59.903092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (71.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.835492"], ["updated_at", "2020-04-22 05:36:59.835492"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.914053"], ["updated_at", "2020-04-22 05:36:59.914053"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.924114"], ["updated_at", "2020-04-22 05:36:59.924114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_762465


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.936344"], ["updated_at", "2020-04-22 05:36:59.936344"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (7.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_690


Course Create (24.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.942915"], ["updated_at", "2020-04-22 05:36:59.942915"]]
 (0.2ms)  begin transaction

CommentTest: test_502


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.974443"], ["updated_at", "2020-04-22 05:36:59.974443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.972228"], ["updated_at", "2020-04-22 05:36:59.972228"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:36:59.983707"], ["updated_at", "2020-04-22 05:36:59.983707"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:36:59.988228"], ["updated_at", "2020-04-22 05:36:59.988228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (8.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.002394"], ["updated_at", "2020-04-22 05:37:00.002394"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_413472


Course Create (83.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.976280"], ["updated_at", "2020-04-22 05:36:59.976280"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.075537"], ["updated_at", "2020-04-22 05:37:00.075537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.085251"], ["updated_at", "2020-04-22 05:37:00.085251"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_623


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.104002"], ["updated_at", "2020-04-22 05:37:00.104002"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (4.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.119076"], ["updated_at", "2020-04-22 05:37:00.119076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_830


 (0.2ms)  SAVEPOINT active_record_1
Course Create (64.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.069850"], ["updated_at", "2020-04-22 05:37:00.069850"]]
Bucket Create (6.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.143439"], ["updated_at", "2020-04-22 05:37:00.143439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.156181"], ["updated_at", "2020-04-22 05:37:00.156181"]]
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.174802"], ["updated_at", "2020-04-22 05:37:00.174802"]]
 (0.3ms)  begin transaction

CommentTest: test_57543


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (63.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.138242"], ["updated_at", "2020-04-22 05:37:00.138242"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.209343"], ["updated_at", "2020-04-22 05:37:00.209343"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.224676"], ["updated_at", "2020-04-22 05:37:00.224676"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (1.7ms)  rollback transaction
Course Create (346.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:36:59.906900"], ["updated_at", "2020-04-22 05:36:59.906900"]]
 (0.2ms)  begin transaction

CommentTest: test_121


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.286161"], ["updated_at", "2020-04-22 05:37:00.286161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_74


 (0.3ms)  SAVEPOINT active_record_1
 (4.1ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.290634"], ["updated_at", "2020-04-22 05:37:00.290634"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.292684"], ["updated_at", "2020-04-22 05:37:00.292684"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.303110"], ["updated_at", "2020-04-22 05:37:00.303110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.313093"], ["updated_at", "2020-04-22 05:37:00.313093"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_436029


Course Create (33.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.293915"], ["updated_at", "2020-04-22 05:37:00.293915"]]
 (3.7ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.344825"], ["updated_at", "2020-04-22 05:37:00.344825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.353823"], ["updated_at", "2020-04-22 05:37:00.353823"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Comment Create (7.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (45.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.336366"], ["updated_at", "2020-04-22 05:37:00.336366"]]
 (5.4ms)  begin transaction

CommentTest: test_700


Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.392809"], ["updated_at", "2020-04-22 05:37:00.392809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (204.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.197691"], ["updated_at", "2020-04-22 05:37:00.197691"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.409600"], ["updated_at", "2020-04-22 05:37:00.409600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.401402"], ["updated_at", "2020-04-22 05:37:00.401402"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.417919"], ["updated_at", "2020-04-22 05:37:00.417919"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_882087


 (0.2ms)  begin transaction

CommentTest: test_369608


 (0.2ms)  begin transaction

CommentTest: test_19


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.454316"], ["updated_at", "2020-04-22 05:37:00.454316"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.463413"], ["updated_at", "2020-04-22 05:37:00.463413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.393125"], ["updated_at", "2020-04-22 05:37:00.393125"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.474860"], ["updated_at", "2020-04-22 05:37:00.474860"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.495959"], ["updated_at", "2020-04-22 05:37:00.495959"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (12.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.473353"], ["updated_at", "2020-04-22 05:37:00.473353"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.7ms)  rollback transaction
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_793


Course Create (104.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.456152"], ["updated_at", "2020-04-22 05:37:00.456152"]]
Course Create (112.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.452963"], ["updated_at", "2020-04-22 05:37:00.452963"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.570029"], ["updated_at", "2020-04-22 05:37:00.570029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.581782"], ["updated_at", "2020-04-22 05:37:00.581782"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.577818"], ["updated_at", "2020-04-22 05:37:00.577818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (10.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.593636"], ["updated_at", "2020-04-22 05:37:00.593636"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_568


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.618600"], ["updated_at", "2020-04-22 05:37:00.618600"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.629470"], ["updated_at", "2020-04-22 05:37:00.629470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_245601


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.707296"], ["updated_at", "2020-04-22 05:37:00.707296"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_568604


 (0.5ms)  SAVEPOINT active_record_1
Course Create (21.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.544208"], ["updated_at", "2020-04-22 05:37:00.544208"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.733736"], ["updated_at", "2020-04-22 05:37:00.733736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.6ms)  rollback transaction
Course Create (34.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.706668"], ["updated_at", "2020-04-22 05:37:00.706668"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.743343"], ["updated_at", "2020-04-22 05:37:00.743343"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.748177"], ["updated_at", "2020-04-22 05:37:00.748177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.771491"], ["updated_at", "2020-04-22 05:37:00.771491"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_300


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (12.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (2.5ms)  begin transaction
Course Create (70.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.729259"], ["updated_at", "2020-04-22 05:37:00.729259"]]

CommentTest: test_129


 (1.5ms)  SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.811284"], ["updated_at", "2020-04-22 05:37:00.811284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.819948"], ["updated_at", "2020-04-22 05:37:00.819948"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (13.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_751278


 (1.1ms)  SAVEPOINT active_record_1
Course Create (51.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.786794"], ["updated_at", "2020-04-22 05:37:00.786794"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.856227"], ["updated_at", "2020-04-22 05:37:00.856227"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_149721


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.867970"], ["updated_at", "2020-04-22 05:37:00.867970"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.872883"], ["updated_at", "2020-04-22 05:37:00.872883"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.886007"], ["updated_at", "2020-04-22 05:37:00.886007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (106.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.853787"], ["updated_at", "2020-04-22 05:37:00.853787"]]
 (0.3ms)  begin transaction

CommentTest: test_447


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:00.985584"], ["updated_at", "2020-04-22 05:37:00.985584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Recording Create (7.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.995853"], ["updated_at", "2020-04-22 05:37:00.995853"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:00.893893"], ["updated_at", "2020-04-22 05:37:00.893893"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.5ms)  rollback transaction
 (9.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_680527


Course Create (76.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.989711"], ["updated_at", "2020-04-22 05:37:00.989711"]]
 (0.2ms)  begin transaction

CommentTest: test_450897


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.075781"], ["updated_at", "2020-04-22 05:37:01.075781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.082435"], ["updated_at", "2020-04-22 05:37:01.082435"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
Course Create (35.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.072984"], ["updated_at", "2020-04-22 05:37:01.072984"]]
Course Create (40.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.075575"], ["updated_at", "2020-04-22 05:37:01.075575"]]
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.115201"], ["updated_at", "2020-04-22 05:37:01.115201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.124713"], ["updated_at", "2020-04-22 05:37:01.124713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.133119"], ["updated_at", "2020-04-22 05:37:01.133119"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.140786"], ["updated_at", "2020-04-22 05:37:01.140786"]]
 (4.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.8ms)  SAVEPOINT active_record_1
Course Create (47.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.125262"], ["updated_at", "2020-04-22 05:37:01.125262"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.180580"], ["updated_at", "2020-04-22 05:37:01.180580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.188711"], ["updated_at", "2020-04-22 05:37:01.188711"]]
 (0.2ms)  begin transaction

CommentTest: test_655585


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_431270


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.232344"], ["updated_at", "2020-04-22 05:37:01.232344"]]
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.252319"], ["updated_at", "2020-04-22 05:37:01.252319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction
Course Create (44.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.207631"], ["updated_at", "2020-04-22 05:37:01.207631"]]

CommentTest: test_113


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.265321"], ["updated_at", "2020-04-22 05:37:01.265321"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.279313"], ["updated_at", "2020-04-22 05:37:01.279313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.285181"], ["updated_at", "2020-04-22 05:37:01.285181"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (48.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.282625"], ["updated_at", "2020-04-22 05:37:01.282625"]]
 (0.2ms)  begin transaction

CommentTest: test_537148


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.341584"], ["updated_at", "2020-04-22 05:37:01.341584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (539.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:00.808440"], ["updated_at", "2020-04-22 05:37:00.808440"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.361330"], ["updated_at", "2020-04-22 05:37:01.361330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.350915"], ["updated_at", "2020-04-22 05:37:01.350915"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.368885"], ["updated_at", "2020-04-22 05:37:01.368885"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_123739


 (1.6ms)  rollback transaction
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_304


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.393005"], ["updated_at", "2020-04-22 05:37:01.393005"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.414077"], ["updated_at", "2020-04-22 05:37:01.414077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (32.6ms)  rollback transaction
Course Create (87.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.343588"], ["updated_at", "2020-04-22 05:37:01.343588"]]
 (0.9ms)  begin transaction

CommentTest: test_804


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.443259"], ["updated_at", "2020-04-22 05:37:01.443259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.427162"], ["updated_at", "2020-04-22 05:37:01.427162"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.454054"], ["updated_at", "2020-04-22 05:37:01.454054"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (14.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (18.2ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_863482


Course Create (127.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.399484"], ["updated_at", "2020-04-22 05:37:01.399484"]]
Course Create (57.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.446625"], ["updated_at", "2020-04-22 05:37:01.446625"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_127878

Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.540777"], ["updated_at", "2020-04-22 05:37:01.540777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.541415"], ["updated_at", "2020-04-22 05:37:01.541415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.548062"], ["updated_at", "2020-04-22 05:37:01.548062"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.547761"], ["updated_at", "2020-04-22 05:37:01.547761"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (28.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.547996"], ["updated_at", "2020-04-22 05:37:01.547996"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_396


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.585457"], ["updated_at", "2020-04-22 05:37:01.585457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.599580"], ["updated_at", "2020-04-22 05:37:01.599580"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_188


Course Create (72.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.539037"], ["updated_at", "2020-04-22 05:37:01.539037"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.617808"], ["updated_at", "2020-04-22 05:37:01.617808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_896094


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.627195"], ["updated_at", "2020-04-22 05:37:01.627195"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (42.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.593287"], ["updated_at", "2020-04-22 05:37:01.593287"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.642907"], ["updated_at", "2020-04-22 05:37:01.642907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.649440"], ["updated_at", "2020-04-22 05:37:01.649440"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (53.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.614299"], ["updated_at", "2020-04-22 05:37:01.614299"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_302593


Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.675484"], ["updated_at", "2020-04-22 05:37:01.675484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_982


Course Create (55.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.635504"], ["updated_at", "2020-04-22 05:37:01.635504"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (5.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.685749"], ["updated_at", "2020-04-22 05:37:01.685749"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.700848"], ["updated_at", "2020-04-22 05:37:01.700848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.723408"], ["updated_at", "2020-04-22 05:37:01.723408"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (42.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.679237"], ["updated_at", "2020-04-22 05:37:01.679237"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_972

Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.739284"], ["updated_at", "2020-04-22 05:37:01.739284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (10.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.760106"], ["updated_at", "2020-04-22 05:37:01.760106"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_106225


Course Create (90.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.694003"], ["updated_at", "2020-04-22 05:37:01.694003"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.799045"], ["updated_at", "2020-04-22 05:37:01.799045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.806438"], ["updated_at", "2020-04-22 05:37:01.806438"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_513963


 (0.3ms)  SAVEPOINT active_record_1
Course Create (79.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.746771"], ["updated_at", "2020-04-22 05:37:01.746771"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (11.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.834818"], ["updated_at", "2020-04-22 05:37:01.834818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.842994"], ["updated_at", "2020-04-22 05:37:01.842994"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_851


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.851654"], ["updated_at", "2020-04-22 05:37:01.851654"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.863940"], ["updated_at", "2020-04-22 05:37:01.863940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
Course Create (40.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.828468"], ["updated_at", "2020-04-22 05:37:01.828468"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.869942"], ["updated_at", "2020-04-22 05:37:01.869942"]]
 (0.2ms)  begin transaction

CommentTest: test_746


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.875601"], ["updated_at", "2020-04-22 05:37:01.875601"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.883323"], ["updated_at", "2020-04-22 05:37:01.883323"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Course Create (53.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.879133"], ["updated_at", "2020-04-22 05:37:01.879133"]]
 (18.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_791061


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.946400"], ["updated_at", "2020-04-22 05:37:01.946400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_879


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.953440"], ["updated_at", "2020-04-22 05:37:01.953440"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.960540"], ["updated_at", "2020-04-22 05:37:01.960540"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:01.979827"], ["updated_at", "2020-04-22 05:37:01.979827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:01.996520"], ["updated_at", "2020-04-22 05:37:01.996520"]]
 (13.7ms)  rollback transaction
Course Create (64.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.952627"], ["updated_at", "2020-04-22 05:37:01.952627"]]
 (27.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.027587"], ["updated_at", "2020-04-22 05:37:02.027587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_844


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.034339"], ["updated_at", "2020-04-22 05:37:02.034339"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_480755


Course Create (25.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.035658"], ["updated_at", "2020-04-22 05:37:02.035658"]]
 (0.2ms)  SAVEPOINT active_record_1
 (7.8ms)  begin transaction

CommentTest: test_194


Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.072551"], ["updated_at", "2020-04-22 05:37:02.072551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.081468"], ["updated_at", "2020-04-22 05:37:02.081468"]]
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.078254"], ["updated_at", "2020-04-22 05:37:02.078254"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.091834"], ["updated_at", "2020-04-22 05:37:02.091834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (42.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.069759"], ["updated_at", "2020-04-22 05:37:02.069759"]]
 (0.2ms)  begin transaction

CommentTest: test_513


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.101471"], ["updated_at", "2020-04-22 05:37:02.101471"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.118916"], ["updated_at", "2020-04-22 05:37:02.118916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.126149"], ["updated_at", "2020-04-22 05:37:02.126149"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_416

 (0.3ms)  SAVEPOINT active_record_1

Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.185855"], ["updated_at", "2020-04-22 05:37:02.185855"]]
 (0.2ms)  begin transaction

CommentTest: test_216961


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.196917"], ["updated_at", "2020-04-22 05:37:02.196917"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.197217"], ["updated_at", "2020-04-22 05:37:02.197217"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.206619"], ["updated_at", "2020-04-22 05:37:02.206619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.205933"], ["updated_at", "2020-04-22 05:37:02.205933"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.220836"], ["updated_at", "2020-04-22 05:37:02.220836"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

Course Create (138.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.120216"], ["updated_at", "2020-04-22 05:37:02.120216"]]

CommentTest: test_389852


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.266328"], ["updated_at", "2020-04-22 05:37:02.266328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.279815"], ["updated_at", "2020-04-22 05:37:02.279815"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.2ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_665


 (2.3ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_684


Course Create (35.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.278441"], ["updated_at", "2020-04-22 05:37:02.278441"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.326165"], ["updated_at", "2020-04-22 05:37:02.326165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.311658"], ["updated_at", "2020-04-22 05:37:02.311658"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.342129"], ["updated_at", "2020-04-22 05:37:02.342129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.349650"], ["updated_at", "2020-04-22 05:37:02.349650"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.336873"], ["updated_at", "2020-04-22 05:37:02.336873"]]
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (8.5ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_435947


 (0.2ms)  begin transaction

CommentTest: test_466


Course Create (67.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.315913"], ["updated_at", "2020-04-22 05:37:02.315913"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.386159"], ["updated_at", "2020-04-22 05:37:02.386159"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.393267"], ["updated_at", "2020-04-22 05:37:02.393267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.400707"], ["updated_at", "2020-04-22 05:37:02.400707"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.407062"], ["updated_at", "2020-04-22 05:37:02.407062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.449087"], ["updated_at", "2020-04-22 05:37:02.449087"]]
Course Create (60.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.385483"], ["updated_at", "2020-04-22 05:37:02.385483"]]
 (0.2ms)  begin transaction

CommentTest: test_778


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.460592"], ["updated_at", "2020-04-22 05:37:02.460592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.467930"], ["updated_at", "2020-04-22 05:37:02.467930"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (57.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.462464"], ["updated_at", "2020-04-22 05:37:02.462464"]]
 (27.0ms)  rollback transaction
 (0.3ms)  begin transaction
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.527486"], ["updated_at", "2020-04-22 05:37:02.527486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_602336


 (0.5ms)  begin transaction

CommentTest: test_350


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.544228"], ["updated_at", "2020-04-22 05:37:02.544228"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (754.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:01.788429"], ["updated_at", "2020-04-22 05:37:01.788429"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.558083"], ["updated_at", "2020-04-22 05:37:02.558083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.565905"], ["updated_at", "2020-04-22 05:37:02.565905"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_572458


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.609653"], ["updated_at", "2020-04-22 05:37:02.609653"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.618609"], ["updated_at", "2020-04-22 05:37:02.618609"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.642587"], ["updated_at", "2020-04-22 05:37:02.642587"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (15.9ms)  rollback transaction
Course Create (139.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.547624"], ["updated_at", "2020-04-22 05:37:02.547624"]]
 (0.5ms)  begin transaction

CommentTest: test_853


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.752771"], ["updated_at", "2020-04-22 05:37:02.752771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (35.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (142.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.546283"], ["updated_at", "2020-04-22 05:37:02.546283"]]
 (0.2ms)  begin transaction

CommentTest: test_772067


Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.766533"], ["updated_at", "2020-04-22 05:37:02.766533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.777300"], ["updated_at", "2020-04-22 05:37:02.777300"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.783776"], ["updated_at", "2020-04-22 05:37:02.783776"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (56.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.771004"], ["updated_at", "2020-04-22 05:37:02.771004"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.836487"], ["updated_at", "2020-04-22 05:37:02.836487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.846867"], ["updated_at", "2020-04-22 05:37:02.846867"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (62.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_650


Course Create (107.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.753577"], ["updated_at", "2020-04-22 05:37:02.753577"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.873503"], ["updated_at", "2020-04-22 05:37:02.873503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_38008


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.892898"], ["updated_at", "2020-04-22 05:37:02.892898"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.4ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (35.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.880672"], ["updated_at", "2020-04-22 05:37:02.880672"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_341771


Comment Create (14.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.924580"], ["updated_at", "2020-04-22 05:37:02.924580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_696


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.963417"], ["updated_at", "2020-04-22 05:37:02.963417"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:02.976996"], ["updated_at", "2020-04-22 05:37:02.976996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.993760"], ["updated_at", "2020-04-22 05:37:02.993760"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (8.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:02.961556"], ["updated_at", "2020-04-22 05:37:02.961556"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.6ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_920


 (0.2ms)  begin transaction

CommentTest: test_671


Course Create (94.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.944555"], ["updated_at", "2020-04-22 05:37:02.944555"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.047335"], ["updated_at", "2020-04-22 05:37:03.047335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (163.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:02.885708"], ["updated_at", "2020-04-22 05:37:02.885708"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.054883"], ["updated_at", "2020-04-22 05:37:03.054883"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.059976"], ["updated_at", "2020-04-22 05:37:03.059976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.069040"], ["updated_at", "2020-04-22 05:37:03.069040"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (11.9ms)  rollback transaction
Course Create (40.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.047137"], ["updated_at", "2020-04-22 05:37:03.047137"]]
 (0.2ms)  begin transaction

CommentTest: test_495360


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.099770"], ["updated_at", "2020-04-22 05:37:03.099770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_142411

Course Create (63.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.041850"], ["updated_at", "2020-04-22 05:37:03.041850"]]

Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.111394"], ["updated_at", "2020-04-22 05:37:03.111394"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.112404"], ["updated_at", "2020-04-22 05:37:03.112404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (3.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.121715"], ["updated_at", "2020-04-22 05:37:03.121715"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (3.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_710


Course Create (40.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.118001"], ["updated_at", "2020-04-22 05:37:03.118001"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.167017"], ["updated_at", "2020-04-22 05:37:03.167017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (67.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.102407"], ["updated_at", "2020-04-22 05:37:03.102407"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.176889"], ["updated_at", "2020-04-22 05:37:03.176889"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  begin transaction

Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.179562"], ["updated_at", "2020-04-22 05:37:03.179562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_622


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.187246"], ["updated_at", "2020-04-22 05:37:03.187246"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (39.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.163176"], ["updated_at", "2020-04-22 05:37:03.163176"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.209104"], ["updated_at", "2020-04-22 05:37:03.209104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_83091


 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.218438"], ["updated_at", "2020-04-22 05:37:03.218438"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_149341


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (44.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.187432"], ["updated_at", "2020-04-22 05:37:03.187432"]]
 (2.5ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.239813"], ["updated_at", "2020-04-22 05:37:03.239813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.248864"], ["updated_at", "2020-04-22 05:37:03.248864"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_548


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (9.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (67.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.218108"], ["updated_at", "2020-04-22 05:37:03.218108"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.297485"], ["updated_at", "2020-04-22 05:37:03.297485"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (17.2ms)  rollback transaction
Course Create (73.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.238226"], ["updated_at", "2020-04-22 05:37:03.238226"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.320958"], ["updated_at", "2020-04-22 05:37:03.320958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_802


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.331778"], ["updated_at", "2020-04-22 05:37:03.331778"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (20.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.316730"], ["updated_at", "2020-04-22 05:37:03.316730"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_744500


Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.375913"], ["updated_at", "2020-04-22 05:37:03.375913"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.376811"], ["updated_at", "2020-04-22 05:37:03.376811"]]
 (0.3ms)  begin transaction

CommentTest: test_762691


Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.391726"], ["updated_at", "2020-04-22 05:37:03.391726"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.392883"], ["updated_at", "2020-04-22 05:37:03.392883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.413031"], ["updated_at", "2020-04-22 05:37:03.413031"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.424190"], ["updated_at", "2020-04-22 05:37:03.424190"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (5.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (7.8ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (21.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_798174


 (0.2ms)  SAVEPOINT active_record_1
Course Create (203.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.283301"], ["updated_at", "2020-04-22 05:37:03.283301"]]
 (0.2ms)  begin transaction

CommentTest: test_954


Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.498316"], ["updated_at", "2020-04-22 05:37:03.498316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (111.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.397608"], ["updated_at", "2020-04-22 05:37:03.397608"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.509597"], ["updated_at", "2020-04-22 05:37:03.509597"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.517707"], ["updated_at", "2020-04-22 05:37:03.517707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.528972"], ["updated_at", "2020-04-22 05:37:03.528972"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_956


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
Course Create (101.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.490564"], ["updated_at", "2020-04-22 05:37:03.490564"]]
 (0.2ms)  begin transaction

CommentTest: test_783684


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (5.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.599991"], ["updated_at", "2020-04-22 05:37:03.599991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (102.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.498943"], ["updated_at", "2020-04-22 05:37:03.498943"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.614577"], ["updated_at", "2020-04-22 05:37:03.614577"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (6.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.618602"], ["updated_at", "2020-04-22 05:37:03.618602"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.634125"], ["updated_at", "2020-04-22 05:37:03.634125"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (26.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_298857


 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (93.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.606871"], ["updated_at", "2020-04-22 05:37:03.606871"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.700196"], ["updated_at", "2020-04-22 05:37:03.700196"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.718675"], ["updated_at", "2020-04-22 05:37:03.718675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.727699"], ["updated_at", "2020-04-22 05:37:03.727699"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  begin transaction

CommentTest: test_142


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.739196"], ["updated_at", "2020-04-22 05:37:03.739196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (91.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_387653


Course Create (110.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.738897"], ["updated_at", "2020-04-22 05:37:03.738897"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.751759"], ["updated_at", "2020-04-22 05:37:03.751759"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.861182"], ["updated_at", "2020-04-22 05:37:03.861182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.868038"], ["updated_at", "2020-04-22 05:37:03.868038"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_405974


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.886860"], ["updated_at", "2020-04-22 05:37:03.886860"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.906035"], ["updated_at", "2020-04-22 05:37:03.906035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_14


 (0.3ms)  SAVEPOINT active_record_1
Course Create (63.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.854434"], ["updated_at", "2020-04-22 05:37:03.854434"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.929505"], ["updated_at", "2020-04-22 05:37:03.929505"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.929450"], ["updated_at", "2020-04-22 05:37:03.929450"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.936092"], ["updated_at", "2020-04-22 05:37:03.936092"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_154384


Course Create (40.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.917799"], ["updated_at", "2020-04-22 05:37:03.917799"]]
 (0.3ms)  begin transaction

CommentTest: test_62358


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.973500"], ["updated_at", "2020-04-22 05:37:03.973500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.978451"], ["updated_at", "2020-04-22 05:37:03.978451"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:03.983819"], ["updated_at", "2020-04-22 05:37:03.983819"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:03.994469"], ["updated_at", "2020-04-22 05:37:03.994469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.5ms)  rollback transaction
Course Create (41.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.978743"], ["updated_at", "2020-04-22 05:37:03.978743"]]
Recording Create (3.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.016034"], ["updated_at", "2020-04-22 05:37:04.016034"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_180


Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.026705"], ["updated_at", "2020-04-22 05:37:04.026705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.036022"], ["updated_at", "2020-04-22 05:37:04.036022"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

 (3.4ms)  rollback transaction
Course Create (43.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.032142"], ["updated_at", "2020-04-22 05:37:04.032142"]]

CommentTest: test_557535


 (1.2ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.083894"], ["updated_at", "2020-04-22 05:37:04.083894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.095900"], ["updated_at", "2020-04-22 05:37:04.095900"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_939102


Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.127796"], ["updated_at", "2020-04-22 05:37:04.127796"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.142577"], ["updated_at", "2020-04-22 05:37:04.142577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (17.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.150573"], ["updated_at", "2020-04-22 05:37:04.150573"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_230


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.170704"], ["updated_at", "2020-04-22 05:37:04.170704"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.182115"], ["updated_at", "2020-04-22 05:37:04.182115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_226156


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.191558"], ["updated_at", "2020-04-22 05:37:04.191558"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.192317"], ["updated_at", "2020-04-22 05:37:04.192317"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.200689"], ["updated_at", "2020-04-22 05:37:04.200689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.213578"], ["updated_at", "2020-04-22 05:37:04.213578"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_61


Course Create (147.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.082075"], ["updated_at", "2020-04-22 05:37:04.082075"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.239950"], ["updated_at", "2020-04-22 05:37:04.239950"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.246728"], ["updated_at", "2020-04-22 05:37:04.246728"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (670.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:03.579180"], ["updated_at", "2020-04-22 05:37:03.579180"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.258830"], ["updated_at", "2020-04-22 05:37:04.258830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.266614"], ["updated_at", "2020-04-22 05:37:04.266614"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_789502


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_224


 (0.2ms)  begin transaction

CommentTest: test_493581


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.301858"], ["updated_at", "2020-04-22 05:37:04.301858"]]
 (7.4ms)  SAVEPOINT active_record_1
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.317601"], ["updated_at", "2020-04-22 05:37:04.317601"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (7.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.302727"], ["updated_at", "2020-04-22 05:37:04.302727"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.326363"], ["updated_at", "2020-04-22 05:37:04.326363"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.327131"], ["updated_at", "2020-04-22 05:37:04.327131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (72.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.282352"], ["updated_at", "2020-04-22 05:37:04.282352"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.344654"], ["updated_at", "2020-04-22 05:37:04.344654"]]
 (0.2ms)  begin transaction

CommentTest: test_490


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.360624"], ["updated_at", "2020-04-22 05:37:04.360624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.369686"], ["updated_at", "2020-04-22 05:37:04.369686"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
Course Create (153.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.235501"], ["updated_at", "2020-04-22 05:37:04.235501"]]

CommentTest: test_354748


Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.403810"], ["updated_at", "2020-04-22 05:37:04.403810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.413641"], ["updated_at", "2020-04-22 05:37:04.413641"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.1ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (97.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.363829"], ["updated_at", "2020-04-22 05:37:04.363829"]]
 (13.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.468316"], ["updated_at", "2020-04-22 05:37:04.468316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (47.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.412444"], ["updated_at", "2020-04-22 05:37:04.412444"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.490297"], ["updated_at", "2020-04-22 05:37:04.490297"]]
 (0.2ms)  begin transaction

CommentTest: test_579

 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.493474"], ["updated_at", "2020-04-22 05:37:04.493474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Bucket Load (16.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_70839


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.532886"], ["updated_at", "2020-04-22 05:37:04.532886"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.535260"], ["updated_at", "2020-04-22 05:37:04.535260"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (19.5ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.554352"], ["updated_at", "2020-04-22 05:37:04.554352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  begin transaction

CommentTest: test_22


 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.577929"], ["updated_at", "2020-04-22 05:37:04.577929"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (72.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.517421"], ["updated_at", "2020-04-22 05:37:04.517421"]]
Bucket Load (9.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.602389"], ["updated_at", "2020-04-22 05:37:04.602389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.613674"], ["updated_at", "2020-04-22 05:37:04.613674"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_876150


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.8ms)  SAVEPOINT active_record_1
 (11.1ms)  rollback transaction
Course Create (247.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.570128"], ["updated_at", "2020-04-22 05:37:04.570128"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.838150"], ["updated_at", "2020-04-22 05:37:04.838150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_191354


 (8.2ms)  rollback transaction
Course Create (152.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.748036"], ["updated_at", "2020-04-22 05:37:04.748036"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.861305"], ["updated_at", "2020-04-22 05:37:04.861305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.914579"], ["updated_at", "2020-04-22 05:37:04.914579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_244


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:04.941896"], ["updated_at", "2020-04-22 05:37:04.941896"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.3ms)  rollback transaction
Course Create (62.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.898183"], ["updated_at", "2020-04-22 05:37:04.898183"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:04.990136"], ["updated_at", "2020-04-22 05:37:04.990136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_359


Recording Create (9.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.000754"], ["updated_at", "2020-04-22 05:37:05.000754"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (67.2ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_566505


Course Create (114.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:04.933146"], ["updated_at", "2020-04-22 05:37:04.933146"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.059060"], ["updated_at", "2020-04-22 05:37:05.059060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.105819"], ["updated_at", "2020-04-22 05:37:05.105819"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_622341


 (0.2ms)  SAVEPOINT active_record_1
Course Create (131.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.013795"], ["updated_at", "2020-04-22 05:37:05.013795"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (17.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.159936"], ["updated_at", "2020-04-22 05:37:05.159936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.187915"], ["updated_at", "2020-04-22 05:37:05.187915"]]
 (0.2ms)  begin transaction

CommentTest: test_986

 (0.3ms)  RELEASE SAVEPOINT active_record_1

Course Create (101.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.088058"], ["updated_at", "2020-04-22 05:37:05.088058"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.200995"], ["updated_at", "2020-04-22 05:37:05.200995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.211252"], ["updated_at", "2020-04-22 05:37:05.211252"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  SAVEPOINT active_record_1
 (88.4ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (3.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_746466


Course Create (121.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.198669"], ["updated_at", "2020-04-22 05:37:05.198669"]]
 (0.3ms)  begin transaction

CommentTest: test_847


Course Create (185.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.151406"], ["updated_at", "2020-04-22 05:37:05.151406"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.348353"], ["updated_at", "2020-04-22 05:37:05.348353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (12.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.346014"], ["updated_at", "2020-04-22 05:37:05.346014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.362003"], ["updated_at", "2020-04-22 05:37:05.362003"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.375622"], ["updated_at", "2020-04-22 05:37:05.375622"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_465509


 (0.3ms)  SAVEPOINT active_record_1
Course Create (85.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.344349"], ["updated_at", "2020-04-22 05:37:05.344349"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.436792"], ["updated_at", "2020-04-22 05:37:05.436792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Course Create (130.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.340916"], ["updated_at", "2020-04-22 05:37:05.340916"]]
 (0.1ms)  begin transaction

CommentTest: test_41


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.483463"], ["updated_at", "2020-04-22 05:37:05.483463"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.485847"], ["updated_at", "2020-04-22 05:37:05.485847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.488363"], ["updated_at", "2020-04-22 05:37:05.488363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.484942"], ["updated_at", "2020-04-22 05:37:05.484942"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.499395"], ["updated_at", "2020-04-22 05:37:05.499395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_492


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.502195"], ["updated_at", "2020-04-22 05:37:05.502195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_442518

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.503572"], ["updated_at", "2020-04-22 05:37:05.503572"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_566


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.511904"], ["updated_at", "2020-04-22 05:37:05.511904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.513224"], ["updated_at", "2020-04-22 05:37:05.513224"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.514092"], ["updated_at", "2020-04-22 05:37:05.514092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.515119"], ["updated_at", "2020-04-22 05:37:05.515119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.516492"], ["updated_at", "2020-04-22 05:37:05.516492"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_483


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.527837"], ["updated_at", "2020-04-22 05:37:05.527837"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.530856"], ["updated_at", "2020-04-22 05:37:05.530856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.534232"], ["updated_at", "2020-04-22 05:37:05.534232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (103.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.428976"], ["updated_at", "2020-04-22 05:37:05.428976"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.537643"], ["updated_at", "2020-04-22 05:37:05.537643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.542887"], ["updated_at", "2020-04-22 05:37:05.542887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_191450


 (0.1ms)  begin transaction

CommentTest: test_108334


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.553119"], ["updated_at", "2020-04-22 05:37:05.553119"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.556133"], ["updated_at", "2020-04-22 05:37:05.556133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.553306"], ["updated_at", "2020-04-22 05:37:05.553306"]]
 (0.1ms)  begin transaction

CommentTest: test_517

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.558237"], ["updated_at", "2020-04-22 05:37:05.558237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.559082"], ["updated_at", "2020-04-22 05:37:05.559082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.561002"], ["updated_at", "2020-04-22 05:37:05.561002"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  begin transaction

CommentTest: test_270741


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.564759"], ["updated_at", "2020-04-22 05:37:05.564759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.569380"], ["updated_at", "2020-04-22 05:37:05.569380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_267753


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.571519"], ["updated_at", "2020-04-22 05:37:05.571519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.572831"], ["updated_at", "2020-04-22 05:37:05.572831"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.576310"], ["updated_at", "2020-04-22 05:37:05.576310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.578205"], ["updated_at", "2020-04-22 05:37:05.578205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_428


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.583225"], ["updated_at", "2020-04-22 05:37:05.583225"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.586566"], ["updated_at", "2020-04-22 05:37:05.586566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.591022"], ["updated_at", "2020-04-22 05:37:05.591022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_475876


 (0.1ms)  begin transaction

CommentTest: test_821


 (0.1ms)  SAVEPOINT active_record_1
Course Create (15.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.583821"], ["updated_at", "2020-04-22 05:37:05.583821"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.601103"], ["updated_at", "2020-04-22 05:37:05.601103"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.602578"], ["updated_at", "2020-04-22 05:37:05.602578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.603660"], ["updated_at", "2020-04-22 05:37:05.603660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.607627"], ["updated_at", "2020-04-22 05:37:05.607627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.612619"], ["updated_at", "2020-04-22 05:37:05.612619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_477


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.618597"], ["updated_at", "2020-04-22 05:37:05.618597"]]
 (0.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.621196"], ["updated_at", "2020-04-22 05:37:05.621196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (22.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.600764"], ["updated_at", "2020-04-22 05:37:05.600764"]]
 (0.1ms)  begin transaction

CommentTest: test_213


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.624997"], ["updated_at", "2020-04-22 05:37:05.624997"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.625550"], ["updated_at", "2020-04-22 05:37:05.625550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.627670"], ["updated_at", "2020-04-22 05:37:05.627670"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_239


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.633460"], ["updated_at", "2020-04-22 05:37:05.633460"]]
 (0.1ms)  begin transaction

CommentTest: test_563275


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.635786"], ["updated_at", "2020-04-22 05:37:05.635786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.625432"], ["updated_at", "2020-04-22 05:37:05.625432"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.638049"], ["updated_at", "2020-04-22 05:37:05.638049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.638720"], ["updated_at", "2020-04-22 05:37:05.638720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.640866"], ["updated_at", "2020-04-22 05:37:05.640866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.636643"], ["updated_at", "2020-04-22 05:37:05.636643"]]
 (0.1ms)  begin transaction

CommentTest: test_435


Course Create (83.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.565642"], ["updated_at", "2020-04-22 05:37:05.565642"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.649381"], ["updated_at", "2020-04-22 05:37:05.649381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.651907"], ["updated_at", "2020-04-22 05:37:05.651907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.652258"], ["updated_at", "2020-04-22 05:37:05.652258"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.654283"], ["updated_at", "2020-04-22 05:37:05.654283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_803


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (10.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.650527"], ["updated_at", "2020-04-22 05:37:05.650527"]]
 (0.1ms)  begin transaction

CommentTest: test_464477


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.666631"], ["updated_at", "2020-04-22 05:37:05.666631"]]
Bucket Create (4.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.664250"], ["updated_at", "2020-04-22 05:37:05.664250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.668444"], ["updated_at", "2020-04-22 05:37:05.668444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.669765"], ["updated_at", "2020-04-22 05:37:05.669765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.670444"], ["updated_at", "2020-04-22 05:37:05.670444"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_142920


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_525313


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.681779"], ["updated_at", "2020-04-22 05:37:05.681779"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_921


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.684200"], ["updated_at", "2020-04-22 05:37:05.684200"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.685047"], ["updated_at", "2020-04-22 05:37:05.685047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.686541"], ["updated_at", "2020-04-22 05:37:05.686541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.686965"], ["updated_at", "2020-04-22 05:37:05.686965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.688832"], ["updated_at", "2020-04-22 05:37:05.688832"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.665489"], ["updated_at", "2020-04-22 05:37:05.665489"]]
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.685720"], ["updated_at", "2020-04-22 05:37:05.685720"]]
 (0.1ms)  begin transaction

CommentTest: test_574887


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.698874"], ["updated_at", "2020-04-22 05:37:05.698874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.699166"], ["updated_at", "2020-04-22 05:37:05.699166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_159829


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.700977"], ["updated_at", "2020-04-22 05:37:05.700977"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.703237"], ["updated_at", "2020-04-22 05:37:05.703237"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_813


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.710692"], ["updated_at", "2020-04-22 05:37:05.710692"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.713484"], ["updated_at", "2020-04-22 05:37:05.713484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.715974"], ["updated_at", "2020-04-22 05:37:05.715974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_522


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.719563"], ["updated_at", "2020-04-22 05:37:05.719563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (20.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.701846"], ["updated_at", "2020-04-22 05:37:05.701846"]]
 (0.2ms)  begin transaction

CommentTest: test_751


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.725769"], ["updated_at", "2020-04-22 05:37:05.725769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.726295"], ["updated_at", "2020-04-22 05:37:05.726295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.728075"], ["updated_at", "2020-04-22 05:37:05.728075"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.728383"], ["updated_at", "2020-04-22 05:37:05.728383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_530880


Course Create (38.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.699304"], ["updated_at", "2020-04-22 05:37:05.699304"]]
Course Create (13.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.726591"], ["updated_at", "2020-04-22 05:37:05.726591"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.741480"], ["updated_at", "2020-04-22 05:37:05.741480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.742960"], ["updated_at", "2020-04-22 05:37:05.742960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.743747"], ["updated_at", "2020-04-22 05:37:05.743747"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.744951"], ["updated_at", "2020-04-22 05:37:05.744951"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_880232 CommentTest: test_874



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.754746"], ["updated_at", "2020-04-22 05:37:05.754746"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.757235"], ["updated_at", "2020-04-22 05:37:05.757235"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.759524"], ["updated_at", "2020-04-22 05:37:05.759524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.760666"], ["updated_at", "2020-04-22 05:37:05.760666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.761918"], ["updated_at", "2020-04-22 05:37:05.761918"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.763175"], ["updated_at", "2020-04-22 05:37:05.763175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_661


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_970013


 (0.8ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_235


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.769915"], ["updated_at", "2020-04-22 05:37:05.769915"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.773526"], ["updated_at", "2020-04-22 05:37:05.773526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.772475"], ["updated_at", "2020-04-22 05:37:05.772475"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.776110"], ["updated_at", "2020-04-22 05:37:05.776110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.776034"], ["updated_at", "2020-04-22 05:37:05.776034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.777938"], ["updated_at", "2020-04-22 05:37:05.777938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_300131


Course Create (6.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.768436"], ["updated_at", "2020-04-22 05:37:05.768436"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_135


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.788656"], ["updated_at", "2020-04-22 05:37:05.788656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.791957"], ["updated_at", "2020-04-22 05:37:05.791957"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.791247"], ["updated_at", "2020-04-22 05:37:05.791247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.793992"], ["updated_at", "2020-04-22 05:37:05.793992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.795649"], ["updated_at", "2020-04-22 05:37:05.795649"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_625


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.788067"], ["updated_at", "2020-04-22 05:37:05.788067"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_149


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.802694"], ["updated_at", "2020-04-22 05:37:05.802694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.804951"], ["updated_at", "2020-04-22 05:37:05.804951"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.804095"], ["updated_at", "2020-04-22 05:37:05.804095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.808901"], ["updated_at", "2020-04-22 05:37:05.808901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.811787"], ["updated_at", "2020-04-22 05:37:05.811787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (13.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.799916"], ["updated_at", "2020-04-22 05:37:05.799916"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.816154"], ["updated_at", "2020-04-22 05:37:05.816154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.818072"], ["updated_at", "2020-04-22 05:37:05.818072"]]
 (0.1ms)  begin transaction

CommentTest: test_912


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.819852"], ["updated_at", "2020-04-22 05:37:05.819852"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.822645"], ["updated_at", "2020-04-22 05:37:05.822645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_181843

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.825177"], ["updated_at", "2020-04-22 05:37:05.825177"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.826515"], ["updated_at", "2020-04-22 05:37:05.826515"]]
 (0.1ms)  begin transaction

CommentTest: test_437


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.829207"], ["updated_at", "2020-04-22 05:37:05.829207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.831194"], ["updated_at", "2020-04-22 05:37:05.831194"]]
 (0.1ms)  begin transaction

CommentTest: test_43


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.833066"], ["updated_at", "2020-04-22 05:37:05.833066"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.835377"], ["updated_at", "2020-04-22 05:37:05.835377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Course Create (8.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.830306"], ["updated_at", "2020-04-22 05:37:05.830306"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.838750"], ["updated_at", "2020-04-22 05:37:05.838750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_358411


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.841342"], ["updated_at", "2020-04-22 05:37:05.841342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.843921"], ["updated_at", "2020-04-22 05:37:05.843921"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_426


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.848524"], ["updated_at", "2020-04-22 05:37:05.848524"]]
 (0.1ms)  begin transaction

CommentTest: test_157


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.852708"], ["updated_at", "2020-04-22 05:37:05.852708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (11.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.842921"], ["updated_at", "2020-04-22 05:37:05.842921"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.854812"], ["updated_at", "2020-04-22 05:37:05.854812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.858789"], ["updated_at", "2020-04-22 05:37:05.858789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.860892"], ["updated_at", "2020-04-22 05:37:05.860892"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_472


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.866518"], ["updated_at", "2020-04-22 05:37:05.866518"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_922852


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.868707"], ["updated_at", "2020-04-22 05:37:05.868707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.870798"], ["updated_at", "2020-04-22 05:37:05.870798"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.870017"], ["updated_at", "2020-04-22 05:37:05.870017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.873958"], ["updated_at", "2020-04-22 05:37:05.873958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.876524"], ["updated_at", "2020-04-22 05:37:05.876524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_400


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.879911"], ["updated_at", "2020-04-22 05:37:05.879911"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.882850"], ["updated_at", "2020-04-22 05:37:05.882850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Course Create (24.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.854143"], ["updated_at", "2020-04-22 05:37:05.854143"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.884859"], ["updated_at", "2020-04-22 05:37:05.884859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.886194"], ["updated_at", "2020-04-22 05:37:05.886194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_41672


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.893383"], ["updated_at", "2020-04-22 05:37:05.893383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.893410"], ["updated_at", "2020-04-22 05:37:05.893410"]]
 (0.1ms)  begin transaction

CommentTest: test_999


 (0.1ms)  begin transaction

CommentTest: test_comment_created_success


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.901631"], ["updated_at", "2020-04-22 05:37:05.901631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.901998"], ["updated_at", "2020-04-22 05:37:05.901998"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.903737"], ["updated_at", "2020-04-22 05:37:05.903737"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.904366"], ["updated_at", "2020-04-22 05:37:05.904366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.910736"], ["updated_at", "2020-04-22 05:37:05.910736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.902818"], ["updated_at", "2020-04-22 05:37:05.902818"]]

CommentTest: test_761975


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.914975"], ["updated_at", "2020-04-22 05:37:05.914975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.917602"], ["updated_at", "2020-04-22 05:37:05.917602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_752


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.921821"], ["updated_at", "2020-04-22 05:37:05.921821"]]
 (0.1ms)  begin transaction

CommentTest: test_578


Course Create (22.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.915097"], ["updated_at", "2020-04-22 05:37:05.915097"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.939987"], ["updated_at", "2020-04-22 05:37:05.939987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.937573"], ["updated_at", "2020-04-22 05:37:05.937573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.942598"], ["updated_at", "2020-04-22 05:37:05.942598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.943314"], ["updated_at", "2020-04-22 05:37:05.943314"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_214710


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_476


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.950750"], ["updated_at", "2020-04-22 05:37:05.950750"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.952927"], ["updated_at", "2020-04-22 05:37:05.952927"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.954183"], ["updated_at", "2020-04-22 05:37:05.954183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.957564"], ["updated_at", "2020-04-22 05:37:05.957564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.958163"], ["updated_at", "2020-04-22 05:37:05.958163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.960488"], ["updated_at", "2020-04-22 05:37:05.960488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_92463


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.968031"], ["updated_at", "2020-04-22 05:37:05.968031"]]
 (0.1ms)  begin transaction

CommentTest: test_45


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.970576"], ["updated_at", "2020-04-22 05:37:05.970576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.973949"], ["updated_at", "2020-04-22 05:37:05.973949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_972435


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.978648"], ["updated_at", "2020-04-22 05:37:05.978648"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.985994"], ["updated_at", "2020-04-22 05:37:05.985994"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.989832"], ["updated_at", "2020-04-22 05:37:05.989832"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:05.987057"], ["updated_at", "2020-04-22 05:37:05.987057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.992116"], ["updated_at", "2020-04-22 05:37:05.992116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:05.992288"], ["updated_at", "2020-04-22 05:37:05.992288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (59.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.938776"], ["updated_at", "2020-04-22 05:37:05.938776"]]
 (0.1ms)  begin transaction

CommentTest: test_112805


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.001147"], ["updated_at", "2020-04-22 05:37:06.001147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.002985"], ["updated_at", "2020-04-22 05:37:06.002985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_812


Course Create (13.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.001709"], ["updated_at", "2020-04-22 05:37:06.001709"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.017116"], ["updated_at", "2020-04-22 05:37:06.017116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.019216"], ["updated_at", "2020-04-22 05:37:06.019216"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_327


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.026888"], ["updated_at", "2020-04-22 05:37:06.026888"]]
 (0.1ms)  begin transaction

CommentTest: test_614987


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.030641"], ["updated_at", "2020-04-22 05:37:06.030641"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.032150"], ["updated_at", "2020-04-22 05:37:06.032150"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.033213"], ["updated_at", "2020-04-22 05:37:06.033213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.034716"], ["updated_at", "2020-04-22 05:37:06.034716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.036982"], ["updated_at", "2020-04-22 05:37:06.036982"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_617


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.044320"], ["updated_at", "2020-04-22 05:37:06.044320"]]
 (0.1ms)  begin transaction

CommentTest: test_650791


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.047083"], ["updated_at", "2020-04-22 05:37:06.047083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.046850"], ["updated_at", "2020-04-22 05:37:06.046850"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.049278"], ["updated_at", "2020-04-22 05:37:06.049278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.051062"], ["updated_at", "2020-04-22 05:37:06.051062"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.048956"], ["updated_at", "2020-04-22 05:37:06.048956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_512350


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_503


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.061914"], ["updated_at", "2020-04-22 05:37:06.061914"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.063516"], ["updated_at", "2020-04-22 05:37:06.063516"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.064632"], ["updated_at", "2020-04-22 05:37:06.064632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.066255"], ["updated_at", "2020-04-22 05:37:06.066255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.068527"], ["updated_at", "2020-04-22 05:37:06.068527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.070142"], ["updated_at", "2020-04-22 05:37:06.070142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_101281


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_731


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.081957"], ["updated_at", "2020-04-22 05:37:06.081957"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.085126"], ["updated_at", "2020-04-22 05:37:06.085126"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.086090"], ["updated_at", "2020-04-22 05:37:06.086090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.087901"], ["updated_at", "2020-04-22 05:37:06.087901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.092204"], ["updated_at", "2020-04-22 05:37:06.092204"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.095078"], ["updated_at", "2020-04-22 05:37:06.095078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_210


 (0.1ms)  SAVEPOINT active_record_1
 (4.8ms)  rollback transaction
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.101911"], ["updated_at", "2020-04-22 05:37:06.101911"]]
 (0.1ms)  begin transaction

CommentTest: test_338920


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.111335"], ["updated_at", "2020-04-22 05:37:06.111335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.111542"], ["updated_at", "2020-04-22 05:37:06.111542"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.113554"], ["updated_at", "2020-04-22 05:37:06.113554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.113413"], ["updated_at", "2020-04-22 05:37:06.113413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.115803"], ["updated_at", "2020-04-22 05:37:06.115803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_716364


 (0.1ms)  begin transaction

CommentTest: test_258


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.127309"], ["updated_at", "2020-04-22 05:37:06.127309"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.128407"], ["updated_at", "2020-04-22 05:37:06.128407"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.129847"], ["updated_at", "2020-04-22 05:37:06.129847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.131883"], ["updated_at", "2020-04-22 05:37:06.131883"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.131704"], ["updated_at", "2020-04-22 05:37:06.131704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.134142"], ["updated_at", "2020-04-22 05:37:06.134142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_685481


 (0.1ms)  begin transaction

CommentTest: test_885


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.145453"], ["updated_at", "2020-04-22 05:37:06.145453"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.145932"], ["updated_at", "2020-04-22 05:37:06.145932"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.148190"], ["updated_at", "2020-04-22 05:37:06.148190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.148048"], ["updated_at", "2020-04-22 05:37:06.148048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.150174"], ["updated_at", "2020-04-22 05:37:06.150174"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.150186"], ["updated_at", "2020-04-22 05:37:06.150186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_680


 (0.1ms)  begin transaction

CommentTest: test_164509


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.159963"], ["updated_at", "2020-04-22 05:37:06.159963"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.160313"], ["updated_at", "2020-04-22 05:37:06.160313"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.162632"], ["updated_at", "2020-04-22 05:37:06.162632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.162467"], ["updated_at", "2020-04-22 05:37:06.162467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.164686"], ["updated_at", "2020-04-22 05:37:06.164686"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.164865"], ["updated_at", "2020-04-22 05:37:06.164865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_769


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.178059"], ["updated_at", "2020-04-22 05:37:06.178059"]]
 (0.1ms)  begin transaction

CommentTest: test_579090


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.180750"], ["updated_at", "2020-04-22 05:37:06.180750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.181331"], ["updated_at", "2020-04-22 05:37:06.181331"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.184321"], ["updated_at", "2020-04-22 05:37:06.184321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.182732"], ["updated_at", "2020-04-22 05:37:06.182732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.186702"], ["updated_at", "2020-04-22 05:37:06.186702"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_577


 (0.1ms)  begin transaction

CommentTest: test_766387


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.198838"], ["updated_at", "2020-04-22 05:37:06.198838"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.199700"], ["updated_at", "2020-04-22 05:37:06.199700"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.201616"], ["updated_at", "2020-04-22 05:37:06.201616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.201978"], ["updated_at", "2020-04-22 05:37:06.201978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.203633"], ["updated_at", "2020-04-22 05:37:06.203633"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.203879"], ["updated_at", "2020-04-22 05:37:06.203879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_397789


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.214775"], ["updated_at", "2020-04-22 05:37:06.214775"]]
 (0.1ms)  begin transaction

CommentTest: test_955


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.217294"], ["updated_at", "2020-04-22 05:37:06.217294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.219019"], ["updated_at", "2020-04-22 05:37:06.219019"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.220697"], ["updated_at", "2020-04-22 05:37:06.220697"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.224567"], ["updated_at", "2020-04-22 05:37:06.224567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.226804"], ["updated_at", "2020-04-22 05:37:06.226804"]]
 (0.1ms)  begin transaction

CommentTest: test_705690


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.230011"], ["updated_at", "2020-04-22 05:37:06.230011"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.234259"], ["updated_at", "2020-04-22 05:37:06.234259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_329


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.237698"], ["updated_at", "2020-04-22 05:37:06.237698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.242902"], ["updated_at", "2020-04-22 05:37:06.242902"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.245782"], ["updated_at", "2020-04-22 05:37:06.245782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.248642"], ["updated_at", "2020-04-22 05:37:06.248642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_30416


Course Create (236.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.015147"], ["updated_at", "2020-04-22 05:37:06.015147"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.253444"], ["updated_at", "2020-04-22 05:37:06.253444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.257442"], ["updated_at", "2020-04-22 05:37:06.257442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (6.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_898


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_331


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.265276"], ["updated_at", "2020-04-22 05:37:06.265276"]]
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.261260"], ["updated_at", "2020-04-22 05:37:06.261260"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.268085"], ["updated_at", "2020-04-22 05:37:06.268085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.268511"], ["updated_at", "2020-04-22 05:37:06.268511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.269729"], ["updated_at", "2020-04-22 05:37:06.269729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.270702"], ["updated_at", "2020-04-22 05:37:06.270702"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_374


 (0.1ms)  begin transaction

CommentTest: test_785384


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.280241"], ["updated_at", "2020-04-22 05:37:06.280241"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.280709"], ["updated_at", "2020-04-22 05:37:06.280709"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.282744"], ["updated_at", "2020-04-22 05:37:06.282744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.283144"], ["updated_at", "2020-04-22 05:37:06.283144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.284696"], ["updated_at", "2020-04-22 05:37:06.284696"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.284955"], ["updated_at", "2020-04-22 05:37:06.284955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_106


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_948832


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.295365"], ["updated_at", "2020-04-22 05:37:06.295365"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.299506"], ["updated_at", "2020-04-22 05:37:06.299506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.297910"], ["updated_at", "2020-04-22 05:37:06.297910"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.301764"], ["updated_at", "2020-04-22 05:37:06.301764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.301830"], ["updated_at", "2020-04-22 05:37:06.301830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (5.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.303568"], ["updated_at", "2020-04-22 05:37:06.303568"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_591


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.314429"], ["updated_at", "2020-04-22 05:37:06.314429"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.317469"], ["updated_at", "2020-04-22 05:37:06.317469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_168198


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.319587"], ["updated_at", "2020-04-22 05:37:06.319587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.320661"], ["updated_at", "2020-04-22 05:37:06.320661"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.324362"], ["updated_at", "2020-04-22 05:37:06.324362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.326706"], ["updated_at", "2020-04-22 05:37:06.326706"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_688


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.329169"], ["updated_at", "2020-04-22 05:37:06.329169"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.331582"], ["updated_at", "2020-04-22 05:37:06.331582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.333527"], ["updated_at", "2020-04-22 05:37:06.333527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_605824


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.336499"], ["updated_at", "2020-04-22 05:37:06.336499"]]
 (4.8ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.342499"], ["updated_at", "2020-04-22 05:37:06.342499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.344701"], ["updated_at", "2020-04-22 05:37:06.344701"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_512


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.348568"], ["updated_at", "2020-04-22 05:37:06.348568"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_2566


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.351119"], ["updated_at", "2020-04-22 05:37:06.351119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.352893"], ["updated_at", "2020-04-22 05:37:06.352893"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.353426"], ["updated_at", "2020-04-22 05:37:06.353426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.360113"], ["updated_at", "2020-04-22 05:37:06.360113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.361984"], ["updated_at", "2020-04-22 05:37:06.361984"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_818554


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.369670"], ["updated_at", "2020-04-22 05:37:06.369670"]]
 (0.1ms)  begin transaction

CommentTest: test_567


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.373204"], ["updated_at", "2020-04-22 05:37:06.373204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.375402"], ["updated_at", "2020-04-22 05:37:06.375402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.374868"], ["updated_at", "2020-04-22 05:37:06.374868"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.379023"], ["updated_at", "2020-04-22 05:37:06.379023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.381294"], ["updated_at", "2020-04-22 05:37:06.381294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_237062


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.385670"], ["updated_at", "2020-04-22 05:37:06.385670"]]
Course Create (649.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:05.741715"], ["updated_at", "2020-04-22 05:37:05.741715"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.388405"], ["updated_at", "2020-04-22 05:37:06.388405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.392976"], ["updated_at", "2020-04-22 05:37:06.392976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.394605"], ["updated_at", "2020-04-22 05:37:06.394605"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.394852"], ["updated_at", "2020-04-22 05:37:06.394852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  begin transaction

CommentTest: test_449


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.399941"], ["updated_at", "2020-04-22 05:37:06.399941"]]
 (0.1ms)  begin transaction

CommentTest: test_552916


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.403466"], ["updated_at", "2020-04-22 05:37:06.403466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.406131"], ["updated_at", "2020-04-22 05:37:06.406131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_71506


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.411684"], ["updated_at", "2020-04-22 05:37:06.411684"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.415073"], ["updated_at", "2020-04-22 05:37:06.415073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (4.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.416579"], ["updated_at", "2020-04-22 05:37:06.416579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_3


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.430697"], ["updated_at", "2020-04-22 05:37:06.430697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.433250"], ["updated_at", "2020-04-22 05:37:06.433250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_10295


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.435447"], ["updated_at", "2020-04-22 05:37:06.435447"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.435837"], ["updated_at", "2020-04-22 05:37:06.435837"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.438604"], ["updated_at", "2020-04-22 05:37:06.438604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.442192"], ["updated_at", "2020-04-22 05:37:06.442192"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_156


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.446576"], ["updated_at", "2020-04-22 05:37:06.446576"]]
 (0.1ms)  begin transaction

CommentTest: test_464738


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.449260"], ["updated_at", "2020-04-22 05:37:06.449260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (184.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.266755"], ["updated_at", "2020-04-22 05:37:06.266755"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.451255"], ["updated_at", "2020-04-22 05:37:06.451255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.453442"], ["updated_at", "2020-04-22 05:37:06.453442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.456154"], ["updated_at", "2020-04-22 05:37:06.456154"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_756


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (57.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.403324"], ["updated_at", "2020-04-22 05:37:06.403324"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.463630"], ["updated_at", "2020-04-22 05:37:06.463630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_112


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.465687"], ["updated_at", "2020-04-22 05:37:06.465687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.466746"], ["updated_at", "2020-04-22 05:37:06.466746"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.469316"], ["updated_at", "2020-04-22 05:37:06.469316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_289748


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.474414"], ["updated_at", "2020-04-22 05:37:06.474414"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.464763"], ["updated_at", "2020-04-22 05:37:06.464763"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.479652"], ["updated_at", "2020-04-22 05:37:06.479652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (33.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.450870"], ["updated_at", "2020-04-22 05:37:06.450870"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.481937"], ["updated_at", "2020-04-22 05:37:06.481937"]]
 (0.1ms)  begin transaction

CommentTest: test_26


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.486383"], ["updated_at", "2020-04-22 05:37:06.486383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.488895"], ["updated_at", "2020-04-22 05:37:06.488895"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_461


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.495424"], ["updated_at", "2020-04-22 05:37:06.495424"]]
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.486379"], ["updated_at", "2020-04-22 05:37:06.486379"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.498330"], ["updated_at", "2020-04-22 05:37:06.498330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.499324"], ["updated_at", "2020-04-22 05:37:06.499324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_744639


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.501594"], ["updated_at", "2020-04-22 05:37:06.501594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_988


Recording Create (13.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.500372"], ["updated_at", "2020-04-22 05:37:06.500372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.515548"], ["updated_at", "2020-04-22 05:37:06.515548"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.518373"], ["updated_at", "2020-04-22 05:37:06.518373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.520265"], ["updated_at", "2020-04-22 05:37:06.520265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_361


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.526086"], ["updated_at", "2020-04-22 05:37:06.526086"]]
Course Create (24.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.503453"], ["updated_at", "2020-04-22 05:37:06.503453"]]
 (0.1ms)  begin transaction

CommentTest: test_682


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.530530"], ["updated_at", "2020-04-22 05:37:06.530530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.531279"], ["updated_at", "2020-04-22 05:37:06.531279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.532818"], ["updated_at", "2020-04-22 05:37:06.532818"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.533208"], ["updated_at", "2020-04-22 05:37:06.533208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.530609"], ["updated_at", "2020-04-22 05:37:06.530609"]]
 (0.1ms)  begin transaction

CommentTest: test_271377


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.543476"], ["updated_at", "2020-04-22 05:37:06.543476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_681


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.545474"], ["updated_at", "2020-04-22 05:37:06.545474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.545360"], ["updated_at", "2020-04-22 05:37:06.545360"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.548900"], ["updated_at", "2020-04-22 05:37:06.548900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.552617"], ["updated_at", "2020-04-22 05:37:06.552617"]]
 (0.1ms)  begin transaction

CommentTest: test_500


Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.543616"], ["updated_at", "2020-04-22 05:37:06.543616"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.558862"], ["updated_at", "2020-04-22 05:37:06.558862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.562102"], ["updated_at", "2020-04-22 05:37:06.562102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_91736


 (0.5ms)  begin transaction

CommentTest: test_375


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.574780"], ["updated_at", "2020-04-22 05:37:06.574780"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (20.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.556291"], ["updated_at", "2020-04-22 05:37:06.556291"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.578673"], ["updated_at", "2020-04-22 05:37:06.578673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.580097"], ["updated_at", "2020-04-22 05:37:06.580097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.583033"], ["updated_at", "2020-04-22 05:37:06.583033"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.582921"], ["updated_at", "2020-04-22 05:37:06.582921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_693


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.594810"], ["updated_at", "2020-04-22 05:37:06.594810"]]
 (0.1ms)  begin transaction

CommentTest: test_119


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.597266"], ["updated_at", "2020-04-22 05:37:06.597266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.597661"], ["updated_at", "2020-04-22 05:37:06.597661"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.599414"], ["updated_at", "2020-04-22 05:37:06.599414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.600388"], ["updated_at", "2020-04-22 05:37:06.600388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.602668"], ["updated_at", "2020-04-22 05:37:06.602668"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_365


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (34.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.576255"], ["updated_at", "2020-04-22 05:37:06.576255"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.613004"], ["updated_at", "2020-04-22 05:37:06.613004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.614565"], ["updated_at", "2020-04-22 05:37:06.614565"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (1.0ms)  rollback transaction

CommentTest: test_308


Course Create (10.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.610641"], ["updated_at", "2020-04-22 05:37:06.610641"]]
 (0.1ms)  begin transaction

CommentTest: test_124373


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.624728"], ["updated_at", "2020-04-22 05:37:06.624728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.628660"], ["updated_at", "2020-04-22 05:37:06.628660"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_95


Course Create (12.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.627065"], ["updated_at", "2020-04-22 05:37:06.627065"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.645743"], ["updated_at", "2020-04-22 05:37:06.645743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.647742"], ["updated_at", "2020-04-22 05:37:06.647742"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.635701"], ["updated_at", "2020-04-22 05:37:06.635701"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.651140"], ["updated_at", "2020-04-22 05:37:06.651140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.653204"], ["updated_at", "2020-04-22 05:37:06.653204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_965166


Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.645104"], ["updated_at", "2020-04-22 05:37:06.645104"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.659307"], ["updated_at", "2020-04-22 05:37:06.659307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.661198"], ["updated_at", "2020-04-22 05:37:06.661198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (187.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.476531"], ["updated_at", "2020-04-22 05:37:06.476531"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.667129"], ["updated_at", "2020-04-22 05:37:06.667129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_573


 (0.1ms)  begin transaction
Course Create (10.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.656777"], ["updated_at", "2020-04-22 05:37:06.656777"]]

CommentTest: test_196


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.669213"], ["updated_at", "2020-04-22 05:37:06.669213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.674337"], ["updated_at", "2020-04-22 05:37:06.674337"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_89164


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.678999"], ["updated_at", "2020-04-22 05:37:06.678999"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.680299"], ["updated_at", "2020-04-22 05:37:06.680299"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.682867"], ["updated_at", "2020-04-22 05:37:06.682867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.684620"], ["updated_at", "2020-04-22 05:37:06.684620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_630030


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_564255


Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.691601"], ["updated_at", "2020-04-22 05:37:06.691601"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.698604"], ["updated_at", "2020-04-22 05:37:06.698604"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.702448"], ["updated_at", "2020-04-22 05:37:06.702448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.703342"], ["updated_at", "2020-04-22 05:37:06.703342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.705143"], ["updated_at", "2020-04-22 05:37:06.705143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.707267"], ["updated_at", "2020-04-22 05:37:06.707267"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_14680


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.714405"], ["updated_at", "2020-04-22 05:37:06.714405"]]
 (0.5ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.716925"], ["updated_at", "2020-04-22 05:37:06.716925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_966742


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.720058"], ["updated_at", "2020-04-22 05:37:06.720058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.720780"], ["updated_at", "2020-04-22 05:37:06.720780"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.725881"], ["updated_at", "2020-04-22 05:37:06.725881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_914946

Course Create (45.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.669310"], ["updated_at", "2020-04-22 05:37:06.669310"]]

 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.729328"], ["updated_at", "2020-04-22 05:37:06.729328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.730045"], ["updated_at", "2020-04-22 05:37:06.730045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.732318"], ["updated_at", "2020-04-22 05:37:06.732318"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_511883


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.737325"], ["updated_at", "2020-04-22 05:37:06.737325"]]
 (3.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.741271"], ["updated_at", "2020-04-22 05:37:06.741271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.743775"], ["updated_at", "2020-04-22 05:37:06.743775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_125


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.746738"], ["updated_at", "2020-04-22 05:37:06.746738"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.749704"], ["updated_at", "2020-04-22 05:37:06.749704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.751846"], ["updated_at", "2020-04-22 05:37:06.751846"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_440589


Course Create (83.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.670797"], ["updated_at", "2020-04-22 05:37:06.670797"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.758559"], ["updated_at", "2020-04-22 05:37:06.758559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.760866"], ["updated_at", "2020-04-22 05:37:06.760866"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_695


 (0.8ms)  rollback transaction
Course Create (39.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.729086"], ["updated_at", "2020-04-22 05:37:06.729086"]]
 (0.1ms)  begin transaction

CommentTest: test_971


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.771457"], ["updated_at", "2020-04-22 05:37:06.771457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.770730"], ["updated_at", "2020-04-22 05:37:06.770730"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.773628"], ["updated_at", "2020-04-22 05:37:06.773628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.774231"], ["updated_at", "2020-04-22 05:37:06.774231"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.777501"], ["updated_at", "2020-04-22 05:37:06.777501"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_718137


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.786537"], ["updated_at", "2020-04-22 05:37:06.786537"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.790480"], ["updated_at", "2020-04-22 05:37:06.790480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.793736"], ["updated_at", "2020-04-22 05:37:06.793736"]]
 (0.1ms)  begin transaction

CommentTest: test_62


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.796715"], ["updated_at", "2020-04-22 05:37:06.796715"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.799460"], ["updated_at", "2020-04-22 05:37:06.799460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.801319"], ["updated_at", "2020-04-22 05:37:06.801319"]]
 (0.1ms)  begin transaction

CommentTest: test_112763


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (26.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.768803"], ["updated_at", "2020-04-22 05:37:06.768803"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.806260"], ["updated_at", "2020-04-22 05:37:06.806260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Course Create (11.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.797217"], ["updated_at", "2020-04-22 05:37:06.797217"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.808260"], ["updated_at", "2020-04-22 05:37:06.808260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.811219"], ["updated_at", "2020-04-22 05:37:06.811219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_720639


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.813455"], ["updated_at", "2020-04-22 05:37:06.813455"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_12 CommentTest: test_519



 (0.4ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.822651"], ["updated_at", "2020-04-22 05:37:06.822651"]]
Course Create (21.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.803273"], ["updated_at", "2020-04-22 05:37:06.803273"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.827623"], ["updated_at", "2020-04-22 05:37:06.827623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.827683"], ["updated_at", "2020-04-22 05:37:06.827683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.829518"], ["updated_at", "2020-04-22 05:37:06.829518"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.829563"], ["updated_at", "2020-04-22 05:37:06.829563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_273273



CommentTest: test_97


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.837213"], ["updated_at", "2020-04-22 05:37:06.837213"]]
Course Create (25.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.813654"], ["updated_at", "2020-04-22 05:37:06.813654"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.840704"], ["updated_at", "2020-04-22 05:37:06.840704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.841240"], ["updated_at", "2020-04-22 05:37:06.841240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.843133"], ["updated_at", "2020-04-22 05:37:06.843133"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.843411"], ["updated_at", "2020-04-22 05:37:06.843411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (24.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.822651"], ["updated_at", "2020-04-22 05:37:06.822651"]]
 (0.1ms)  begin transaction

CommentTest: test_631473


Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.837267"], ["updated_at", "2020-04-22 05:37:06.837267"]]
 (0.1ms)  begin transaction

CommentTest: test_176932


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.852266"], ["updated_at", "2020-04-22 05:37:06.852266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.852525"], ["updated_at", "2020-04-22 05:37:06.852525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.854453"], ["updated_at", "2020-04-22 05:37:06.854453"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.854766"], ["updated_at", "2020-04-22 05:37:06.854766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.852095"], ["updated_at", "2020-04-22 05:37:06.852095"]]
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.853503"], ["updated_at", "2020-04-22 05:37:06.853503"]]
 (0.1ms)  begin transaction

CommentTest: test_360


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.865397"], ["updated_at", "2020-04-22 05:37:06.865397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.866304"], ["updated_at", "2020-04-22 05:37:06.866304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.867732"], ["updated_at", "2020-04-22 05:37:06.867732"]]

CommentTest: test_561


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.868324"], ["updated_at", "2020-04-22 05:37:06.868324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (9.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.866150"], ["updated_at", "2020-04-22 05:37:06.866150"]]
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.870279"], ["updated_at", "2020-04-22 05:37:06.870279"]]
 (0.1ms)  begin transaction

CommentTest: test_394192


 (0.1ms)  begin transaction

CommentTest: test_892077


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.877831"], ["updated_at", "2020-04-22 05:37:06.877831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.879549"], ["updated_at", "2020-04-22 05:37:06.879549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.880446"], ["updated_at", "2020-04-22 05:37:06.880446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.882113"], ["updated_at", "2020-04-22 05:37:06.882113"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.878627"], ["updated_at", "2020-04-22 05:37:06.878627"]]
 (0.1ms)  begin transaction

CommentTest: test_907


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.891029"], ["updated_at", "2020-04-22 05:37:06.891029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.5ms)  begin transaction

CommentTest: test_202


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.893307"], ["updated_at", "2020-04-22 05:37:06.893307"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.892535"], ["updated_at", "2020-04-22 05:37:06.892535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.895550"], ["updated_at", "2020-04-22 05:37:06.895550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.898028"], ["updated_at", "2020-04-22 05:37:06.898028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.894498"], ["updated_at", "2020-04-22 05:37:06.894498"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_186228


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.901818"], ["updated_at", "2020-04-22 05:37:06.901818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.903974"], ["updated_at", "2020-04-22 05:37:06.903974"]]
 (4.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_706


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (35.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.879317"], ["updated_at", "2020-04-22 05:37:06.879317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.917352"], ["updated_at", "2020-04-22 05:37:06.917352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.920446"], ["updated_at", "2020-04-22 05:37:06.920446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (22.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.902976"], ["updated_at", "2020-04-22 05:37:06.902976"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_615


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.927009"], ["updated_at", "2020-04-22 05:37:06.927009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.928693"], ["updated_at", "2020-04-22 05:37:06.928693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_444335


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.932400"], ["updated_at", "2020-04-22 05:37:06.932400"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.935295"], ["updated_at", "2020-04-22 05:37:06.935295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (6.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.928454"], ["updated_at", "2020-04-22 05:37:06.928454"]]
 (0.1ms)  begin transaction

CommentTest: test_673896


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.937930"], ["updated_at", "2020-04-22 05:37:06.937930"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.938593"], ["updated_at", "2020-04-22 05:37:06.938593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.941040"], ["updated_at", "2020-04-22 05:37:06.941040"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_991735


 (0.6ms)  rollback transaction
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.939305"], ["updated_at", "2020-04-22 05:37:06.939305"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.950515"], ["updated_at", "2020-04-22 05:37:06.950515"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.951598"], ["updated_at", "2020-04-22 05:37:06.951598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.953390"], ["updated_at", "2020-04-22 05:37:06.953390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.953655"], ["updated_at", "2020-04-22 05:37:06.953655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.955822"], ["updated_at", "2020-04-22 05:37:06.955822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_314


 (0.1ms)  begin transaction

CommentTest: test_806776


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.965406"], ["updated_at", "2020-04-22 05:37:06.965406"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.967500"], ["updated_at", "2020-04-22 05:37:06.967500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.969833"], ["updated_at", "2020-04-22 05:37:06.969833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_369835


 (0.1ms)  SAVEPOINT active_record_1
Course Create (17.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.964440"], ["updated_at", "2020-04-22 05:37:06.964440"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.983855"], ["updated_at", "2020-04-22 05:37:06.983855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_197899


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.986361"], ["updated_at", "2020-04-22 05:37:06.986361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.986517"], ["updated_at", "2020-04-22 05:37:06.986517"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:06.990065"], ["updated_at", "2020-04-22 05:37:06.990065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:06.993443"], ["updated_at", "2020-04-22 05:37:06.993443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_728


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.997757"], ["updated_at", "2020-04-22 05:37:06.997757"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.000507"], ["updated_at", "2020-04-22 05:37:07.000507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_346156


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.002833"], ["updated_at", "2020-04-22 05:37:07.002833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.002614"], ["updated_at", "2020-04-22 05:37:07.002614"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.009798"], ["updated_at", "2020-04-22 05:37:07.009798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.012347"], ["updated_at", "2020-04-22 05:37:07.012347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_824


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_20342


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.020884"], ["updated_at", "2020-04-22 05:37:07.020884"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.019268"], ["updated_at", "2020-04-22 05:37:07.019268"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.026989"], ["updated_at", "2020-04-22 05:37:07.026989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.031713"], ["updated_at", "2020-04-22 05:37:07.031713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.031646"], ["updated_at", "2020-04-22 05:37:07.031646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.034368"], ["updated_at", "2020-04-22 05:37:07.034368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_45496


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_763


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.042716"], ["updated_at", "2020-04-22 05:37:07.042716"]]
Course Create (62.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.981735"], ["updated_at", "2020-04-22 05:37:06.981735"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.046150"], ["updated_at", "2020-04-22 05:37:07.046150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.047191"], ["updated_at", "2020-04-22 05:37:07.047191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.048578"], ["updated_at", "2020-04-22 05:37:07.048578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.049535"], ["updated_at", "2020-04-22 05:37:07.049535"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.044748"], ["updated_at", "2020-04-22 05:37:07.044748"]]
 (0.1ms)  begin transaction

CommentTest: test_582745


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.060965"], ["updated_at", "2020-04-22 05:37:07.060965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.063132"], ["updated_at", "2020-04-22 05:37:07.063132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_316441


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_745


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.068441"], ["updated_at", "2020-04-22 05:37:07.068441"]]
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.059631"], ["updated_at", "2020-04-22 05:37:07.059631"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.072603"], ["updated_at", "2020-04-22 05:37:07.072603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.071022"], ["updated_at", "2020-04-22 05:37:07.071022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.077525"], ["updated_at", "2020-04-22 05:37:07.077525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.078171"], ["updated_at", "2020-04-22 05:37:07.078171"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_261641


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.086911"], ["updated_at", "2020-04-22 05:37:07.086911"]]
 (0.3ms)  begin transaction

CommentTest: test_798023


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.091539"], ["updated_at", "2020-04-22 05:37:07.091539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.094713"], ["updated_at", "2020-04-22 05:37:07.094713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.093170"], ["updated_at", "2020-04-22 05:37:07.093170"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.097512"], ["updated_at", "2020-04-22 05:37:07.097512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.099539"], ["updated_at", "2020-04-22 05:37:07.099539"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_338212


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.103546"], ["updated_at", "2020-04-22 05:37:07.103546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (192.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:06.913738"], ["updated_at", "2020-04-22 05:37:06.913738"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.106200"], ["updated_at", "2020-04-22 05:37:07.106200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.109237"], ["updated_at", "2020-04-22 05:37:07.109237"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.109796"], ["updated_at", "2020-04-22 05:37:07.109796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.111506"], ["updated_at", "2020-04-22 05:37:07.111506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_858421


 (0.1ms)  begin transaction

CommentTest: test_385


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.118982"], ["updated_at", "2020-04-22 05:37:07.118982"]]
 (0.1ms)  begin transaction

CommentTest: test_476480


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.120335"], ["updated_at", "2020-04-22 05:37:07.120335"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.121715"], ["updated_at", "2020-04-22 05:37:07.121715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.124206"], ["updated_at", "2020-04-22 05:37:07.124206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.124858"], ["updated_at", "2020-04-22 05:37:07.124858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.126462"], ["updated_at", "2020-04-22 05:37:07.126462"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_857545


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.133866"], ["updated_at", "2020-04-22 05:37:07.133866"]]
 (0.1ms)  begin transaction
Course Create (12.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.121767"], ["updated_at", "2020-04-22 05:37:07.121767"]]

CommentTest: test_245


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.137281"], ["updated_at", "2020-04-22 05:37:07.137281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.137965"], ["updated_at", "2020-04-22 05:37:07.137965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.139798"], ["updated_at", "2020-04-22 05:37:07.139798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.142603"], ["updated_at", "2020-04-22 05:37:07.142603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_697115


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.149504"], ["updated_at", "2020-04-22 05:37:07.149504"]]
 (0.1ms)  begin transaction

CommentTest: test_24577


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.152385"], ["updated_at", "2020-04-22 05:37:07.152385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.154417"], ["updated_at", "2020-04-22 05:37:07.154417"]]
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.153765"], ["updated_at", "2020-04-22 05:37:07.153765"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.160359"], ["updated_at", "2020-04-22 05:37:07.160359"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.164156"], ["updated_at", "2020-04-22 05:37:07.164156"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_811544


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.168673"], ["updated_at", "2020-04-22 05:37:07.168673"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.172866"], ["updated_at", "2020-04-22 05:37:07.172866"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.176286"], ["updated_at", "2020-04-22 05:37:07.176286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_78858


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (112.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.070467"], ["updated_at", "2020-04-22 05:37:07.070467"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.182598"], ["updated_at", "2020-04-22 05:37:07.182598"]]
 (0.1ms)  begin transaction

CommentTest: test_973431


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.185324"], ["updated_at", "2020-04-22 05:37:07.185324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.185071"], ["updated_at", "2020-04-22 05:37:07.185071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.188729"], ["updated_at", "2020-04-22 05:37:07.188729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.189673"], ["updated_at", "2020-04-22 05:37:07.189673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (2.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.186499"], ["updated_at", "2020-04-22 05:37:07.186499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_242


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.198901"], ["updated_at", "2020-04-22 05:37:07.198901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.200686"], ["updated_at", "2020-04-22 05:37:07.200686"]]
 (0.1ms)  begin transaction

CommentTest: test_890549

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.202795"], ["updated_at", "2020-04-22 05:37:07.202795"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_381099


Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.207654"], ["updated_at", "2020-04-22 05:37:07.207654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (10.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.199899"], ["updated_at", "2020-04-22 05:37:07.199899"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.212625"], ["updated_at", "2020-04-22 05:37:07.212625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.212847"], ["updated_at", "2020-04-22 05:37:07.212847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.214511"], ["updated_at", "2020-04-22 05:37:07.214511"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_399


Course Create (82.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.137197"], ["updated_at", "2020-04-22 05:37:07.137197"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (13.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.210871"], ["updated_at", "2020-04-22 05:37:07.210871"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.224669"], ["updated_at", "2020-04-22 05:37:07.224669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.226598"], ["updated_at", "2020-04-22 05:37:07.226598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.230948"], ["updated_at", "2020-04-22 05:37:07.230948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.226827"], ["updated_at", "2020-04-22 05:37:07.226827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_194623


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.224342"], ["updated_at", "2020-04-22 05:37:07.224342"]]
 (0.1ms)  begin transaction

CommentTest: test_221532


 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.239139"], ["updated_at", "2020-04-22 05:37:07.239139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_551


 (0.1ms)  SAVEPOINT active_record_1
Course Create (6.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.235857"], ["updated_at", "2020-04-22 05:37:07.235857"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.241557"], ["updated_at", "2020-04-22 05:37:07.241557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.244308"], ["updated_at", "2020-04-22 05:37:07.244308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.246428"], ["updated_at", "2020-04-22 05:37:07.246428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_666


Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.239498"], ["updated_at", "2020-04-22 05:37:07.239498"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.252781"], ["updated_at", "2020-04-22 05:37:07.252781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.256544"], ["updated_at", "2020-04-22 05:37:07.256544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_169120


 (0.6ms)  rollback transaction
Course Create (21.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.241500"], ["updated_at", "2020-04-22 05:37:07.241500"]]
 (0.1ms)  begin transaction

CommentTest: test_60373


Course Create (11.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.252096"], ["updated_at", "2020-04-22 05:37:07.252096"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.264989"], ["updated_at", "2020-04-22 05:37:07.264989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.266503"], ["updated_at", "2020-04-22 05:37:07.266503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.267260"], ["updated_at", "2020-04-22 05:37:07.267260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.268321"], ["updated_at", "2020-04-22 05:37:07.268321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_872


Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.266225"], ["updated_at", "2020-04-22 05:37:07.266225"]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_845


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.277469"], ["updated_at", "2020-04-22 05:37:07.277469"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.279207"], ["updated_at", "2020-04-22 05:37:07.279207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.280235"], ["updated_at", "2020-04-22 05:37:07.280235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.281157"], ["updated_at", "2020-04-22 05:37:07.281157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.282177"], ["updated_at", "2020-04-22 05:37:07.282177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_610069


 (0.1ms)  begin transaction

CommentTest: test_58


Course Create (11.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.278986"], ["updated_at", "2020-04-22 05:37:07.278986"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.291626"], ["updated_at", "2020-04-22 05:37:07.291626"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.292925"], ["updated_at", "2020-04-22 05:37:07.292925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.294202"], ["updated_at", "2020-04-22 05:37:07.294202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.296592"], ["updated_at", "2020-04-22 05:37:07.296592"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.296390"], ["updated_at", "2020-04-22 05:37:07.296390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_888


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.306614"], ["updated_at", "2020-04-22 05:37:07.306614"]]
 (0.1ms)  begin transaction

CommentTest: test_926


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.310088"], ["updated_at", "2020-04-22 05:37:07.310088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.310567"], ["updated_at", "2020-04-22 05:37:07.310567"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.312418"], ["updated_at", "2020-04-22 05:37:07.312418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.313377"], ["updated_at", "2020-04-22 05:37:07.313377"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.316237"], ["updated_at", "2020-04-22 05:37:07.316237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_199


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.322448"], ["updated_at", "2020-04-22 05:37:07.322448"]]
 (0.3ms)  begin transaction

CommentTest: test_558


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.326504"], ["updated_at", "2020-04-22 05:37:07.326504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.326699"], ["updated_at", "2020-04-22 05:37:07.326699"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.328861"], ["updated_at", "2020-04-22 05:37:07.328861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.329322"], ["updated_at", "2020-04-22 05:37:07.329322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.333296"], ["updated_at", "2020-04-22 05:37:07.333296"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_904


 (0.1ms)  begin transaction

CommentTest: test_840


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.344479"], ["updated_at", "2020-04-22 05:37:07.344479"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.345528"], ["updated_at", "2020-04-22 05:37:07.345528"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.347565"], ["updated_at", "2020-04-22 05:37:07.347565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.348841"], ["updated_at", "2020-04-22 05:37:07.348841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.349702"], ["updated_at", "2020-04-22 05:37:07.349702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.350636"], ["updated_at", "2020-04-22 05:37:07.350636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (91.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.263111"], ["updated_at", "2020-04-22 05:37:07.263111"]]

CommentTest: test_116


 (0.1ms)  begin transaction

CommentTest: test_939


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.360662"], ["updated_at", "2020-04-22 05:37:07.360662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.360915"], ["updated_at", "2020-04-22 05:37:07.360915"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.362822"], ["updated_at", "2020-04-22 05:37:07.362822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.365443"], ["updated_at", "2020-04-22 05:37:07.365443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.369545"], ["updated_at", "2020-04-22 05:37:07.369545"]]
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.360532"], ["updated_at", "2020-04-22 05:37:07.360532"]]
 (0.1ms)  begin transaction

CommentTest: test_27501


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.373442"], ["updated_at", "2020-04-22 05:37:07.373442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.375865"], ["updated_at", "2020-04-22 05:37:07.375865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_443


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_979


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.382069"], ["updated_at", "2020-04-22 05:37:07.382069"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.373689"], ["updated_at", "2020-04-22 05:37:07.373689"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.385229"], ["updated_at", "2020-04-22 05:37:07.385229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.386604"], ["updated_at", "2020-04-22 05:37:07.386604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.387265"], ["updated_at", "2020-04-22 05:37:07.387265"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.388920"], ["updated_at", "2020-04-22 05:37:07.388920"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_939879


 (0.1ms)  begin transaction

CommentTest: test_243


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.400348"], ["updated_at", "2020-04-22 05:37:07.400348"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.400795"], ["updated_at", "2020-04-22 05:37:07.400795"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.403288"], ["updated_at", "2020-04-22 05:37:07.403288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.405752"], ["updated_at", "2020-04-22 05:37:07.405752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.405584"], ["updated_at", "2020-04-22 05:37:07.405584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.410594"], ["updated_at", "2020-04-22 05:37:07.410594"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_448503


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.416179"], ["updated_at", "2020-04-22 05:37:07.416179"]]
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.419753"], ["updated_at", "2020-04-22 05:37:07.419753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.421981"], ["updated_at", "2020-04-22 05:37:07.421981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_328


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (138.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.291003"], ["updated_at", "2020-04-22 05:37:07.291003"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.432102"], ["updated_at", "2020-04-22 05:37:07.432102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.434770"], ["updated_at", "2020-04-22 05:37:07.434770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_521407


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.439259"], ["updated_at", "2020-04-22 05:37:07.439259"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.444887"], ["updated_at", "2020-04-22 05:37:07.444887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_814570


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.446981"], ["updated_at", "2020-04-22 05:37:07.446981"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (19.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.427978"], ["updated_at", "2020-04-22 05:37:07.427978"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.449594"], ["updated_at", "2020-04-22 05:37:07.449594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.451963"], ["updated_at", "2020-04-22 05:37:07.451963"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_575173


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.457788"], ["updated_at", "2020-04-22 05:37:07.457788"]]
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.460275"], ["updated_at", "2020-04-22 05:37:07.460275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.462492"], ["updated_at", "2020-04-22 05:37:07.462492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (22.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.447468"], ["updated_at", "2020-04-22 05:37:07.447468"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_947


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.471873"], ["updated_at", "2020-04-22 05:37:07.471873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_821606


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.474042"], ["updated_at", "2020-04-22 05:37:07.474042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.474169"], ["updated_at", "2020-04-22 05:37:07.474169"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.481843"], ["updated_at", "2020-04-22 05:37:07.481843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (9.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.472782"], ["updated_at", "2020-04-22 05:37:07.472782"]]
 (0.1ms)  begin transaction

CommentTest: test_915846


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.484094"], ["updated_at", "2020-04-22 05:37:07.484094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.484188"], ["updated_at", "2020-04-22 05:37:07.484188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.488791"], ["updated_at", "2020-04-22 05:37:07.488791"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_65079


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (112.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.384197"], ["updated_at", "2020-04-22 05:37:07.384197"]]
 (0.1ms)  begin transaction

CommentTest: test_628


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.498456"], ["updated_at", "2020-04-22 05:37:07.498456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.500503"], ["updated_at", "2020-04-22 05:37:07.500503"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.499830"], ["updated_at", "2020-04-22 05:37:07.499830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.502670"], ["updated_at", "2020-04-22 05:37:07.502670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_469


Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.496224"], ["updated_at", "2020-04-22 05:37:07.496224"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.511840"], ["updated_at", "2020-04-22 05:37:07.511840"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.513454"], ["updated_at", "2020-04-22 05:37:07.513454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.515004"], ["updated_at", "2020-04-22 05:37:07.515004"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_956893


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (38.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.484528"], ["updated_at", "2020-04-22 05:37:07.484528"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.522169"], ["updated_at", "2020-04-22 05:37:07.522169"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.525557"], ["updated_at", "2020-04-22 05:37:07.525557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.525165"], ["updated_at", "2020-04-22 05:37:07.525165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.527550"], ["updated_at", "2020-04-22 05:37:07.527550"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.527747"], ["updated_at", "2020-04-22 05:37:07.527747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_491


 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.534082"], ["updated_at", "2020-04-22 05:37:07.534082"]]
 (0.1ms)  begin transaction

CommentTest: test_618443


 (0.1ms)  begin transaction

CommentTest: test_527380


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.537014"], ["updated_at", "2020-04-22 05:37:07.537014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.540330"], ["updated_at", "2020-04-22 05:37:07.540330"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.541539"], ["updated_at", "2020-04-22 05:37:07.541539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.543281"], ["updated_at", "2020-04-22 05:37:07.543281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.546346"], ["updated_at", "2020-04-22 05:37:07.546346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_190


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_331067


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.555899"], ["updated_at", "2020-04-22 05:37:07.555899"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.558327"], ["updated_at", "2020-04-22 05:37:07.558327"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.561541"], ["updated_at", "2020-04-22 05:37:07.561541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.561936"], ["updated_at", "2020-04-22 05:37:07.561936"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.563838"], ["updated_at", "2020-04-22 05:37:07.563838"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.564202"], ["updated_at", "2020-04-22 05:37:07.564202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.8ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (39.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.537537"], ["updated_at", "2020-04-22 05:37:07.537537"]]
 (0.1ms)  begin transaction

CommentTest: test_563


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.579236"], ["updated_at", "2020-04-22 05:37:07.579236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.581075"], ["updated_at", "2020-04-22 05:37:07.581075"]]
 (0.1ms)  begin transaction

CommentTest: test_559427


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.583080"], ["updated_at", "2020-04-22 05:37:07.583080"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.585725"], ["updated_at", "2020-04-22 05:37:07.585725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_194997


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.589518"], ["updated_at", "2020-04-22 05:37:07.589518"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.592473"], ["updated_at", "2020-04-22 05:37:07.592473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.590696"], ["updated_at", "2020-04-22 05:37:07.590696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.595042"], ["updated_at", "2020-04-22 05:37:07.595042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.580477"], ["updated_at", "2020-04-22 05:37:07.580477"]]

CommentTest: test_661642


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.603325"], ["updated_at", "2020-04-22 05:37:07.603325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_794896


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.610606"], ["updated_at", "2020-04-22 05:37:07.610606"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.608317"], ["updated_at", "2020-04-22 05:37:07.608317"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.613607"], ["updated_at", "2020-04-22 05:37:07.613607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_867


Course Create (20.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.602967"], ["updated_at", "2020-04-22 05:37:07.602967"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.620385"], ["updated_at", "2020-04-22 05:37:07.620385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.9ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.626075"], ["updated_at", "2020-04-22 05:37:07.626075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.628236"], ["updated_at", "2020-04-22 05:37:07.628236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_682688



CommentTest: test_206539


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.637384"], ["updated_at", "2020-04-22 05:37:07.637384"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.637379"], ["updated_at", "2020-04-22 05:37:07.637379"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.639960"], ["updated_at", "2020-04-22 05:37:07.639960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.640327"], ["updated_at", "2020-04-22 05:37:07.640327"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.642255"], ["updated_at", "2020-04-22 05:37:07.642255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.642376"], ["updated_at", "2020-04-22 05:37:07.642376"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (23.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.621456"], ["updated_at", "2020-04-22 05:37:07.621456"]]
 (0.1ms)  begin transaction

CommentTest: test_45125


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_682038


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.652120"], ["updated_at", "2020-04-22 05:37:07.652120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.653847"], ["updated_at", "2020-04-22 05:37:07.653847"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.654421"], ["updated_at", "2020-04-22 05:37:07.654421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.656656"], ["updated_at", "2020-04-22 05:37:07.656656"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.660373"], ["updated_at", "2020-04-22 05:37:07.660373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.651908"], ["updated_at", "2020-04-22 05:37:07.651908"]]
 (0.1ms)  begin transaction

CommentTest: test_547


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.664533"], ["updated_at", "2020-04-22 05:37:07.664533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.666801"], ["updated_at", "2020-04-22 05:37:07.666801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_850151

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.664985"], ["updated_at", "2020-04-22 05:37:07.664985"]]
 (0.1ms)  begin transaction

CommentTest: test_27131


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.675440"], ["updated_at", "2020-04-22 05:37:07.675440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.670023"], ["updated_at", "2020-04-22 05:37:07.670023"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.678107"], ["updated_at", "2020-04-22 05:37:07.678107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.680354"], ["updated_at", "2020-04-22 05:37:07.680354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.682055"], ["updated_at", "2020-04-22 05:37:07.682055"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
Course Create (8.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.676763"], ["updated_at", "2020-04-22 05:37:07.676763"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_471


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.687101"], ["updated_at", "2020-04-22 05:37:07.687101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.689143"], ["updated_at", "2020-04-22 05:37:07.689143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_603264


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.694026"], ["updated_at", "2020-04-22 05:37:07.694026"]]
 (0.1ms)  begin transaction

CommentTest: test_455018


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.696695"], ["updated_at", "2020-04-22 05:37:07.696695"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.697749"], ["updated_at", "2020-04-22 05:37:07.697749"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.698547"], ["updated_at", "2020-04-22 05:37:07.698547"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.700239"], ["updated_at", "2020-04-22 05:37:07.700239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.702308"], ["updated_at", "2020-04-22 05:37:07.702308"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_508976


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.708589"], ["updated_at", "2020-04-22 05:37:07.708589"]]
 (0.1ms)  begin transaction

CommentTest: test_264253


Course Create (22.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.688515"], ["updated_at", "2020-04-22 05:37:07.688515"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.711455"], ["updated_at", "2020-04-22 05:37:07.711455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.713861"], ["updated_at", "2020-04-22 05:37:07.713861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.715117"], ["updated_at", "2020-04-22 05:37:07.715117"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.715683"], ["updated_at", "2020-04-22 05:37:07.715683"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_106545


 (0.1ms)  begin transaction

CommentTest: test_179


Course Create (12.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.713245"], ["updated_at", "2020-04-22 05:37:07.713245"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.727335"], ["updated_at", "2020-04-22 05:37:07.727335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.729617"], ["updated_at", "2020-04-22 05:37:07.729617"]]
 (4.7ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.725163"], ["updated_at", "2020-04-22 05:37:07.725163"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.732568"], ["updated_at", "2020-04-22 05:37:07.732568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.734580"], ["updated_at", "2020-04-22 05:37:07.734580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_377010


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.737194"], ["updated_at", "2020-04-22 05:37:07.737194"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.740489"], ["updated_at", "2020-04-22 05:37:07.740489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.743203"], ["updated_at", "2020-04-22 05:37:07.743203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_699247


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.746297"], ["updated_at", "2020-04-22 05:37:07.746297"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.748826"], ["updated_at", "2020-04-22 05:37:07.748826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_588971


Course Create (21.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.727489"], ["updated_at", "2020-04-22 05:37:07.727489"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.750871"], ["updated_at", "2020-04-22 05:37:07.750871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.752422"], ["updated_at", "2020-04-22 05:37:07.752422"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.754428"], ["updated_at", "2020-04-22 05:37:07.754428"]]
 (2.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_379296


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.761479"], ["updated_at", "2020-04-22 05:37:07.761479"]]

CommentTest: test_766


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.764804"], ["updated_at", "2020-04-22 05:37:07.764804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.764353"], ["updated_at", "2020-04-22 05:37:07.764353"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.766705"], ["updated_at", "2020-04-22 05:37:07.766705"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.766911"], ["updated_at", "2020-04-22 05:37:07.766911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.769033"], ["updated_at", "2020-04-22 05:37:07.769033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_23719


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_855


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.777131"], ["updated_at", "2020-04-22 05:37:07.777131"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.779240"], ["updated_at", "2020-04-22 05:37:07.779240"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.780002"], ["updated_at", "2020-04-22 05:37:07.780002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.781762"], ["updated_at", "2020-04-22 05:37:07.781762"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.781786"], ["updated_at", "2020-04-22 05:37:07.781786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.784578"], ["updated_at", "2020-04-22 05:37:07.784578"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_341914


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.799429"], ["updated_at", "2020-04-22 05:37:07.799429"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.801743"], ["updated_at", "2020-04-22 05:37:07.801743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.803991"], ["updated_at", "2020-04-22 05:37:07.803991"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_645


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.806641"], ["updated_at", "2020-04-22 05:37:07.806641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.812058"], ["updated_at", "2020-04-22 05:37:07.812058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_60171


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.814179"], ["updated_at", "2020-04-22 05:37:07.814179"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.813964"], ["updated_at", "2020-04-22 05:37:07.813964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.816393"], ["updated_at", "2020-04-22 05:37:07.816393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.818374"], ["updated_at", "2020-04-22 05:37:07.818374"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_704


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.823898"], ["updated_at", "2020-04-22 05:37:07.823898"]]

CommentTest: test_227318


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.828173"], ["updated_at", "2020-04-22 05:37:07.828173"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.829045"], ["updated_at", "2020-04-22 05:37:07.829045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.831005"], ["updated_at", "2020-04-22 05:37:07.831005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.830952"], ["updated_at", "2020-04-22 05:37:07.830952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.832785"], ["updated_at", "2020-04-22 05:37:07.832785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (89.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.750995"], ["updated_at", "2020-04-22 05:37:07.750995"]]
 (0.1ms)  begin transaction

CommentTest: test_399960


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.842206"], ["updated_at", "2020-04-22 05:37:07.842206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_281


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.843396"], ["updated_at", "2020-04-22 05:37:07.843396"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.844388"], ["updated_at", "2020-04-22 05:37:07.844388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.846058"], ["updated_at", "2020-04-22 05:37:07.846058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.848059"], ["updated_at", "2020-04-22 05:37:07.848059"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_956569


 (0.1ms)  SAVEPOINT active_record_1
Course Create (6.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.844400"], ["updated_at", "2020-04-22 05:37:07.844400"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.853534"], ["updated_at", "2020-04-22 05:37:07.853534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_306054


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.855913"], ["updated_at", "2020-04-22 05:37:07.855913"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.857684"], ["updated_at", "2020-04-22 05:37:07.857684"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.861085"], ["updated_at", "2020-04-22 05:37:07.861085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.863126"], ["updated_at", "2020-04-22 05:37:07.863126"]]
 (0.0ms)  begin transaction

CommentTest: test_218


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.865692"], ["updated_at", "2020-04-22 05:37:07.865692"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.868224"], ["updated_at", "2020-04-22 05:37:07.868224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_233491


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.871381"], ["updated_at", "2020-04-22 05:37:07.871381"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.872177"], ["updated_at", "2020-04-22 05:37:07.872177"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.875725"], ["updated_at", "2020-04-22 05:37:07.875725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.877564"], ["updated_at", "2020-04-22 05:37:07.877564"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_552


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.880618"], ["updated_at", "2020-04-22 05:37:07.880618"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.882421"], ["updated_at", "2020-04-22 05:37:07.882421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.883556"], ["updated_at", "2020-04-22 05:37:07.883556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_900778


 (0.6ms)  rollback transaction
Course Create (36.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.852787"], ["updated_at", "2020-04-22 05:37:07.852787"]]
 (0.1ms)  begin transaction

CommentTest: test_146


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.891353"], ["updated_at", "2020-04-22 05:37:07.891353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.894498"], ["updated_at", "2020-04-22 05:37:07.894498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.894189"], ["updated_at", "2020-04-22 05:37:07.894189"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.896997"], ["updated_at", "2020-04-22 05:37:07.896997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.899163"], ["updated_at", "2020-04-22 05:37:07.899163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_293047


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.903236"], ["updated_at", "2020-04-22 05:37:07.903236"]]
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.906358"], ["updated_at", "2020-04-22 05:37:07.906358"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_151630


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.908327"], ["updated_at", "2020-04-22 05:37:07.908327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.908254"], ["updated_at", "2020-04-22 05:37:07.908254"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.894403"], ["updated_at", "2020-04-22 05:37:07.894403"]]
 (0.1ms)  begin transaction

CommentTest: test_267516


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.913760"], ["updated_at", "2020-04-22 05:37:07.913760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.918342"], ["updated_at", "2020-04-22 05:37:07.918342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.920161"], ["updated_at", "2020-04-22 05:37:07.920161"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.920524"], ["updated_at", "2020-04-22 05:37:07.920524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.918608"], ["updated_at", "2020-04-22 05:37:07.918608"]]
 (0.1ms)  begin transaction

CommentTest: test_293


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.932105"], ["updated_at", "2020-04-22 05:37:07.932105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.934227"], ["updated_at", "2020-04-22 05:37:07.934227"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_275387


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.939625"], ["updated_at", "2020-04-22 05:37:07.939625"]]
 (0.1ms)  begin transaction

CommentTest: test_926626


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.946243"], ["updated_at", "2020-04-22 05:37:07.946243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.946460"], ["updated_at", "2020-04-22 05:37:07.946460"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.948341"], ["updated_at", "2020-04-22 05:37:07.948341"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.948703"], ["updated_at", "2020-04-22 05:37:07.948703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.950404"], ["updated_at", "2020-04-22 05:37:07.950404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_318455


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.961118"], ["updated_at", "2020-04-22 05:37:07.961118"]]
 (0.1ms)  begin transaction

CommentTest: test_364005


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.963563"], ["updated_at", "2020-04-22 05:37:07.963563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.963591"], ["updated_at", "2020-04-22 05:37:07.963591"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.965333"], ["updated_at", "2020-04-22 05:37:07.965333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.966173"], ["updated_at", "2020-04-22 05:37:07.966173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.969653"], ["updated_at", "2020-04-22 05:37:07.969653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_243270


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.974272"], ["updated_at", "2020-04-22 05:37:07.974272"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.977747"], ["updated_at", "2020-04-22 05:37:07.977747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.979908"], ["updated_at", "2020-04-22 05:37:07.979908"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_31541


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.982094"], ["updated_at", "2020-04-22 05:37:07.982094"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.984700"], ["updated_at", "2020-04-22 05:37:07.984700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_370135


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.986882"], ["updated_at", "2020-04-22 05:37:07.986882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.989168"], ["updated_at", "2020-04-22 05:37:07.989168"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:07.991610"], ["updated_at", "2020-04-22 05:37:07.991610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:07.993911"], ["updated_at", "2020-04-22 05:37:07.993911"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_565739


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.999453"], ["updated_at", "2020-04-22 05:37:07.999453"]]
 (0.1ms)  begin transaction

CommentTest: test_514209


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.002113"], ["updated_at", "2020-04-22 05:37:08.002113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.002241"], ["updated_at", "2020-04-22 05:37:08.002241"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.004802"], ["updated_at", "2020-04-22 05:37:08.004802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.008085"], ["updated_at", "2020-04-22 05:37:08.008085"]]
Recording Create (5.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.004172"], ["updated_at", "2020-04-22 05:37:08.004172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (82.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.931984"], ["updated_at", "2020-04-22 05:37:07.931984"]]
 (0.1ms)  begin transaction

CommentTest: test_445610


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.017031"], ["updated_at", "2020-04-22 05:37:08.017031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.018903"], ["updated_at", "2020-04-22 05:37:08.018903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_402257

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (9.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.018563"], ["updated_at", "2020-04-22 05:37:08.018563"]]
 (0.1ms)  begin transaction

CommentTest: test_938


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.027583"], ["updated_at", "2020-04-22 05:37:08.027583"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.030212"], ["updated_at", "2020-04-22 05:37:08.030212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.030594"], ["updated_at", "2020-04-22 05:37:08.030594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.031980"], ["updated_at", "2020-04-22 05:37:08.031980"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.032390"], ["updated_at", "2020-04-22 05:37:08.032390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_187467


Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.030367"], ["updated_at", "2020-04-22 05:37:08.030367"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.043200"], ["updated_at", "2020-04-22 05:37:08.043200"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.045416"], ["updated_at", "2020-04-22 05:37:08.045416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_403567


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.048274"], ["updated_at", "2020-04-22 05:37:08.048274"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_392


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.052483"], ["updated_at", "2020-04-22 05:37:08.052483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.053892"], ["updated_at", "2020-04-22 05:37:08.053892"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.054884"], ["updated_at", "2020-04-22 05:37:08.054884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.056841"], ["updated_at", "2020-04-22 05:37:08.056841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.060007"], ["updated_at", "2020-04-22 05:37:08.060007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_403


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.071231"], ["updated_at", "2020-04-22 05:37:08.071231"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.074241"], ["updated_at", "2020-04-22 05:37:08.074241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_426350


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.077919"], ["updated_at", "2020-04-22 05:37:08.077919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.079341"], ["updated_at", "2020-04-22 05:37:08.079341"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.081723"], ["updated_at", "2020-04-22 05:37:08.081723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.083494"], ["updated_at", "2020-04-22 05:37:08.083494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  begin transaction

CommentTest: test_161


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.086954"], ["updated_at", "2020-04-22 05:37:08.086954"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_430904


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.092962"], ["updated_at", "2020-04-22 05:37:08.092962"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.091640"], ["updated_at", "2020-04-22 05:37:08.091640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.096974"], ["updated_at", "2020-04-22 05:37:08.096974"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.098412"], ["updated_at", "2020-04-22 05:37:08.098412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.099053"], ["updated_at", "2020-04-22 05:37:08.099053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_450


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.107881"], ["updated_at", "2020-04-22 05:37:08.107881"]]
 (0.1ms)  begin transaction

CommentTest: test_769301


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.112228"], ["updated_at", "2020-04-22 05:37:08.112228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.114354"], ["updated_at", "2020-04-22 05:37:08.114354"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.116427"], ["updated_at", "2020-04-22 05:37:08.116427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.119391"], ["updated_at", "2020-04-22 05:37:08.119391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_698


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.123339"], ["updated_at", "2020-04-22 05:37:08.123339"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.122216"], ["updated_at", "2020-04-22 05:37:08.122216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.126127"], ["updated_at", "2020-04-22 05:37:08.126127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.128580"], ["updated_at", "2020-04-22 05:37:08.128580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_537214


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.134797"], ["updated_at", "2020-04-22 05:37:08.134797"]]
 (0.2ms)  begin transaction

CommentTest: test_942


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.137689"], ["updated_at", "2020-04-22 05:37:08.137689"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.140062"], ["updated_at", "2020-04-22 05:37:08.140062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.142902"], ["updated_at", "2020-04-22 05:37:08.142902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.144145"], ["updated_at", "2020-04-22 05:37:08.144145"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.145068"], ["updated_at", "2020-04-22 05:37:08.145068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_441735


Course Create (639.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:07.513052"], ["updated_at", "2020-04-22 05:37:07.513052"]]
Course Create (110.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.042640"], ["updated_at", "2020-04-22 05:37:08.042640"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.155164"], ["updated_at", "2020-04-22 05:37:08.155164"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.156207"], ["updated_at", "2020-04-22 05:37:08.156207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.157364"], ["updated_at", "2020-04-22 05:37:08.157364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.158200"], ["updated_at", "2020-04-22 05:37:08.158200"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_275


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_107


Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.160662"], ["updated_at", "2020-04-22 05:37:08.160662"]]
 (0.1ms)  begin transaction

CommentTest: test_758974


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.167603"], ["updated_at", "2020-04-22 05:37:08.167603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.167604"], ["updated_at", "2020-04-22 05:37:08.167604"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.170204"], ["updated_at", "2020-04-22 05:37:08.170204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.169960"], ["updated_at", "2020-04-22 05:37:08.169960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.172107"], ["updated_at", "2020-04-22 05:37:08.172107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_119183



CommentTest: test_883531


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.182470"], ["updated_at", "2020-04-22 05:37:08.182470"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.182468"], ["updated_at", "2020-04-22 05:37:08.182468"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.184657"], ["updated_at", "2020-04-22 05:37:08.184657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.186102"], ["updated_at", "2020-04-22 05:37:08.186102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.186543"], ["updated_at", "2020-04-22 05:37:08.186543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.188214"], ["updated_at", "2020-04-22 05:37:08.188214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_81803


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (27.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.165021"], ["updated_at", "2020-04-22 05:37:08.165021"]]
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.197132"], ["updated_at", "2020-04-22 05:37:08.197132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_354882


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.199072"], ["updated_at", "2020-04-22 05:37:08.199072"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.198955"], ["updated_at", "2020-04-22 05:37:08.198955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.201352"], ["updated_at", "2020-04-22 05:37:08.201352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.203784"], ["updated_at", "2020-04-22 05:37:08.203784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_407


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.210127"], ["updated_at", "2020-04-22 05:37:08.210127"]]
 (0.1ms)  begin transaction

CommentTest: test_365527


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.214776"], ["updated_at", "2020-04-22 05:37:08.214776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.215494"], ["updated_at", "2020-04-22 05:37:08.215494"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.218215"], ["updated_at", "2020-04-22 05:37:08.218215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.217756"], ["updated_at", "2020-04-22 05:37:08.217756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.220406"], ["updated_at", "2020-04-22 05:37:08.220406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_585


 (0.1ms)  begin transaction

CommentTest: test_204555


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.229813"], ["updated_at", "2020-04-22 05:37:08.229813"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.230500"], ["updated_at", "2020-04-22 05:37:08.230500"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.232293"], ["updated_at", "2020-04-22 05:37:08.232293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.232699"], ["updated_at", "2020-04-22 05:37:08.232699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.234463"], ["updated_at", "2020-04-22 05:37:08.234463"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.234750"], ["updated_at", "2020-04-22 05:37:08.234750"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_843558


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_298


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.245694"], ["updated_at", "2020-04-22 05:37:08.245694"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.247194"], ["updated_at", "2020-04-22 05:37:08.247194"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.248152"], ["updated_at", "2020-04-22 05:37:08.248152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.250087"], ["updated_at", "2020-04-22 05:37:08.250087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.250833"], ["updated_at", "2020-04-22 05:37:08.250833"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.253231"], ["updated_at", "2020-04-22 05:37:08.253231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_332776


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.262720"], ["updated_at", "2020-04-22 05:37:08.262720"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.265563"], ["updated_at", "2020-04-22 05:37:08.265563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.267531"], ["updated_at", "2020-04-22 05:37:08.267531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_545


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.272479"], ["updated_at", "2020-04-22 05:37:08.272479"]]
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.277414"], ["updated_at", "2020-04-22 05:37:08.277414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_700010


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.279552"], ["updated_at", "2020-04-22 05:37:08.279552"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.279519"], ["updated_at", "2020-04-22 05:37:08.279519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.281989"], ["updated_at", "2020-04-22 05:37:08.281989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.283767"], ["updated_at", "2020-04-22 05:37:08.283767"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_172


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.290679"], ["updated_at", "2020-04-22 05:37:08.290679"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.293772"], ["updated_at", "2020-04-22 05:37:08.293772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.295876"], ["updated_at", "2020-04-22 05:37:08.295876"]]

CommentTest: test_868509


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.298470"], ["updated_at", "2020-04-22 05:37:08.298470"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.301002"], ["updated_at", "2020-04-22 05:37:08.301002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.303201"], ["updated_at", "2020-04-22 05:37:08.303201"]]
Course Create (109.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.195357"], ["updated_at", "2020-04-22 05:37:08.195357"]]
 (0.1ms)  begin transaction

CommentTest: test_254


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.306579"], ["updated_at", "2020-04-22 05:37:08.306579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.308316"], ["updated_at", "2020-04-22 05:37:08.308316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_285904



CommentTest: test_683680


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.318665"], ["updated_at", "2020-04-22 05:37:08.318665"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.319448"], ["updated_at", "2020-04-22 05:37:08.319448"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.321620"], ["updated_at", "2020-04-22 05:37:08.321620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.322317"], ["updated_at", "2020-04-22 05:37:08.322317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.323805"], ["updated_at", "2020-04-22 05:37:08.323805"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.324672"], ["updated_at", "2020-04-22 05:37:08.324672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_478630


Course Create (24.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.308050"], ["updated_at", "2020-04-22 05:37:08.308050"]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.334547"], ["updated_at", "2020-04-22 05:37:08.334547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_405184


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.336302"], ["updated_at", "2020-04-22 05:37:08.336302"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.337870"], ["updated_at", "2020-04-22 05:37:08.337870"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.346460"], ["updated_at", "2020-04-22 05:37:08.346460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_685


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.348481"], ["updated_at", "2020-04-22 05:37:08.348481"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.349006"], ["updated_at", "2020-04-22 05:37:08.349006"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.351970"], ["updated_at", "2020-04-22 05:37:08.351970"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.354144"], ["updated_at", "2020-04-22 05:37:08.354144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_829


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.364955"], ["updated_at", "2020-04-22 05:37:08.364955"]]
 (3.2ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.367182"], ["updated_at", "2020-04-22 05:37:08.367182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_75926


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.369114"], ["updated_at", "2020-04-22 05:37:08.369114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.369828"], ["updated_at", "2020-04-22 05:37:08.369828"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.376623"], ["updated_at", "2020-04-22 05:37:08.376623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_419


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.379080"], ["updated_at", "2020-04-22 05:37:08.379080"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.379637"], ["updated_at", "2020-04-22 05:37:08.379637"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.381854"], ["updated_at", "2020-04-22 05:37:08.381854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.384190"], ["updated_at", "2020-04-22 05:37:08.384190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_410415


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.392514"], ["updated_at", "2020-04-22 05:37:08.392514"]]
 (0.1ms)  begin transaction

CommentTest: test_922


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.396366"], ["updated_at", "2020-04-22 05:37:08.396366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.397791"], ["updated_at", "2020-04-22 05:37:08.397791"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.398635"], ["updated_at", "2020-04-22 05:37:08.398635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.400495"], ["updated_at", "2020-04-22 05:37:08.400495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.402313"], ["updated_at", "2020-04-22 05:37:08.402313"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.9ms)  rollback transaction

CommentTest: test_384276


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.412000"], ["updated_at", "2020-04-22 05:37:08.412000"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.414277"], ["updated_at", "2020-04-22 05:37:08.414277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.415629"], ["updated_at", "2020-04-22 05:37:08.415629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_856


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (83.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.333957"], ["updated_at", "2020-04-22 05:37:08.333957"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.418857"], ["updated_at", "2020-04-22 05:37:08.418857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.420505"], ["updated_at", "2020-04-22 05:37:08.420505"]]
 (4.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_220415


Course Create (12.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.417448"], ["updated_at", "2020-04-22 05:37:08.417448"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_610347


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.431762"], ["updated_at", "2020-04-22 05:37:08.431762"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.433197"], ["updated_at", "2020-04-22 05:37:08.433197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.434846"], ["updated_at", "2020-04-22 05:37:08.434846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.435296"], ["updated_at", "2020-04-22 05:37:08.435296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.436793"], ["updated_at", "2020-04-22 05:37:08.436793"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (2.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_577111


Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.433766"], ["updated_at", "2020-04-22 05:37:08.433766"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.446965"], ["updated_at", "2020-04-22 05:37:08.446965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.446152"], ["updated_at", "2020-04-22 05:37:08.446152"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.448999"], ["updated_at", "2020-04-22 05:37:08.448999"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.449978"], ["updated_at", "2020-04-22 05:37:08.449978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.451848"], ["updated_at", "2020-04-22 05:37:08.451848"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_933931


 (0.1ms)  begin transaction

CommentTest: test_807


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.458530"], ["updated_at", "2020-04-22 05:37:08.458530"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.461203"], ["updated_at", "2020-04-22 05:37:08.461203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.463404"], ["updated_at", "2020-04-22 05:37:08.463404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_765048


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_9355


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.469926"], ["updated_at", "2020-04-22 05:37:08.469926"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.472061"], ["updated_at", "2020-04-22 05:37:08.472061"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.475549"], ["updated_at", "2020-04-22 05:37:08.475549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.475801"], ["updated_at", "2020-04-22 05:37:08.475801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.478224"], ["updated_at", "2020-04-22 05:37:08.478224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.479593"], ["updated_at", "2020-04-22 05:37:08.479593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_72537


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.487782"], ["updated_at", "2020-04-22 05:37:08.487782"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.491004"], ["updated_at", "2020-04-22 05:37:08.491004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_989372


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.492950"], ["updated_at", "2020-04-22 05:37:08.492950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.493767"], ["updated_at", "2020-04-22 05:37:08.493767"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.497851"], ["updated_at", "2020-04-22 05:37:08.497851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.499689"], ["updated_at", "2020-04-22 05:37:08.499689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_945711


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.502856"], ["updated_at", "2020-04-22 05:37:08.502856"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.506172"], ["updated_at", "2020-04-22 05:37:08.506172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.508514"], ["updated_at", "2020-04-22 05:37:08.508514"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_209228


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.513242"], ["updated_at", "2020-04-22 05:37:08.513242"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.515769"], ["updated_at", "2020-04-22 05:37:08.515769"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_705201


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.518023"], ["updated_at", "2020-04-22 05:37:08.518023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.519229"], ["updated_at", "2020-04-22 05:37:08.519229"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.521598"], ["updated_at", "2020-04-22 05:37:08.521598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.523357"], ["updated_at", "2020-04-22 05:37:08.523357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_886031


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.526588"], ["updated_at", "2020-04-22 05:37:08.526588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_685510


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.529681"], ["updated_at", "2020-04-22 05:37:08.529681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.531777"], ["updated_at", "2020-04-22 05:37:08.531777"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.532864"], ["updated_at", "2020-04-22 05:37:08.532864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.534467"], ["updated_at", "2020-04-22 05:37:08.534467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.536287"], ["updated_at", "2020-04-22 05:37:08.536287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (5.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_963987


 (0.1ms)  begin transaction

CommentTest: test_999409


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.549226"], ["updated_at", "2020-04-22 05:37:08.549226"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.548732"], ["updated_at", "2020-04-22 05:37:08.548732"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.551111"], ["updated_at", "2020-04-22 05:37:08.551111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.551163"], ["updated_at", "2020-04-22 05:37:08.551163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.552859"], ["updated_at", "2020-04-22 05:37:08.552859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.552846"], ["updated_at", "2020-04-22 05:37:08.552846"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_807644


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.561647"], ["updated_at", "2020-04-22 05:37:08.561647"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.565139"], ["updated_at", "2020-04-22 05:37:08.565139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.567496"], ["updated_at", "2020-04-22 05:37:08.567496"]]
 (1.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_177623


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_418151


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.575234"], ["updated_at", "2020-04-22 05:37:08.575234"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.578498"], ["updated_at", "2020-04-22 05:37:08.578498"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.579217"], ["updated_at", "2020-04-22 05:37:08.579217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.581105"], ["updated_at", "2020-04-22 05:37:08.581105"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.581105"], ["updated_at", "2020-04-22 05:37:08.581105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.583000"], ["updated_at", "2020-04-22 05:37:08.583000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (1.1ms)  rollback transaction
Course Create (130.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.459349"], ["updated_at", "2020-04-22 05:37:08.459349"]]
 (0.1ms)  begin transaction

CommentTest: test_133685


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.592282"], ["updated_at", "2020-04-22 05:37:08.592282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_907441


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.595147"], ["updated_at", "2020-04-22 05:37:08.595147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.595533"], ["updated_at", "2020-04-22 05:37:08.595533"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.598448"], ["updated_at", "2020-04-22 05:37:08.598448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.600408"], ["updated_at", "2020-04-22 05:37:08.600408"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
Course Create (10.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.593118"], ["updated_at", "2020-04-22 05:37:08.593118"]]

CommentTest: test_349


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.605266"], ["updated_at", "2020-04-22 05:37:08.605266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.607722"], ["updated_at", "2020-04-22 05:37:08.607722"]]
 (0.1ms)  begin transaction

CommentTest: test_742243


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.609825"], ["updated_at", "2020-04-22 05:37:08.609825"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.613668"], ["updated_at", "2020-04-22 05:37:08.613668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_228


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.615613"], ["updated_at", "2020-04-22 05:37:08.615613"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.616366"], ["updated_at", "2020-04-22 05:37:08.616366"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.618915"], ["updated_at", "2020-04-22 05:37:08.618915"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.620836"], ["updated_at", "2020-04-22 05:37:08.620836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_309566


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (23.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.605585"], ["updated_at", "2020-04-22 05:37:08.605585"]]
 (0.1ms)  begin transaction

CommentTest: test_703726


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.632474"], ["updated_at", "2020-04-22 05:37:08.632474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.627773"], ["updated_at", "2020-04-22 05:37:08.627773"]]
Recording Create (4.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.635408"], ["updated_at", "2020-04-22 05:37:08.635408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.637868"], ["updated_at", "2020-04-22 05:37:08.637868"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.647645"], ["updated_at", "2020-04-22 05:37:08.647645"]]
 (0.1ms)  begin transaction

CommentTest: test_294

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.649767"], ["updated_at", "2020-04-22 05:37:08.649767"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.653115"], ["updated_at", "2020-04-22 05:37:08.653115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_207319


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.655246"], ["updated_at", "2020-04-22 05:37:08.655246"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.655885"], ["updated_at", "2020-04-22 05:37:08.655885"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.659013"], ["updated_at", "2020-04-22 05:37:08.659013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.661971"], ["updated_at", "2020-04-22 05:37:08.661971"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  begin transaction

CommentTest: test_16


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.666797"], ["updated_at", "2020-04-22 05:37:08.666797"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_305336


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.669248"], ["updated_at", "2020-04-22 05:37:08.669248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.670852"], ["updated_at", "2020-04-22 05:37:08.670852"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.671776"], ["updated_at", "2020-04-22 05:37:08.671776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.674563"], ["updated_at", "2020-04-22 05:37:08.674563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.676697"], ["updated_at", "2020-04-22 05:37:08.676697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_497


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.681658"], ["updated_at", "2020-04-22 05:37:08.681658"]]
 (0.1ms)  begin transaction

CommentTest: test_805306


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.686512"], ["updated_at", "2020-04-22 05:37:08.686512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.687748"], ["updated_at", "2020-04-22 05:37:08.687748"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.688963"], ["updated_at", "2020-04-22 05:37:08.688963"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.690886"], ["updated_at", "2020-04-22 05:37:08.690886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.693814"], ["updated_at", "2020-04-22 05:37:08.693814"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_814


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.699276"], ["updated_at", "2020-04-22 05:37:08.699276"]]
 (0.1ms)  begin transaction

CommentTest: test_990740


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.701794"], ["updated_at", "2020-04-22 05:37:08.701794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.702184"], ["updated_at", "2020-04-22 05:37:08.702184"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.704864"], ["updated_at", "2020-04-22 05:37:08.704864"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.705412"], ["updated_at", "2020-04-22 05:37:08.705412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.708209"], ["updated_at", "2020-04-22 05:37:08.708209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_701


 (0.1ms)  begin transaction

CommentTest: test_732484


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.715357"], ["updated_at", "2020-04-22 05:37:08.715357"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.716085"], ["updated_at", "2020-04-22 05:37:08.716085"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.718235"], ["updated_at", "2020-04-22 05:37:08.718235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.718429"], ["updated_at", "2020-04-22 05:37:08.718429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.720281"], ["updated_at", "2020-04-22 05:37:08.720281"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.720279"], ["updated_at", "2020-04-22 05:37:08.720279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_833


 (0.1ms)  begin transaction

CommentTest: test_179286


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.729321"], ["updated_at", "2020-04-22 05:37:08.729321"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.729658"], ["updated_at", "2020-04-22 05:37:08.729658"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.731121"], ["updated_at", "2020-04-22 05:37:08.731121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.732309"], ["updated_at", "2020-04-22 05:37:08.732309"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.732192"], ["updated_at", "2020-04-22 05:37:08.732192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.734110"], ["updated_at", "2020-04-22 05:37:08.734110"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_222

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.740150"], ["updated_at", "2020-04-22 05:37:08.740150"]]
 (0.1ms)  begin transaction

CommentTest: test_687730


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.742918"], ["updated_at", "2020-04-22 05:37:08.742918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.744187"], ["updated_at", "2020-04-22 05:37:08.744187"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.745923"], ["updated_at", "2020-04-22 05:37:08.745923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.747378"], ["updated_at", "2020-04-22 05:37:08.747378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.749262"], ["updated_at", "2020-04-22 05:37:08.749262"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_670


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.754176"], ["updated_at", "2020-04-22 05:37:08.754176"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.759329"], ["updated_at", "2020-04-22 05:37:08.759329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.761664"], ["updated_at", "2020-04-22 05:37:08.761664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_414


Course Create (136.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.633774"], ["updated_at", "2020-04-22 05:37:08.633774"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.772692"], ["updated_at", "2020-04-22 05:37:08.772692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_703974


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.775233"], ["updated_at", "2020-04-22 05:37:08.775233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.776886"], ["updated_at", "2020-04-22 05:37:08.776886"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.780713"], ["updated_at", "2020-04-22 05:37:08.780713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.782707"], ["updated_at", "2020-04-22 05:37:08.782707"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_176139


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.785774"], ["updated_at", "2020-04-22 05:37:08.785774"]]
 (6.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.794937"], ["updated_at", "2020-04-22 05:37:08.794937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_921093


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.797330"], ["updated_at", "2020-04-22 05:37:08.797330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.798561"], ["updated_at", "2020-04-22 05:37:08.798561"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.800853"], ["updated_at", "2020-04-22 05:37:08.800853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.802786"], ["updated_at", "2020-04-22 05:37:08.802786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_769329

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.806513"], ["updated_at", "2020-04-22 05:37:08.806513"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.810236"], ["updated_at", "2020-04-22 05:37:08.810236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_460881


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.813377"], ["updated_at", "2020-04-22 05:37:08.813377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.814421"], ["updated_at", "2020-04-22 05:37:08.814421"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_974715


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.825715"], ["updated_at", "2020-04-22 05:37:08.825715"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.831177"], ["updated_at", "2020-04-22 05:37:08.831177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.820198"], ["updated_at", "2020-04-22 05:37:08.820198"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.834227"], ["updated_at", "2020-04-22 05:37:08.834227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.835993"], ["updated_at", "2020-04-22 05:37:08.835993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_260214


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.843602"], ["updated_at", "2020-04-22 05:37:08.843602"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.846130"], ["updated_at", "2020-04-22 05:37:08.846130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_659148


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.848252"], ["updated_at", "2020-04-22 05:37:08.848252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.849462"], ["updated_at", "2020-04-22 05:37:08.849462"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.853761"], ["updated_at", "2020-04-22 05:37:08.853761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_662347


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.856313"], ["updated_at", "2020-04-22 05:37:08.856313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.857150"], ["updated_at", "2020-04-22 05:37:08.857150"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.859727"], ["updated_at", "2020-04-22 05:37:08.859727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.861937"], ["updated_at", "2020-04-22 05:37:08.861937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_231365


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.865038"], ["updated_at", "2020-04-22 05:37:08.865038"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.867268"], ["updated_at", "2020-04-22 05:37:08.867268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.869381"], ["updated_at", "2020-04-22 05:37:08.869381"]]
 (3.4ms)  rollback transaction
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_312293


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.875468"], ["updated_at", "2020-04-22 05:37:08.875468"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_520695


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.878448"], ["updated_at", "2020-04-22 05:37:08.878448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.880691"], ["updated_at", "2020-04-22 05:37:08.880691"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.880395"], ["updated_at", "2020-04-22 05:37:08.880395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.882835"], ["updated_at", "2020-04-22 05:37:08.882835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.884718"], ["updated_at", "2020-04-22 05:37:08.884718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (114.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.771702"], ["updated_at", "2020-04-22 05:37:08.771702"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_404280


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.888682"], ["updated_at", "2020-04-22 05:37:08.888682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.890793"], ["updated_at", "2020-04-22 05:37:08.890793"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_320560


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.897663"], ["updated_at", "2020-04-22 05:37:08.897663"]]
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.888769"], ["updated_at", "2020-04-22 05:37:08.888769"]]
 (0.1ms)  begin transaction

CommentTest: test_679


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.900058"], ["updated_at", "2020-04-22 05:37:08.900058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.900638"], ["updated_at", "2020-04-22 05:37:08.900638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.901985"], ["updated_at", "2020-04-22 05:37:08.901985"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.902384"], ["updated_at", "2020-04-22 05:37:08.902384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_272685


 (0.2ms)  begin transaction

CommentTest: test_255986


Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.901087"], ["updated_at", "2020-04-22 05:37:08.901087"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.911305"], ["updated_at", "2020-04-22 05:37:08.911305"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.913703"], ["updated_at", "2020-04-22 05:37:08.913703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.914294"], ["updated_at", "2020-04-22 05:37:08.914294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.916087"], ["updated_at", "2020-04-22 05:37:08.916087"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.915626"], ["updated_at", "2020-04-22 05:37:08.915626"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_221801


 (0.1ms)  begin transaction

CommentTest: test_278


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.931244"], ["updated_at", "2020-04-22 05:37:08.931244"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.931843"], ["updated_at", "2020-04-22 05:37:08.931843"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.933913"], ["updated_at", "2020-04-22 05:37:08.933913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.934302"], ["updated_at", "2020-04-22 05:37:08.934302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.935882"], ["updated_at", "2020-04-22 05:37:08.935882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.936686"], ["updated_at", "2020-04-22 05:37:08.936686"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_511630


 (0.1ms)  begin transaction

CommentTest: test_542


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.946531"], ["updated_at", "2020-04-22 05:37:08.946531"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.946748"], ["updated_at", "2020-04-22 05:37:08.946748"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.949181"], ["updated_at", "2020-04-22 05:37:08.949181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.949283"], ["updated_at", "2020-04-22 05:37:08.949283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.951213"], ["updated_at", "2020-04-22 05:37:08.951213"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.951159"], ["updated_at", "2020-04-22 05:37:08.951159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_954049


 (0.1ms)  begin transaction

CommentTest: test_820


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.961358"], ["updated_at", "2020-04-22 05:37:08.961358"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.961975"], ["updated_at", "2020-04-22 05:37:08.961975"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.964255"], ["updated_at", "2020-04-22 05:37:08.964255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.964811"], ["updated_at", "2020-04-22 05:37:08.964811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.966303"], ["updated_at", "2020-04-22 05:37:08.966303"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.966817"], ["updated_at", "2020-04-22 05:37:08.966817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (60.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.912176"], ["updated_at", "2020-04-22 05:37:08.912176"]]
 (0.1ms)  begin transaction

CommentTest: test_796


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.974804"], ["updated_at", "2020-04-22 05:37:08.974804"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.977153"], ["updated_at", "2020-04-22 05:37:08.977153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_348704


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_286831


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.983608"], ["updated_at", "2020-04-22 05:37:08.983608"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.985669"], ["updated_at", "2020-04-22 05:37:08.985669"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.986611"], ["updated_at", "2020-04-22 05:37:08.986611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:08.988115"], ["updated_at", "2020-04-22 05:37:08.988115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.988960"], ["updated_at", "2020-04-22 05:37:08.988960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:08.990082"], ["updated_at", "2020-04-22 05:37:08.990082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_832016


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_133587


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.997765"], ["updated_at", "2020-04-22 05:37:08.997765"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.000077"], ["updated_at", "2020-04-22 05:37:09.000077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.999766"], ["updated_at", "2020-04-22 05:37:08.999766"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.001996"], ["updated_at", "2020-04-22 05:37:09.001996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.003113"], ["updated_at", "2020-04-22 05:37:09.003113"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.005042"], ["updated_at", "2020-04-22 05:37:09.005042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_38744


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.011652"], ["updated_at", "2020-04-22 05:37:09.011652"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.014748"], ["updated_at", "2020-04-22 05:37:09.014748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.016268"], ["updated_at", "2020-04-22 05:37:09.016268"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_748796


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.023682"], ["updated_at", "2020-04-22 05:37:09.023682"]]
 (0.1ms)  begin transaction

CommentTest: test_835218


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.026605"], ["updated_at", "2020-04-22 05:37:09.026605"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.028758"], ["updated_at", "2020-04-22 05:37:09.028758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.030685"], ["updated_at", "2020-04-22 05:37:09.030685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.032720"], ["updated_at", "2020-04-22 05:37:09.032720"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.032720"], ["updated_at", "2020-04-22 05:37:09.032720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (61.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.977204"], ["updated_at", "2020-04-22 05:37:08.977204"]]
 (0.1ms)  begin transaction

CommentTest: test_620760


 (4.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.040939"], ["updated_at", "2020-04-22 05:37:09.040939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_144747


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.044010"], ["updated_at", "2020-04-22 05:37:09.044010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.046105"], ["updated_at", "2020-04-22 05:37:09.046105"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.049128"], ["updated_at", "2020-04-22 05:37:09.049128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.051114"], ["updated_at", "2020-04-22 05:37:09.051114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_901


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.041494"], ["updated_at", "2020-04-22 05:37:09.041494"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.056498"], ["updated_at", "2020-04-22 05:37:09.056498"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.058916"], ["updated_at", "2020-04-22 05:37:09.058916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_298864


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_308013


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.069645"], ["updated_at", "2020-04-22 05:37:09.069645"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.071450"], ["updated_at", "2020-04-22 05:37:09.071450"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.072600"], ["updated_at", "2020-04-22 05:37:09.072600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.074281"], ["updated_at", "2020-04-22 05:37:09.074281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.074295"], ["updated_at", "2020-04-22 05:37:09.074295"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.075897"], ["updated_at", "2020-04-22 05:37:09.075897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_274622



CommentTest: test_237082


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.086109"], ["updated_at", "2020-04-22 05:37:09.086109"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.086155"], ["updated_at", "2020-04-22 05:37:09.086155"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.090647"], ["updated_at", "2020-04-22 05:37:09.090647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.092543"], ["updated_at", "2020-04-22 05:37:09.092543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.092365"], ["updated_at", "2020-04-22 05:37:09.092365"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.099186"], ["updated_at", "2020-04-22 05:37:09.099186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_960491


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.103173"], ["updated_at", "2020-04-22 05:37:09.103173"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.106141"], ["updated_at", "2020-04-22 05:37:09.106141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (940.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:08.166300"], ["updated_at", "2020-04-22 05:37:08.166300"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.108389"], ["updated_at", "2020-04-22 05:37:09.108389"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.109243"], ["updated_at", "2020-04-22 05:37:09.109243"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.110992"], ["updated_at", "2020-04-22 05:37:09.110992"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_508611


 (0.1ms)  begin transaction

CommentTest: test_137


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.119339"], ["updated_at", "2020-04-22 05:37:09.119339"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.119641"], ["updated_at", "2020-04-22 05:37:09.119641"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.122128"], ["updated_at", "2020-04-22 05:37:09.122128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.122131"], ["updated_at", "2020-04-22 05:37:09.122131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_456640


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.124661"], ["updated_at", "2020-04-22 05:37:09.124661"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.124776"], ["updated_at", "2020-04-22 05:37:09.124776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_663


 (0.1ms)  begin transaction

CommentTest: test_424135


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.133297"], ["updated_at", "2020-04-22 05:37:09.133297"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.134371"], ["updated_at", "2020-04-22 05:37:09.134371"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.135545"], ["updated_at", "2020-04-22 05:37:09.135545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.137169"], ["updated_at", "2020-04-22 05:37:09.137169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.136766"], ["updated_at", "2020-04-22 05:37:09.136766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.140987"], ["updated_at", "2020-04-22 05:37:09.140987"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_223


Course Create (22.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.124925"], ["updated_at", "2020-04-22 05:37:09.124925"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.148829"], ["updated_at", "2020-04-22 05:37:09.148829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_289027


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.151398"], ["updated_at", "2020-04-22 05:37:09.151398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.152776"], ["updated_at", "2020-04-22 05:37:09.152776"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.155255"], ["updated_at", "2020-04-22 05:37:09.155255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.157363"], ["updated_at", "2020-04-22 05:37:09.157363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_439149


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.161510"], ["updated_at", "2020-04-22 05:37:09.161510"]]
 (0.6ms)  rollback transaction
Course Create (123.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.053703"], ["updated_at", "2020-04-22 05:37:09.053703"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.164995"], ["updated_at", "2020-04-22 05:37:09.164995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.185591"], ["updated_at", "2020-04-22 05:37:09.185591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.187487"], ["updated_at", "2020-04-22 05:37:09.187487"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.187512"], ["updated_at", "2020-04-22 05:37:09.187512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_591242


 (0.7ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.197172"], ["updated_at", "2020-04-22 05:37:09.197172"]]

CommentTest: test_723


 (0.1ms)  begin transaction

CommentTest: test_315045


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.200086"], ["updated_at", "2020-04-22 05:37:09.200086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.200299"], ["updated_at", "2020-04-22 05:37:09.200299"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.202191"], ["updated_at", "2020-04-22 05:37:09.202191"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.202693"], ["updated_at", "2020-04-22 05:37:09.202693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.204698"], ["updated_at", "2020-04-22 05:37:09.204698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_448219


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_524448


Course Create (14.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.199888"], ["updated_at", "2020-04-22 05:37:09.199888"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.216696"], ["updated_at", "2020-04-22 05:37:09.216696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.216193"], ["updated_at", "2020-04-22 05:37:09.216193"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.218481"], ["updated_at", "2020-04-22 05:37:09.218481"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.218811"], ["updated_at", "2020-04-22 05:37:09.218811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.220941"], ["updated_at", "2020-04-22 05:37:09.220941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_270


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.228436"], ["updated_at", "2020-04-22 05:37:09.228436"]]
 (0.1ms)  begin transaction

CommentTest: test_89988


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.232428"], ["updated_at", "2020-04-22 05:37:09.232428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.233392"], ["updated_at", "2020-04-22 05:37:09.233392"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.234478"], ["updated_at", "2020-04-22 05:37:09.234478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.236425"], ["updated_at", "2020-04-22 05:37:09.236425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.238650"], ["updated_at", "2020-04-22 05:37:09.238650"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_384


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.243871"], ["updated_at", "2020-04-22 05:37:09.243871"]]
 (0.1ms)  begin transaction

CommentTest: test_900203


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.246834"], ["updated_at", "2020-04-22 05:37:09.246834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.247571"], ["updated_at", "2020-04-22 05:37:09.247571"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.248814"], ["updated_at", "2020-04-22 05:37:09.248814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.250004"], ["updated_at", "2020-04-22 05:37:09.250004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_55


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.253969"], ["updated_at", "2020-04-22 05:37:09.253969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.257690"], ["updated_at", "2020-04-22 05:37:09.257690"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.260440"], ["updated_at", "2020-04-22 05:37:09.260440"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.262702"], ["updated_at", "2020-04-22 05:37:09.262702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_344554


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.268159"], ["updated_at", "2020-04-22 05:37:09.268159"]]
 (0.1ms)  begin transaction

CommentTest: test_996


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.271334"], ["updated_at", "2020-04-22 05:37:09.271334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.271615"], ["updated_at", "2020-04-22 05:37:09.271615"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.273421"], ["updated_at", "2020-04-22 05:37:09.273421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.274299"], ["updated_at", "2020-04-22 05:37:09.274299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.276505"], ["updated_at", "2020-04-22 05:37:09.276505"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_109387


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.283184"], ["updated_at", "2020-04-22 05:37:09.283184"]]
 (0.1ms)  begin transaction

CommentTest: test_869


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.286845"], ["updated_at", "2020-04-22 05:37:09.286845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.286976"], ["updated_at", "2020-04-22 05:37:09.286976"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.290438"], ["updated_at", "2020-04-22 05:37:09.290438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.291571"], ["updated_at", "2020-04-22 05:37:09.291571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.293504"], ["updated_at", "2020-04-22 05:37:09.293504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_944750


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_880

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.300405"], ["updated_at", "2020-04-22 05:37:09.300405"]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.303219"], ["updated_at", "2020-04-22 05:37:09.303219"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.303715"], ["updated_at", "2020-04-22 05:37:09.303715"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.306684"], ["updated_at", "2020-04-22 05:37:09.306684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.306596"], ["updated_at", "2020-04-22 05:37:09.306596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.308854"], ["updated_at", "2020-04-22 05:37:09.308854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_132


 (0.1ms)  begin transaction

CommentTest: test_589659


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.319260"], ["updated_at", "2020-04-22 05:37:09.319260"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.320584"], ["updated_at", "2020-04-22 05:37:09.320584"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.323118"], ["updated_at", "2020-04-22 05:37:09.323118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.324041"], ["updated_at", "2020-04-22 05:37:09.324041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.324960"], ["updated_at", "2020-04-22 05:37:09.324960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.325961"], ["updated_at", "2020-04-22 05:37:09.325961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_976


 (0.1ms)  begin transaction

CommentTest: test_950532


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.334802"], ["updated_at", "2020-04-22 05:37:09.334802"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.335170"], ["updated_at", "2020-04-22 05:37:09.335170"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.337233"], ["updated_at", "2020-04-22 05:37:09.337233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.337567"], ["updated_at", "2020-04-22 05:37:09.337567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.340070"], ["updated_at", "2020-04-22 05:37:09.340070"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.340660"], ["updated_at", "2020-04-22 05:37:09.340660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_691


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_397356


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.350775"], ["updated_at", "2020-04-22 05:37:09.350775"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.353422"], ["updated_at", "2020-04-22 05:37:09.353422"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.352847"], ["updated_at", "2020-04-22 05:37:09.352847"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.356041"], ["updated_at", "2020-04-22 05:37:09.356041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.356507"], ["updated_at", "2020-04-22 05:37:09.356507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.361645"], ["updated_at", "2020-04-22 05:37:09.361645"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_607


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.365598"], ["updated_at", "2020-04-22 05:37:09.365598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.367587"], ["updated_at", "2020-04-22 05:37:09.367587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.369446"], ["updated_at", "2020-04-22 05:37:09.369446"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_976686


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_440


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.378588"], ["updated_at", "2020-04-22 05:37:09.378588"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.380351"], ["updated_at", "2020-04-22 05:37:09.380351"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.381503"], ["updated_at", "2020-04-22 05:37:09.381503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.383957"], ["updated_at", "2020-04-22 05:37:09.383957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.383678"], ["updated_at", "2020-04-22 05:37:09.383678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.386213"], ["updated_at", "2020-04-22 05:37:09.386213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_913



CommentTest: test_922129


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.398468"], ["updated_at", "2020-04-22 05:37:09.398468"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.398461"], ["updated_at", "2020-04-22 05:37:09.398461"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.400751"], ["updated_at", "2020-04-22 05:37:09.400751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.402500"], ["updated_at", "2020-04-22 05:37:09.402500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.402469"], ["updated_at", "2020-04-22 05:37:09.402469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.404484"], ["updated_at", "2020-04-22 05:37:09.404484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_467


Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.412558"], ["updated_at", "2020-04-22 05:37:09.412558"]]
 (0.1ms)  begin transaction

CommentTest: test_775775


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.415452"], ["updated_at", "2020-04-22 05:37:09.415452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.415806"], ["updated_at", "2020-04-22 05:37:09.415806"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.417914"], ["updated_at", "2020-04-22 05:37:09.417914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.418802"], ["updated_at", "2020-04-22 05:37:09.418802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.421637"], ["updated_at", "2020-04-22 05:37:09.421637"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_457


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.432630"], ["updated_at", "2020-04-22 05:37:09.432630"]]
 (0.1ms)  begin transaction

CommentTest: test_2920


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.435105"], ["updated_at", "2020-04-22 05:37:09.435105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.435740"], ["updated_at", "2020-04-22 05:37:09.435740"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.436957"], ["updated_at", "2020-04-22 05:37:09.436957"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.438481"], ["updated_at", "2020-04-22 05:37:09.438481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.442518"], ["updated_at", "2020-04-22 05:37:09.442518"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_216


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.450713"], ["updated_at", "2020-04-22 05:37:09.450713"]]

CommentTest: test_3277


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.453215"], ["updated_at", "2020-04-22 05:37:09.453215"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.453599"], ["updated_at", "2020-04-22 05:37:09.453599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.458792"], ["updated_at", "2020-04-22 05:37:09.458792"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.458791"], ["updated_at", "2020-04-22 05:37:09.458791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.461283"], ["updated_at", "2020-04-22 05:37:09.461283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_627692


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_57


Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.470274"], ["updated_at", "2020-04-22 05:37:09.470274"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.474148"], ["updated_at", "2020-04-22 05:37:09.474148"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.475321"], ["updated_at", "2020-04-22 05:37:09.475321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.478585"], ["updated_at", "2020-04-22 05:37:09.478585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.480701"], ["updated_at", "2020-04-22 05:37:09.480701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.482703"], ["updated_at", "2020-04-22 05:37:09.482703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_274571


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.488150"], ["updated_at", "2020-04-22 05:37:09.488150"]]
 (0.1ms)  begin transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.490825"], ["updated_at", "2020-04-22 05:37:09.490825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_891


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.493847"], ["updated_at", "2020-04-22 05:37:09.493847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.494257"], ["updated_at", "2020-04-22 05:37:09.494257"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.497980"], ["updated_at", "2020-04-22 05:37:09.497980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.500052"], ["updated_at", "2020-04-22 05:37:09.500052"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_914258


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.502300"], ["updated_at", "2020-04-22 05:37:09.502300"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.505184"], ["updated_at", "2020-04-22 05:37:09.505184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.507861"], ["updated_at", "2020-04-22 05:37:09.507861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_838


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.516679"], ["updated_at", "2020-04-22 05:37:09.516679"]]
 (0.1ms)  begin transaction

CommentTest: test_113185


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.520187"], ["updated_at", "2020-04-22 05:37:09.520187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.526050"], ["updated_at", "2020-04-22 05:37:09.526050"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.525671"], ["updated_at", "2020-04-22 05:37:09.525671"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.532210"], ["updated_at", "2020-04-22 05:37:09.532210"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_4


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.534272"], ["updated_at", "2020-04-22 05:37:09.534272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.535934"], ["updated_at", "2020-04-22 05:37:09.535934"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.540476"], ["updated_at", "2020-04-22 05:37:09.540476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.542717"], ["updated_at", "2020-04-22 05:37:09.542717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_248083


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.548124"], ["updated_at", "2020-04-22 05:37:09.548124"]]
 (0.1ms)  begin transaction

CommentTest: test_452


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.550840"], ["updated_at", "2020-04-22 05:37:09.550840"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.552035"], ["updated_at", "2020-04-22 05:37:09.552035"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.552985"], ["updated_at", "2020-04-22 05:37:09.552985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.555285"], ["updated_at", "2020-04-22 05:37:09.555285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.558036"], ["updated_at", "2020-04-22 05:37:09.558036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_801390


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.570782"], ["updated_at", "2020-04-22 05:37:09.570782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.573422"], ["updated_at", "2020-04-22 05:37:09.573422"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_103


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.575304"], ["updated_at", "2020-04-22 05:37:09.575304"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.575702"], ["updated_at", "2020-04-22 05:37:09.575702"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.582028"], ["updated_at", "2020-04-22 05:37:09.582028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_230202


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.584108"], ["updated_at", "2020-04-22 05:37:09.584108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.585781"], ["updated_at", "2020-04-22 05:37:09.585781"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.589331"], ["updated_at", "2020-04-22 05:37:09.589331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_11


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.593243"], ["updated_at", "2020-04-22 05:37:09.593243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.596834"], ["updated_at", "2020-04-22 05:37:09.596834"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.600239"], ["updated_at", "2020-04-22 05:37:09.600239"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.602318"], ["updated_at", "2020-04-22 05:37:09.602318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_731468


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.606040"], ["updated_at", "2020-04-22 05:37:09.606040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.608784"], ["updated_at", "2020-04-22 05:37:09.608784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  begin transaction

CommentTest: test_463


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.612381"], ["updated_at", "2020-04-22 05:37:09.612381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.613631"], ["updated_at", "2020-04-22 05:37:09.613631"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.618683"], ["updated_at", "2020-04-22 05:37:09.618683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.621940"], ["updated_at", "2020-04-22 05:37:09.621940"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_459086


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.626356"], ["updated_at", "2020-04-22 05:37:09.626356"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.630238"], ["updated_at", "2020-04-22 05:37:09.630238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_143


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.632676"], ["updated_at", "2020-04-22 05:37:09.632676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.634509"], ["updated_at", "2020-04-22 05:37:09.634509"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.637540"], ["updated_at", "2020-04-22 05:37:09.637540"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.640230"], ["updated_at", "2020-04-22 05:37:09.640230"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.6ms)  rollback transaction

CommentTest: test_828637


 (0.1ms)  begin transaction

CommentTest: test_52


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.649541"], ["updated_at", "2020-04-22 05:37:09.649541"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.650347"], ["updated_at", "2020-04-22 05:37:09.650347"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.652076"], ["updated_at", "2020-04-22 05:37:09.652076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.653006"], ["updated_at", "2020-04-22 05:37:09.653006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.654563"], ["updated_at", "2020-04-22 05:37:09.654563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.657422"], ["updated_at", "2020-04-22 05:37:09.657422"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_709


 (0.1ms)  begin transaction

CommentTest: test_965824


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.668475"], ["updated_at", "2020-04-22 05:37:09.668475"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.669012"], ["updated_at", "2020-04-22 05:37:09.669012"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.671605"], ["updated_at", "2020-04-22 05:37:09.671605"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.672569"], ["updated_at", "2020-04-22 05:37:09.672569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.675047"], ["updated_at", "2020-04-22 05:37:09.675047"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.675803"], ["updated_at", "2020-04-22 05:37:09.675803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_222461


 (0.1ms)  begin transaction

CommentTest: test_267


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.687084"], ["updated_at", "2020-04-22 05:37:09.687084"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.688289"], ["updated_at", "2020-04-22 05:37:09.688289"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.692566"], ["updated_at", "2020-04-22 05:37:09.692566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.692720"], ["updated_at", "2020-04-22 05:37:09.692720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.696287"], ["updated_at", "2020-04-22 05:37:09.696287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.697075"], ["updated_at", "2020-04-22 05:37:09.697075"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_410218


 (0.1ms)  begin transaction

CommentTest: test_326


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.709554"], ["updated_at", "2020-04-22 05:37:09.709554"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.712359"], ["updated_at", "2020-04-22 05:37:09.712359"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.711129"], ["updated_at", "2020-04-22 05:37:09.711129"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.713959"], ["updated_at", "2020-04-22 05:37:09.713959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.716589"], ["updated_at", "2020-04-22 05:37:09.716589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.718812"], ["updated_at", "2020-04-22 05:37:09.718812"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_501304


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.722498"], ["updated_at", "2020-04-22 05:37:09.722498"]]
Comment Create (5.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.728747"], ["updated_at", "2020-04-22 05:37:09.728747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.731768"], ["updated_at", "2020-04-22 05:37:09.731768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (9.2ms)  rollback transaction
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_311


 (0.1ms)  begin transaction

CommentTest: test_36913


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.743902"], ["updated_at", "2020-04-22 05:37:09.743902"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.746022"], ["updated_at", "2020-04-22 05:37:09.746022"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.748347"], ["updated_at", "2020-04-22 05:37:09.748347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.750291"], ["updated_at", "2020-04-22 05:37:09.750291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.750750"], ["updated_at", "2020-04-22 05:37:09.750750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.754308"], ["updated_at", "2020-04-22 05:37:09.754308"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (6.6ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_154


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_894519


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.769767"], ["updated_at", "2020-04-22 05:37:09.769767"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.772208"], ["updated_at", "2020-04-22 05:37:09.772208"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.772916"], ["updated_at", "2020-04-22 05:37:09.772916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.775742"], ["updated_at", "2020-04-22 05:37:09.775742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.775668"], ["updated_at", "2020-04-22 05:37:09.775668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.779615"], ["updated_at", "2020-04-22 05:37:09.779615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_424


 (0.1ms)  begin transaction

CommentTest: test_926887


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.786819"], ["updated_at", "2020-04-22 05:37:09.786819"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.789660"], ["updated_at", "2020-04-22 05:37:09.789660"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.792363"], ["updated_at", "2020-04-22 05:37:09.792363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.793872"], ["updated_at", "2020-04-22 05:37:09.793872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.795151"], ["updated_at", "2020-04-22 05:37:09.795151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.795727"], ["updated_at", "2020-04-22 05:37:09.795727"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_581


 (0.1ms)  begin transaction

CommentTest: test_365412


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.808114"], ["updated_at", "2020-04-22 05:37:09.808114"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.811379"], ["updated_at", "2020-04-22 05:37:09.811379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.809061"], ["updated_at", "2020-04-22 05:37:09.809061"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.814458"], ["updated_at", "2020-04-22 05:37:09.814458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.815892"], ["updated_at", "2020-04-22 05:37:09.815892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.817835"], ["updated_at", "2020-04-22 05:37:09.817835"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_382


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.824767"], ["updated_at", "2020-04-22 05:37:09.824767"]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_886216


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.828012"], ["updated_at", "2020-04-22 05:37:09.828012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.830430"], ["updated_at", "2020-04-22 05:37:09.830430"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.829876"], ["updated_at", "2020-04-22 05:37:09.829876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.832512"], ["updated_at", "2020-04-22 05:37:09.832512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.835353"], ["updated_at", "2020-04-22 05:37:09.835353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_934


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.840649"], ["updated_at", "2020-04-22 05:37:09.840649"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.843608"], ["updated_at", "2020-04-22 05:37:09.843608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_193567


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.846544"], ["updated_at", "2020-04-22 05:37:09.846544"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.847132"], ["updated_at", "2020-04-22 05:37:09.847132"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.849870"], ["updated_at", "2020-04-22 05:37:09.849870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.851882"], ["updated_at", "2020-04-22 05:37:09.851882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_629


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.855615"], ["updated_at", "2020-04-22 05:37:09.855615"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.859379"], ["updated_at", "2020-04-22 05:37:09.859379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.863358"], ["updated_at", "2020-04-22 05:37:09.863358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_676003


 (0.3ms)  begin transaction

CommentTest: test_634


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.872892"], ["updated_at", "2020-04-22 05:37:09.872892"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.873486"], ["updated_at", "2020-04-22 05:37:09.873486"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.876703"], ["updated_at", "2020-04-22 05:37:09.876703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.877713"], ["updated_at", "2020-04-22 05:37:09.877713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.879855"], ["updated_at", "2020-04-22 05:37:09.879855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.880433"], ["updated_at", "2020-04-22 05:37:09.880433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_412339


 (0.1ms)  begin transaction

CommentTest: test_35


Course Create (746.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.147224"], ["updated_at", "2020-04-22 05:37:09.147224"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.896306"], ["updated_at", "2020-04-22 05:37:09.896306"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.899148"], ["updated_at", "2020-04-22 05:37:09.899148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_915


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.911580"], ["updated_at", "2020-04-22 05:37:09.911580"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.914652"], ["updated_at", "2020-04-22 05:37:09.914652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.916553"], ["updated_at", "2020-04-22 05:37:09.916553"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (32.9ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_960


Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.892060"], ["updated_at", "2020-04-22 05:37:09.892060"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.931116"], ["updated_at", "2020-04-22 05:37:09.931116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.932774"], ["updated_at", "2020-04-22 05:37:09.932774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_337126


Course Create (11.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.929704"], ["updated_at", "2020-04-22 05:37:09.929704"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.943406"], ["updated_at", "2020-04-22 05:37:09.943406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.945926"], ["updated_at", "2020-04-22 05:37:09.945926"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.939057"], ["updated_at", "2020-04-22 05:37:09.939057"]]
 (0.1ms)  begin transaction

CommentTest: test_608


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.953187"], ["updated_at", "2020-04-22 05:37:09.953187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.953989"], ["updated_at", "2020-04-22 05:37:09.953989"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.957205"], ["updated_at", "2020-04-22 05:37:09.957205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.959476"], ["updated_at", "2020-04-22 05:37:09.959476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_638


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.967861"], ["updated_at", "2020-04-22 05:37:09.967861"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.970800"], ["updated_at", "2020-04-22 05:37:09.970800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.972933"], ["updated_at", "2020-04-22 05:37:09.972933"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.973293"], ["updated_at", "2020-04-22 05:37:09.973293"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_54


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (36.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.946369"], ["updated_at", "2020-04-22 05:37:09.946369"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.985906"], ["updated_at", "2020-04-22 05:37:09.985906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.987678"], ["updated_at", "2020-04-22 05:37:09.987678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_367


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.990908"], ["updated_at", "2020-04-22 05:37:09.990908"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:09.993257"], ["updated_at", "2020-04-22 05:37:09.993257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_334582


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:09.997652"], ["updated_at", "2020-04-22 05:37:09.997652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.997998"], ["updated_at", "2020-04-22 05:37:09.997998"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.000369"], ["updated_at", "2020-04-22 05:37:10.000369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.002207"], ["updated_at", "2020-04-22 05:37:10.002207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_31


Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (19.5ms)  rollback transaction
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.026538"], ["updated_at", "2020-04-22 05:37:10.026538"]]
 (0.1ms)  begin transaction

CommentTest: test_708665


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.048293"], ["updated_at", "2020-04-22 05:37:10.048293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.050722"], ["updated_at", "2020-04-22 05:37:10.050722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.048667"], ["updated_at", "2020-04-22 05:37:10.048667"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.055233"], ["updated_at", "2020-04-22 05:37:10.055233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (843.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.212201"], ["updated_at", "2020-04-22 05:37:09.212201"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.057165"], ["updated_at", "2020-04-22 05:37:10.057165"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_373


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.059842"], ["updated_at", "2020-04-22 05:37:10.059842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.062269"], ["updated_at", "2020-04-22 05:37:10.062269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_208194


Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.064541"], ["updated_at", "2020-04-22 05:37:10.064541"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (89.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:09.982029"], ["updated_at", "2020-04-22 05:37:09.982029"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.071782"], ["updated_at", "2020-04-22 05:37:10.071782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_67666


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.074852"], ["updated_at", "2020-04-22 05:37:10.074852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.075856"], ["updated_at", "2020-04-22 05:37:10.075856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.077278"], ["updated_at", "2020-04-22 05:37:10.077278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_720


 (1.0ms)  rollback transaction
Course Create (10.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.076040"], ["updated_at", "2020-04-22 05:37:10.076040"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_543


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.088799"], ["updated_at", "2020-04-22 05:37:10.088799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (21.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.070526"], ["updated_at", "2020-04-22 05:37:10.070526"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.092524"], ["updated_at", "2020-04-22 05:37:10.092524"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.094325"], ["updated_at", "2020-04-22 05:37:10.094325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.096254"], ["updated_at", "2020-04-22 05:37:10.096254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_180410


CommentTest: test_191620


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.104911"], ["updated_at", "2020-04-22 05:37:10.104911"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.105464"], ["updated_at", "2020-04-22 05:37:10.105464"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.107427"], ["updated_at", "2020-04-22 05:37:10.107427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.107725"], ["updated_at", "2020-04-22 05:37:10.107725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.109486"], ["updated_at", "2020-04-22 05:37:10.109486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.109564"], ["updated_at", "2020-04-22 05:37:10.109564"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_263263


 (0.5ms)  rollback transaction
Course Create (26.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.092101"], ["updated_at", "2020-04-22 05:37:10.092101"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.121792"], ["updated_at", "2020-04-22 05:37:10.121792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_47586


Course Create (37.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.087008"], ["updated_at", "2020-04-22 05:37:10.087008"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.124288"], ["updated_at", "2020-04-22 05:37:10.124288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.126925"], ["updated_at", "2020-04-22 05:37:10.126925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.128965"], ["updated_at", "2020-04-22 05:37:10.128965"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_351


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.134941"], ["updated_at", "2020-04-22 05:37:10.134941"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.137645"], ["updated_at", "2020-04-22 05:37:10.137645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_736


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.139861"], ["updated_at", "2020-04-22 05:37:10.139861"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.139720"], ["updated_at", "2020-04-22 05:37:10.139720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.142299"], ["updated_at", "2020-04-22 05:37:10.142299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.144340"], ["updated_at", "2020-04-22 05:37:10.144340"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_279


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (24.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.124764"], ["updated_at", "2020-04-22 05:37:10.124764"]]
 (0.1ms)  begin transaction

CommentTest: test_368


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.151345"], ["updated_at", "2020-04-22 05:37:10.151345"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.153885"], ["updated_at", "2020-04-22 05:37:10.153885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.154470"], ["updated_at", "2020-04-22 05:37:10.154470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.156042"], ["updated_at", "2020-04-22 05:37:10.156042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.156446"], ["updated_at", "2020-04-22 05:37:10.156446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_828


 (0.1ms)  begin transaction

CommentTest: test_918566


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.166438"], ["updated_at", "2020-04-22 05:37:10.166438"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.166707"], ["updated_at", "2020-04-22 05:37:10.166707"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.169101"], ["updated_at", "2020-04-22 05:37:10.169101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.169993"], ["updated_at", "2020-04-22 05:37:10.169993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.171033"], ["updated_at", "2020-04-22 05:37:10.171033"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.172000"], ["updated_at", "2020-04-22 05:37:10.172000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_750



CommentTest: test_574994


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.186069"], ["updated_at", "2020-04-22 05:37:10.186069"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.185988"], ["updated_at", "2020-04-22 05:37:10.185988"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.189404"], ["updated_at", "2020-04-22 05:37:10.189404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.190367"], ["updated_at", "2020-04-22 05:37:10.190367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.191725"], ["updated_at", "2020-04-22 05:37:10.191725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.193728"], ["updated_at", "2020-04-22 05:37:10.193728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_193759


 (0.1ms)  begin transaction

CommentTest: test_262


Course Create (83.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.120217"], ["updated_at", "2020-04-22 05:37:10.120217"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.204386"], ["updated_at", "2020-04-22 05:37:10.204386"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.207435"], ["updated_at", "2020-04-22 05:37:10.207435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.209631"], ["updated_at", "2020-04-22 05:37:10.209631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.210053"], ["updated_at", "2020-04-22 05:37:10.210053"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.213317"], ["updated_at", "2020-04-22 05:37:10.213317"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.207210"], ["updated_at", "2020-04-22 05:37:10.207210"]]
 (0.1ms)  begin transaction

CommentTest: test_923563


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.220637"], ["updated_at", "2020-04-22 05:37:10.220637"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.225285"], ["updated_at", "2020-04-22 05:37:10.225285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_483406


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.230565"], ["updated_at", "2020-04-22 05:37:10.230565"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_65


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.233423"], ["updated_at", "2020-04-22 05:37:10.233423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.235441"], ["updated_at", "2020-04-22 05:37:10.235441"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.234949"], ["updated_at", "2020-04-22 05:37:10.234949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.238311"], ["updated_at", "2020-04-22 05:37:10.238311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.241415"], ["updated_at", "2020-04-22 05:37:10.241415"]]
 (1.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_281561


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.246814"], ["updated_at", "2020-04-22 05:37:10.246814"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_605


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.250322"], ["updated_at", "2020-04-22 05:37:10.250322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.252356"], ["updated_at", "2020-04-22 05:37:10.252356"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.251901"], ["updated_at", "2020-04-22 05:37:10.251901"]]
 (4.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.257648"], ["updated_at", "2020-04-22 05:37:10.257648"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.265026"], ["updated_at", "2020-04-22 05:37:10.265026"]]
 (0.1ms)  begin transaction

CommentTest: test_404607


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.268162"], ["updated_at", "2020-04-22 05:37:10.268162"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.271771"], ["updated_at", "2020-04-22 05:37:10.271771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_252


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.274042"], ["updated_at", "2020-04-22 05:37:10.274042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (57.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.220689"], ["updated_at", "2020-04-22 05:37:10.220689"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.279892"], ["updated_at", "2020-04-22 05:37:10.279892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.281863"], ["updated_at", "2020-04-22 05:37:10.281863"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_635841


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (137.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.152969"], ["updated_at", "2020-04-22 05:37:10.152969"]]
 (0.1ms)  begin transaction
Course Create (9.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.276117"], ["updated_at", "2020-04-22 05:37:10.276117"]]

CommentTest: test_482813


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.292862"], ["updated_at", "2020-04-22 05:37:10.292862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.292768"], ["updated_at", "2020-04-22 05:37:10.292768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.294686"], ["updated_at", "2020-04-22 05:37:10.294686"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.294695"], ["updated_at", "2020-04-22 05:37:10.294695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.292724"], ["updated_at", "2020-04-22 05:37:10.292724"]]
 (2.9ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.306223"], ["updated_at", "2020-04-22 05:37:10.306223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_773


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.308338"], ["updated_at", "2020-04-22 05:37:10.308338"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.308724"], ["updated_at", "2020-04-22 05:37:10.308724"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.311234"], ["updated_at", "2020-04-22 05:37:10.311234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.314365"], ["updated_at", "2020-04-22 05:37:10.314365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_395546


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_949


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.321676"], ["updated_at", "2020-04-22 05:37:10.321676"]]
 (0.1ms)  begin transaction

CommentTest: test_866


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.324470"], ["updated_at", "2020-04-22 05:37:10.324470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (37.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.287416"], ["updated_at", "2020-04-22 05:37:10.287416"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.326745"], ["updated_at", "2020-04-22 05:37:10.326745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.330009"], ["updated_at", "2020-04-22 05:37:10.330009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.332124"], ["updated_at", "2020-04-22 05:37:10.332124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.324753"], ["updated_at", "2020-04-22 05:37:10.324753"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_993687


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.337216"], ["updated_at", "2020-04-22 05:37:10.337216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.0ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.341028"], ["updated_at", "2020-04-22 05:37:10.341028"]]

CommentTest: test_59591


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (20.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.325376"], ["updated_at", "2020-04-22 05:37:10.325376"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.347555"], ["updated_at", "2020-04-22 05:37:10.347555"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.349860"], ["updated_at", "2020-04-22 05:37:10.349860"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_992


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.355959"], ["updated_at", "2020-04-22 05:37:10.355959"]]
 (0.1ms)  begin transaction

CommentTest: test_673


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.358971"], ["updated_at", "2020-04-22 05:37:10.358971"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.359111"], ["updated_at", "2020-04-22 05:37:10.359111"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.361809"], ["updated_at", "2020-04-22 05:37:10.361809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.361214"], ["updated_at", "2020-04-22 05:37:10.361214"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.364342"], ["updated_at", "2020-04-22 05:37:10.364342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_633


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (28.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.343025"], ["updated_at", "2020-04-22 05:37:10.343025"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.376387"], ["updated_at", "2020-04-22 05:37:10.376387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_98


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.378804"], ["updated_at", "2020-04-22 05:37:10.378804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.378773"], ["updated_at", "2020-04-22 05:37:10.378773"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.383664"], ["updated_at", "2020-04-22 05:37:10.383664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.385728"], ["updated_at", "2020-04-22 05:37:10.385728"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_853227


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.389791"], ["updated_at", "2020-04-22 05:37:10.389791"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.392073"], ["updated_at", "2020-04-22 05:37:10.392073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Course Create (56.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.337790"], ["updated_at", "2020-04-22 05:37:10.337790"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.394332"], ["updated_at", "2020-04-22 05:37:10.394332"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.397284"], ["updated_at", "2020-04-22 05:37:10.397284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.399454"], ["updated_at", "2020-04-22 05:37:10.399454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_271


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (4.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_725179


 (0.1ms)  SAVEPOINT active_record_1
Course Create (37.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.373854"], ["updated_at", "2020-04-22 05:37:10.373854"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.409855"], ["updated_at", "2020-04-22 05:37:10.409855"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.413602"], ["updated_at", "2020-04-22 05:37:10.413602"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.413520"], ["updated_at", "2020-04-22 05:37:10.413520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_141956


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.415630"], ["updated_at", "2020-04-22 05:37:10.415630"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.415727"], ["updated_at", "2020-04-22 05:37:10.415727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_610422


 (0.1ms)  begin transaction

CommentTest: test_539

 (0.1ms)  SAVEPOINT active_record_1

Course Create (12.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.405713"], ["updated_at", "2020-04-22 05:37:10.405713"]]
Course Create (13.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.417656"], ["updated_at", "2020-04-22 05:37:10.417656"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.433978"], ["updated_at", "2020-04-22 05:37:10.433978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.434161"], ["updated_at", "2020-04-22 05:37:10.434161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.436740"], ["updated_at", "2020-04-22 05:37:10.436740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.436950"], ["updated_at", "2020-04-22 05:37:10.436950"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.432549"], ["updated_at", "2020-04-22 05:37:10.432549"]]
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_630339


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.446018"], ["updated_at", "2020-04-22 05:37:10.446018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_286


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.448105"], ["updated_at", "2020-04-22 05:37:10.448105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.448120"], ["updated_at", "2020-04-22 05:37:10.448120"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.451401"], ["updated_at", "2020-04-22 05:37:10.451401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_620


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.458669"], ["updated_at", "2020-04-22 05:37:10.458669"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (13.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.446706"], ["updated_at", "2020-04-22 05:37:10.446706"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.462386"], ["updated_at", "2020-04-22 05:37:10.462386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.464428"], ["updated_at", "2020-04-22 05:37:10.464428"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (36.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.428493"], ["updated_at", "2020-04-22 05:37:10.428493"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.469407"], ["updated_at", "2020-04-22 05:37:10.469407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.470818"], ["updated_at", "2020-04-22 05:37:10.470818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_668709


 (0.1ms)  begin transaction

CommentTest: test_481226


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.480497"], ["updated_at", "2020-04-22 05:37:10.480497"]]
Course Create (20.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.459719"], ["updated_at", "2020-04-22 05:37:10.459719"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.482846"], ["updated_at", "2020-04-22 05:37:10.482846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.483776"], ["updated_at", "2020-04-22 05:37:10.483776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.484862"], ["updated_at", "2020-04-22 05:37:10.484862"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.485710"], ["updated_at", "2020-04-22 05:37:10.485710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_316


 (0.2ms)  begin transaction

CommentTest: test_418904


Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.480876"], ["updated_at", "2020-04-22 05:37:10.480876"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.495978"], ["updated_at", "2020-04-22 05:37:10.495978"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.498285"], ["updated_at", "2020-04-22 05:37:10.498285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.499041"], ["updated_at", "2020-04-22 05:37:10.499041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.500472"], ["updated_at", "2020-04-22 05:37:10.500472"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.500962"], ["updated_at", "2020-04-22 05:37:10.500962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_823


Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_854245


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.516683"], ["updated_at", "2020-04-22 05:37:10.516683"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.517939"], ["updated_at", "2020-04-22 05:37:10.517939"]]
 (0.1ms)  begin transaction

CommentTest: test_578763


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.520364"], ["updated_at", "2020-04-22 05:37:10.520364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.523002"], ["updated_at", "2020-04-22 05:37:10.523002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.519748"], ["updated_at", "2020-04-22 05:37:10.519748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.527610"], ["updated_at", "2020-04-22 05:37:10.527610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_394507


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.535245"], ["updated_at", "2020-04-22 05:37:10.535245"]]
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.540611"], ["updated_at", "2020-04-22 05:37:10.540611"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_950


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.542807"], ["updated_at", "2020-04-22 05:37:10.542807"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.542822"], ["updated_at", "2020-04-22 05:37:10.542822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.545414"], ["updated_at", "2020-04-22 05:37:10.545414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.547656"], ["updated_at", "2020-04-22 05:37:10.547656"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_908348


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.553092"], ["updated_at", "2020-04-22 05:37:10.553092"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_639


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.557460"], ["updated_at", "2020-04-22 05:37:10.557460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (36.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.522748"], ["updated_at", "2020-04-22 05:37:10.522748"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.561329"], ["updated_at", "2020-04-22 05:37:10.561329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.560138"], ["updated_at", "2020-04-22 05:37:10.560138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.564023"], ["updated_at", "2020-04-22 05:37:10.564023"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_863317



CommentTest: test_225029


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.575168"], ["updated_at", "2020-04-22 05:37:10.575168"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.575207"], ["updated_at", "2020-04-22 05:37:10.575207"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.578109"], ["updated_at", "2020-04-22 05:37:10.578109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.578268"], ["updated_at", "2020-04-22 05:37:10.578268"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.581447"], ["updated_at", "2020-04-22 05:37:10.581447"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.581556"], ["updated_at", "2020-04-22 05:37:10.581556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_378034 CommentTest: test_458135



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.592968"], ["updated_at", "2020-04-22 05:37:10.592968"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.592900"], ["updated_at", "2020-04-22 05:37:10.592900"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.595776"], ["updated_at", "2020-04-22 05:37:10.595776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.597950"], ["updated_at", "2020-04-22 05:37:10.597950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.597928"], ["updated_at", "2020-04-22 05:37:10.597928"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.600573"], ["updated_at", "2020-04-22 05:37:10.600573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_755186


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.608560"], ["updated_at", "2020-04-22 05:37:10.608560"]]
 (1.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.612850"], ["updated_at", "2020-04-22 05:37:10.612850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_90638


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.615156"], ["updated_at", "2020-04-22 05:37:10.615156"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.616094"], ["updated_at", "2020-04-22 05:37:10.616094"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.618958"], ["updated_at", "2020-04-22 05:37:10.618958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.620768"], ["updated_at", "2020-04-22 05:37:10.620768"]]

CommentTest: test_986803


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.625263"], ["updated_at", "2020-04-22 05:37:10.625263"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.630626"], ["updated_at", "2020-04-22 05:37:10.630626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.633846"], ["updated_at", "2020-04-22 05:37:10.633846"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_206142


 (0.1ms)  begin transaction

CommentTest: test_506054


Course Create (84.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.559581"], ["updated_at", "2020-04-22 05:37:10.559581"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.643534"], ["updated_at", "2020-04-22 05:37:10.643534"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.648244"], ["updated_at", "2020-04-22 05:37:10.648244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.650087"], ["updated_at", "2020-04-22 05:37:10.650087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.650494"], ["updated_at", "2020-04-22 05:37:10.650494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.651961"], ["updated_at", "2020-04-22 05:37:10.651961"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (11.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.647075"], ["updated_at", "2020-04-22 05:37:10.647075"]]
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_481666 CommentTest: test_989



 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.661534"], ["updated_at", "2020-04-22 05:37:10.661534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.662129"], ["updated_at", "2020-04-22 05:37:10.662129"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.664893"], ["updated_at", "2020-04-22 05:37:10.664893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.666590"], ["updated_at", "2020-04-22 05:37:10.666590"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.669230"], ["updated_at", "2020-04-22 05:37:10.669230"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_345474


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.676680"], ["updated_at", "2020-04-22 05:37:10.676680"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.679415"], ["updated_at", "2020-04-22 05:37:10.679415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.681987"], ["updated_at", "2020-04-22 05:37:10.681987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (186.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.495475"], ["updated_at", "2020-04-22 05:37:10.495475"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.685275"], ["updated_at", "2020-04-22 05:37:10.685275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.687533"], ["updated_at", "2020-04-22 05:37:10.687533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_741563


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_248


Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.692509"], ["updated_at", "2020-04-22 05:37:10.692509"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.697821"], ["updated_at", "2020-04-22 05:37:10.697821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_837519


Course Create (38.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.661588"], ["updated_at", "2020-04-22 05:37:10.661588"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.699861"], ["updated_at", "2020-04-22 05:37:10.699861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.702568"], ["updated_at", "2020-04-22 05:37:10.702568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.704598"], ["updated_at", "2020-04-22 05:37:10.704598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_485163


 (0.1ms)  begin transaction

CommentTest: test_56


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.714524"], ["updated_at", "2020-04-22 05:37:10.714524"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.715314"], ["updated_at", "2020-04-22 05:37:10.715314"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.716405"], ["updated_at", "2020-04-22 05:37:10.716405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.718099"], ["updated_at", "2020-04-22 05:37:10.718099"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.718097"], ["updated_at", "2020-04-22 05:37:10.718097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.720110"], ["updated_at", "2020-04-22 05:37:10.720110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_451732


 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_613


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.730357"], ["updated_at", "2020-04-22 05:37:10.730357"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.731915"], ["updated_at", "2020-04-22 05:37:10.731915"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.733100"], ["updated_at", "2020-04-22 05:37:10.733100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.735381"], ["updated_at", "2020-04-22 05:37:10.735381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.736328"], ["updated_at", "2020-04-22 05:37:10.736328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.737523"], ["updated_at", "2020-04-22 05:37:10.737523"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_178


 (0.1ms)  begin transaction

CommentTest: test_937563


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.751927"], ["updated_at", "2020-04-22 05:37:10.751927"]]
Course Create (60.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.696837"], ["updated_at", "2020-04-22 05:37:10.696837"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.759626"], ["updated_at", "2020-04-22 05:37:10.759626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.759526"], ["updated_at", "2020-04-22 05:37:10.759526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.761754"], ["updated_at", "2020-04-22 05:37:10.761754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.764452"], ["updated_at", "2020-04-22 05:37:10.764452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.760527"], ["updated_at", "2020-04-22 05:37:10.760527"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_564


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.771541"], ["updated_at", "2020-04-22 05:37:10.771541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_964


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.774770"], ["updated_at", "2020-04-22 05:37:10.774770"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.774952"], ["updated_at", "2020-04-22 05:37:10.774952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.778028"], ["updated_at", "2020-04-22 05:37:10.778028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.781642"], ["updated_at", "2020-04-22 05:37:10.781642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_520817


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.786366"], ["updated_at", "2020-04-22 05:37:10.786366"]]
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.792445"], ["updated_at", "2020-04-22 05:37:10.792445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_550


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.795413"], ["updated_at", "2020-04-22 05:37:10.795413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.795468"], ["updated_at", "2020-04-22 05:37:10.795468"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.798909"], ["updated_at", "2020-04-22 05:37:10.798909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.801095"], ["updated_at", "2020-04-22 05:37:10.801095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_884336


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.805369"], ["updated_at", "2020-04-22 05:37:10.805369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_352


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.811594"], ["updated_at", "2020-04-22 05:37:10.811594"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.809728"], ["updated_at", "2020-04-22 05:37:10.809728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.815533"], ["updated_at", "2020-04-22 05:37:10.815533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.818027"], ["updated_at", "2020-04-22 05:37:10.818027"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.818133"], ["updated_at", "2020-04-22 05:37:10.818133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_614


 (3.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_333330


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.830877"], ["updated_at", "2020-04-22 05:37:10.830877"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.832697"], ["updated_at", "2020-04-22 05:37:10.832697"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.833976"], ["updated_at", "2020-04-22 05:37:10.833976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.836977"], ["updated_at", "2020-04-22 05:37:10.836977"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.836548"], ["updated_at", "2020-04-22 05:37:10.836548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.840225"], ["updated_at", "2020-04-22 05:37:10.840225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_20


 (0.1ms)  begin transaction

CommentTest: test_571233


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.848413"], ["updated_at", "2020-04-22 05:37:10.848413"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.850796"], ["updated_at", "2020-04-22 05:37:10.850796"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.849825"], ["updated_at", "2020-04-22 05:37:10.849825"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.852537"], ["updated_at", "2020-04-22 05:37:10.852537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.853867"], ["updated_at", "2020-04-22 05:37:10.853867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_6


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.875451"], ["updated_at", "2020-04-22 05:37:10.875451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.877731"], ["updated_at", "2020-04-22 05:37:10.877731"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.880823"], ["updated_at", "2020-04-22 05:37:10.880823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.882703"], ["updated_at", "2020-04-22 05:37:10.882703"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_578710


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_940


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.892706"], ["updated_at", "2020-04-22 05:37:10.892706"]]
Course Create (192.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.700793"], ["updated_at", "2020-04-22 05:37:10.700793"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.896141"], ["updated_at", "2020-04-22 05:37:10.896141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.895830"], ["updated_at", "2020-04-22 05:37:10.895830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.898552"], ["updated_at", "2020-04-22 05:37:10.898552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.898714"], ["updated_at", "2020-04-22 05:37:10.898714"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_182251


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.907397"], ["updated_at", "2020-04-22 05:37:10.907397"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.909768"], ["updated_at", "2020-04-22 05:37:10.909768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.912333"], ["updated_at", "2020-04-22 05:37:10.912333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_694859


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.918042"], ["updated_at", "2020-04-22 05:37:10.918042"]]
 (0.1ms)  begin transaction

CommentTest: test_248040


Course Create (23.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.898173"], ["updated_at", "2020-04-22 05:37:10.898173"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.920381"], ["updated_at", "2020-04-22 05:37:10.920381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.924089"], ["updated_at", "2020-04-22 05:37:10.924089"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.924145"], ["updated_at", "2020-04-22 05:37:10.924145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.926224"], ["updated_at", "2020-04-22 05:37:10.926224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_890435


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.933755"], ["updated_at", "2020-04-22 05:37:10.933755"]]
 (0.1ms)  begin transaction

CommentTest: test_882


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.936428"], ["updated_at", "2020-04-22 05:37:10.936428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.936412"], ["updated_at", "2020-04-22 05:37:10.936412"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.939316"], ["updated_at", "2020-04-22 05:37:10.939316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.940037"], ["updated_at", "2020-04-22 05:37:10.940037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.942008"], ["updated_at", "2020-04-22 05:37:10.942008"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811608


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.948715"], ["updated_at", "2020-04-22 05:37:10.948715"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.950957"], ["updated_at", "2020-04-22 05:37:10.950957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.952761"], ["updated_at", "2020-04-22 05:37:10.952761"]]

CommentTest: test_801


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.954778"], ["updated_at", "2020-04-22 05:37:10.954778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.959676"], ["updated_at", "2020-04-22 05:37:10.959676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_133475


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.961940"], ["updated_at", "2020-04-22 05:37:10.961940"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.962732"], ["updated_at", "2020-04-22 05:37:10.962732"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.965579"], ["updated_at", "2020-04-22 05:37:10.965579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.967662"], ["updated_at", "2020-04-22 05:37:10.967662"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_289


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.972004"], ["updated_at", "2020-04-22 05:37:10.972004"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.974586"], ["updated_at", "2020-04-22 05:37:10.974586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_680248


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.976751"], ["updated_at", "2020-04-22 05:37:10.976751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.977268"], ["updated_at", "2020-04-22 05:37:10.977268"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.981235"], ["updated_at", "2020-04-22 05:37:10.981235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.982790"], ["updated_at", "2020-04-22 05:37:10.982790"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_93


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.986707"], ["updated_at", "2020-04-22 05:37:10.986707"]]
 (0.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.989795"], ["updated_at", "2020-04-22 05:37:10.989795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_758154


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.992232"], ["updated_at", "2020-04-22 05:37:10.992232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.992945"], ["updated_at", "2020-04-22 05:37:10.992945"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:10.997247"], ["updated_at", "2020-04-22 05:37:10.997247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:10.999144"], ["updated_at", "2020-04-22 05:37:10.999144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.2ms)  rollback transaction
 (4.4ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (128.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.922625"], ["updated_at", "2020-04-22 05:37:10.922625"]]
Course Create (279.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:10.771612"], ["updated_at", "2020-04-22 05:37:10.771612"]]

CommentTest: test_109


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.054727"], ["updated_at", "2020-04-22 05:37:11.054727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.060752"], ["updated_at", "2020-04-22 05:37:11.060752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.056497"], ["updated_at", "2020-04-22 05:37:11.056497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.067461"], ["updated_at", "2020-04-22 05:37:11.067461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_835562


 (0.3ms)  begin transaction

CommentTest: test_794


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.074183"], ["updated_at", "2020-04-22 05:37:11.074183"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_121765


Course Create (11.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.066642"], ["updated_at", "2020-04-22 05:37:11.066642"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.078089"], ["updated_at", "2020-04-22 05:37:11.078089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.081408"], ["updated_at", "2020-04-22 05:37:11.081408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.081951"], ["updated_at", "2020-04-22 05:37:11.081951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.083324"], ["updated_at", "2020-04-22 05:37:11.083324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_749379


 (0.1ms)  begin transaction

CommentTest: test_49

Course Create (12.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.080637"], ["updated_at", "2020-04-22 05:37:11.080637"]]

Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.074485"], ["updated_at", "2020-04-22 05:37:11.074485"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.097271"], ["updated_at", "2020-04-22 05:37:11.097271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.096960"], ["updated_at", "2020-04-22 05:37:11.096960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.099345"], ["updated_at", "2020-04-22 05:37:11.099345"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.099678"], ["updated_at", "2020-04-22 05:37:11.099678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_770


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_259931


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.107741"], ["updated_at", "2020-04-22 05:37:11.107741"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.110795"], ["updated_at", "2020-04-22 05:37:11.110795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (14.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.094840"], ["updated_at", "2020-04-22 05:37:11.094840"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.114644"], ["updated_at", "2020-04-22 05:37:11.114644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.114777"], ["updated_at", "2020-04-22 05:37:11.114777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.117179"], ["updated_at", "2020-04-22 05:37:11.117179"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_176


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (25.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.092973"], ["updated_at", "2020-04-22 05:37:11.092973"]]
 (0.1ms)  begin transaction

CommentTest: test_50


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.127234"], ["updated_at", "2020-04-22 05:37:11.127234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.128044"], ["updated_at", "2020-04-22 05:37:11.128044"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.129342"], ["updated_at", "2020-04-22 05:37:11.129342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.130826"], ["updated_at", "2020-04-22 05:37:11.130826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.133554"], ["updated_at", "2020-04-22 05:37:11.133554"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_713182


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.139977"], ["updated_at", "2020-04-22 05:37:11.139977"]]
 (0.1ms)  begin transaction

CommentTest: test_637


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.144533"], ["updated_at", "2020-04-22 05:37:11.144533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.144708"], ["updated_at", "2020-04-22 05:37:11.144708"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.148249"], ["updated_at", "2020-04-22 05:37:11.148249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.149698"], ["updated_at", "2020-04-22 05:37:11.149698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.152364"], ["updated_at", "2020-04-22 05:37:11.152364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_933987


Course Create (37.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.124766"], ["updated_at", "2020-04-22 05:37:11.124766"]]
 (0.1ms)  begin transaction

CommentTest: test_44


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.164552"], ["updated_at", "2020-04-22 05:37:11.164552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.164558"], ["updated_at", "2020-04-22 05:37:11.164558"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.166922"], ["updated_at", "2020-04-22 05:37:11.166922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.168245"], ["updated_at", "2020-04-22 05:37:11.168245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.170308"], ["updated_at", "2020-04-22 05:37:11.170308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_387


Course Create (18.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.163881"], ["updated_at", "2020-04-22 05:37:11.163881"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.185258"], ["updated_at", "2020-04-22 05:37:11.185258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_75


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.187979"], ["updated_at", "2020-04-22 05:37:11.187979"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.188412"], ["updated_at", "2020-04-22 05:37:11.188412"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.191002"], ["updated_at", "2020-04-22 05:37:11.191002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.193385"], ["updated_at", "2020-04-22 05:37:11.193385"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.183486"], ["updated_at", "2020-04-22 05:37:11.183486"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.197428"], ["updated_at", "2020-04-22 05:37:11.197428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.199820"], ["updated_at", "2020-04-22 05:37:11.199820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_708


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.205150"], ["updated_at", "2020-04-22 05:37:11.205150"]]
 (0.1ms)  begin transaction

CommentTest: test_147413


 (0.1ms)  begin transaction

CommentTest: test_208


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.209241"], ["updated_at", "2020-04-22 05:37:11.209241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.209499"], ["updated_at", "2020-04-22 05:37:11.209499"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.211759"], ["updated_at", "2020-04-22 05:37:11.211759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.212329"], ["updated_at", "2020-04-22 05:37:11.212329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.214393"], ["updated_at", "2020-04-22 05:37:11.214393"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_536


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (108.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.109857"], ["updated_at", "2020-04-22 05:37:11.109857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.209283"], ["updated_at", "2020-04-22 05:37:11.209283"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.222448"], ["updated_at", "2020-04-22 05:37:11.222448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_53


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.225120"], ["updated_at", "2020-04-22 05:37:11.225120"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.225253"], ["updated_at", "2020-04-22 05:37:11.225253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.227415"], ["updated_at", "2020-04-22 05:37:11.227415"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_35777


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.235929"], ["updated_at", "2020-04-22 05:37:11.235929"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.238575"], ["updated_at", "2020-04-22 05:37:11.238575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_814951


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.243141"], ["updated_at", "2020-04-22 05:37:11.243141"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.225807"], ["updated_at", "2020-04-22 05:37:11.225807"]]
 (3.8ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.248997"], ["updated_at", "2020-04-22 05:37:11.248997"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.251327"], ["updated_at", "2020-04-22 05:37:11.251327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_100105


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (37.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.219545"], ["updated_at", "2020-04-22 05:37:11.219545"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.260159"], ["updated_at", "2020-04-22 05:37:11.260159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_193


 (0.1ms)  SAVEPOINT active_record_1
Course Create (17.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.243701"], ["updated_at", "2020-04-22 05:37:11.243701"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.264794"], ["updated_at", "2020-04-22 05:37:11.264794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.267247"], ["updated_at", "2020-04-22 05:37:11.267247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.270475"], ["updated_at", "2020-04-22 05:37:11.270475"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_415


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.274910"], ["updated_at", "2020-04-22 05:37:11.274910"]]
 (0.6ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.277794"], ["updated_at", "2020-04-22 05:37:11.277794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_145526


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.280808"], ["updated_at", "2020-04-22 05:37:11.280808"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.281258"], ["updated_at", "2020-04-22 05:37:11.281258"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.284495"], ["updated_at", "2020-04-22 05:37:11.284495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.286969"], ["updated_at", "2020-04-22 05:37:11.286969"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_612


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.290550"], ["updated_at", "2020-04-22 05:37:11.290550"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.293234"], ["updated_at", "2020-04-22 05:37:11.293234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_443787


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.295206"], ["updated_at", "2020-04-22 05:37:11.295206"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.296857"], ["updated_at", "2020-04-22 05:37:11.296857"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.299304"], ["updated_at", "2020-04-22 05:37:11.299304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.301294"], ["updated_at", "2020-04-22 05:37:11.301294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_735


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.304148"], ["updated_at", "2020-04-22 05:37:11.304148"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.308033"], ["updated_at", "2020-04-22 05:37:11.308033"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_23482


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.310035"], ["updated_at", "2020-04-22 05:37:11.310035"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.310544"], ["updated_at", "2020-04-22 05:37:11.310544"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.316865"], ["updated_at", "2020-04-22 05:37:11.316865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.318732"], ["updated_at", "2020-04-22 05:37:11.318732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_909


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (62.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.257433"], ["updated_at", "2020-04-22 05:37:11.257433"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.322844"], ["updated_at", "2020-04-22 05:37:11.322844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.324478"], ["updated_at", "2020-04-22 05:37:11.324478"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_658540


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_199898


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.330767"], ["updated_at", "2020-04-22 05:37:11.330767"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (8.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.324156"], ["updated_at", "2020-04-22 05:37:11.324156"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.333591"], ["updated_at", "2020-04-22 05:37:11.333591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.334679"], ["updated_at", "2020-04-22 05:37:11.334679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.335437"], ["updated_at", "2020-04-22 05:37:11.335437"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.336000"], ["updated_at", "2020-04-22 05:37:11.336000"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_595556


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_284


Course Create (83.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.264406"], ["updated_at", "2020-04-22 05:37:11.264406"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.349759"], ["updated_at", "2020-04-22 05:37:11.349759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.349532"], ["updated_at", "2020-04-22 05:37:11.349532"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.351819"], ["updated_at", "2020-04-22 05:37:11.351819"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.353629"], ["updated_at", "2020-04-22 05:37:11.353629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.356347"], ["updated_at", "2020-04-22 05:37:11.356347"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_722


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.360029"], ["updated_at", "2020-04-22 05:37:11.360029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.363110"], ["updated_at", "2020-04-22 05:37:11.363110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_669


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.365403"], ["updated_at", "2020-04-22 05:37:11.365403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.366363"], ["updated_at", "2020-04-22 05:37:11.366363"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.370321"], ["updated_at", "2020-04-22 05:37:11.370321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_369


Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.344931"], ["updated_at", "2020-04-22 05:37:11.344931"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.373289"], ["updated_at", "2020-04-22 05:37:11.373289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.374870"], ["updated_at", "2020-04-22 05:37:11.374870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.376994"], ["updated_at", "2020-04-22 05:37:11.376994"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_520


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.382589"], ["updated_at", "2020-04-22 05:37:11.382589"]]
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.374299"], ["updated_at", "2020-04-22 05:37:11.374299"]]
 (0.1ms)  begin transaction

CommentTest: test_772313


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.386465"], ["updated_at", "2020-04-22 05:37:11.386465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.385846"], ["updated_at", "2020-04-22 05:37:11.385846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.389088"], ["updated_at", "2020-04-22 05:37:11.389088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.391986"], ["updated_at", "2020-04-22 05:37:11.391986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_678


Course Create (12.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.386239"], ["updated_at", "2020-04-22 05:37:11.386239"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.400380"], ["updated_at", "2020-04-22 05:37:11.400380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.402176"], ["updated_at", "2020-04-22 05:37:11.402176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_799


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_36230


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.408189"], ["updated_at", "2020-04-22 05:37:11.408189"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.410484"], ["updated_at", "2020-04-22 05:37:11.410484"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.413707"], ["updated_at", "2020-04-22 05:37:11.413707"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.414100"], ["updated_at", "2020-04-22 05:37:11.414100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.415490"], ["updated_at", "2020-04-22 05:37:11.415490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.415982"], ["updated_at", "2020-04-22 05:37:11.415982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (22.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.399654"], ["updated_at", "2020-04-22 05:37:11.399654"]]
 (0.1ms)  begin transaction

CommentTest: test_625082


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.424542"], ["updated_at", "2020-04-22 05:37:11.424542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.426495"], ["updated_at", "2020-04-22 05:37:11.426495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_186


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.432968"], ["updated_at", "2020-04-22 05:37:11.432968"]]
 (0.1ms)  begin transaction

CommentTest: test_147


 (0.1ms)  SAVEPOINT active_record_1
Course Create (12.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.425262"], ["updated_at", "2020-04-22 05:37:11.425262"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.436498"], ["updated_at", "2020-04-22 05:37:11.436498"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.439699"], ["updated_at", "2020-04-22 05:37:11.439699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.440631"], ["updated_at", "2020-04-22 05:37:11.440631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.441573"], ["updated_at", "2020-04-22 05:37:11.441573"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_881


 (0.1ms)  begin transaction

CommentTest: test_687035


 (0.1ms)  SAVEPOINT active_record_1
Course Create (13.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.437069"], ["updated_at", "2020-04-22 05:37:11.437069"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.452848"], ["updated_at", "2020-04-22 05:37:11.452848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.457407"], ["updated_at", "2020-04-22 05:37:11.457407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (9.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.450020"], ["updated_at", "2020-04-22 05:37:11.450020"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.460969"], ["updated_at", "2020-04-22 05:37:11.460969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_718


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.465500"], ["updated_at", "2020-04-22 05:37:11.465500"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.451001"], ["updated_at", "2020-04-22 05:37:11.451001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.469441"], ["updated_at", "2020-04-22 05:37:11.469441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.471647"], ["updated_at", "2020-04-22 05:37:11.471647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.466244"], ["updated_at", "2020-04-22 05:37:11.466244"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.480041"], ["updated_at", "2020-04-22 05:37:11.480041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_512089


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.482810"], ["updated_at", "2020-04-22 05:37:11.482810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.7ms)  begin transaction

CommentTest: test_69


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.487208"], ["updated_at", "2020-04-22 05:37:11.487208"]]
 (0.1ms)  begin transaction

CommentTest: test_556


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.491408"], ["updated_at", "2020-04-22 05:37:11.491408"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.492009"], ["updated_at", "2020-04-22 05:37:11.492009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.493828"], ["updated_at", "2020-04-22 05:37:11.493828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.495716"], ["updated_at", "2020-04-22 05:37:11.495716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.493862"], ["updated_at", "2020-04-22 05:37:11.493862"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_126


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.503967"], ["updated_at", "2020-04-22 05:37:11.503967"]]
 (0.1ms)  begin transaction

CommentTest: test_786


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.507221"], ["updated_at", "2020-04-22 05:37:11.507221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.507517"], ["updated_at", "2020-04-22 05:37:11.507517"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.509090"], ["updated_at", "2020-04-22 05:37:11.509090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.509976"], ["updated_at", "2020-04-22 05:37:11.509976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_102


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.517808"], ["updated_at", "2020-04-22 05:37:11.517808"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.516348"], ["updated_at", "2020-04-22 05:37:11.516348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.520411"], ["updated_at", "2020-04-22 05:37:11.520411"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.523140"], ["updated_at", "2020-04-22 05:37:11.523140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_983


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_810


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.527551"], ["updated_at", "2020-04-22 05:37:11.527551"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.531764"], ["updated_at", "2020-04-22 05:37:11.531764"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.534176"], ["updated_at", "2020-04-22 05:37:11.534176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.535565"], ["updated_at", "2020-04-22 05:37:11.535565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (4.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.532293"], ["updated_at", "2020-04-22 05:37:11.532293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.540746"], ["updated_at", "2020-04-22 05:37:11.540746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_321


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.544374"], ["updated_at", "2020-04-22 05:37:11.544374"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.546900"], ["updated_at", "2020-04-22 05:37:11.546900"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.548888"], ["updated_at", "2020-04-22 05:37:11.548888"]]

CommentTest: test_643


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.551041"], ["updated_at", "2020-04-22 05:37:11.551041"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.554116"], ["updated_at", "2020-04-22 05:37:11.554116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_656


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.556719"], ["updated_at", "2020-04-22 05:37:11.556719"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.558168"], ["updated_at", "2020-04-22 05:37:11.558168"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.560789"], ["updated_at", "2020-04-22 05:37:11.560789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.563663"], ["updated_at", "2020-04-22 05:37:11.563663"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_455


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.568413"], ["updated_at", "2020-04-22 05:37:11.568413"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.570450"], ["updated_at", "2020-04-22 05:37:11.570450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_544


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.572726"], ["updated_at", "2020-04-22 05:37:11.572726"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.572569"], ["updated_at", "2020-04-22 05:37:11.572569"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.575252"], ["updated_at", "2020-04-22 05:37:11.575252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.577451"], ["updated_at", "2020-04-22 05:37:11.577451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_390


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.582225"], ["updated_at", "2020-04-22 05:37:11.582225"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_240


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.585369"], ["updated_at", "2020-04-22 05:37:11.585369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.586962"], ["updated_at", "2020-04-22 05:37:11.586962"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.587404"], ["updated_at", "2020-04-22 05:37:11.587404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.590839"], ["updated_at", "2020-04-22 05:37:11.590839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.592908"], ["updated_at", "2020-04-22 05:37:11.592908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_675


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.598772"], ["updated_at", "2020-04-22 05:37:11.598772"]]
 (0.1ms)  begin transaction

CommentTest: test_282


Course Create (118.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.482856"], ["updated_at", "2020-04-22 05:37:11.482856"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.601662"], ["updated_at", "2020-04-22 05:37:11.601662"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.603583"], ["updated_at", "2020-04-22 05:37:11.603583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.605335"], ["updated_at", "2020-04-22 05:37:11.605335"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.605932"], ["updated_at", "2020-04-22 05:37:11.605932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_796633


Course Create (11.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.602280"], ["updated_at", "2020-04-22 05:37:11.602280"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_780


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.615940"], ["updated_at", "2020-04-22 05:37:11.615940"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.617683"], ["updated_at", "2020-04-22 05:37:11.617683"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.617391"], ["updated_at", "2020-04-22 05:37:11.617391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.620111"], ["updated_at", "2020-04-22 05:37:11.620111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.624379"], ["updated_at", "2020-04-22 05:37:11.624379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_32


Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.615324"], ["updated_at", "2020-04-22 05:37:11.615324"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.628653"], ["updated_at", "2020-04-22 05:37:11.628653"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.630900"], ["updated_at", "2020-04-22 05:37:11.630900"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_526


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.633297"], ["updated_at", "2020-04-22 05:37:11.633297"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.636249"], ["updated_at", "2020-04-22 05:37:11.636249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_330156


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.638981"], ["updated_at", "2020-04-22 05:37:11.638981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (12.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.627758"], ["updated_at", "2020-04-22 05:37:11.627758"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.642298"], ["updated_at", "2020-04-22 05:37:11.642298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.644130"], ["updated_at", "2020-04-22 05:37:11.644130"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_431


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.649911"], ["updated_at", "2020-04-22 05:37:11.649911"]]
 (0.1ms)  begin transaction

CommentTest: test_78


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.652950"], ["updated_at", "2020-04-22 05:37:11.652950"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.653632"], ["updated_at", "2020-04-22 05:37:11.653632"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.655168"], ["updated_at", "2020-04-22 05:37:11.655168"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.656430"], ["updated_at", "2020-04-22 05:37:11.656430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.658449"], ["updated_at", "2020-04-22 05:37:11.658449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_37


 (0.1ms)  begin transaction

CommentTest: test_903


 (0.3ms)  SAVEPOINT active_record_1
 (1.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.668618"], ["updated_at", "2020-04-22 05:37:11.668618"]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.668307"], ["updated_at", "2020-04-22 05:37:11.668307"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.672928"], ["updated_at", "2020-04-22 05:37:11.672928"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.674758"], ["updated_at", "2020-04-22 05:37:11.674758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.675083"], ["updated_at", "2020-04-22 05:37:11.675083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.677031"], ["updated_at", "2020-04-22 05:37:11.677031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_864


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.684462"], ["updated_at", "2020-04-22 05:37:11.684462"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_318


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.686913"], ["updated_at", "2020-04-22 05:37:11.686913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.689407"], ["updated_at", "2020-04-22 05:37:11.689407"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.688544"], ["updated_at", "2020-04-22 05:37:11.688544"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (57.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.639904"], ["updated_at", "2020-04-22 05:37:11.639904"]]
 (0.1ms)  begin transaction

CommentTest: test_597


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.698950"], ["updated_at", "2020-04-22 05:37:11.698950"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (6.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.693808"], ["updated_at", "2020-04-22 05:37:11.693808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.701070"], ["updated_at", "2020-04-22 05:37:11.701070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.702219"], ["updated_at", "2020-04-22 05:37:11.702219"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_556844


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (12.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.699464"], ["updated_at", "2020-04-22 05:37:11.699464"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.713927"], ["updated_at", "2020-04-22 05:37:11.713927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_887


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.716033"], ["updated_at", "2020-04-22 05:37:11.716033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.717520"], ["updated_at", "2020-04-22 05:37:11.717520"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.720771"], ["updated_at", "2020-04-22 05:37:11.720771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_175


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.723446"], ["updated_at", "2020-04-22 05:37:11.723446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.724900"], ["updated_at", "2020-04-22 05:37:11.724900"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.727716"], ["updated_at", "2020-04-22 05:37:11.727716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.730964"], ["updated_at", "2020-04-22 05:37:11.730964"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_185


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_203


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.737421"], ["updated_at", "2020-04-22 05:37:11.737421"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.744501"], ["updated_at", "2020-04-22 05:37:11.744501"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.749134"], ["updated_at", "2020-04-22 05:37:11.749134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.748710"], ["updated_at", "2020-04-22 05:37:11.748710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.751302"], ["updated_at", "2020-04-22 05:37:11.751302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.751350"], ["updated_at", "2020-04-22 05:37:11.751350"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_806


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.767072"], ["updated_at", "2020-04-22 05:37:11.767072"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_432


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.769731"], ["updated_at", "2020-04-22 05:37:11.769731"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (441.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.332978"], ["updated_at", "2020-04-22 05:37:11.332978"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.775106"], ["updated_at", "2020-04-22 05:37:11.775106"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.775999"], ["updated_at", "2020-04-22 05:37:11.775999"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.777797"], ["updated_at", "2020-04-22 05:37:11.777797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_247


 (0.1ms)  begin transaction

CommentTest: test_42150


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.786476"], ["updated_at", "2020-04-22 05:37:11.786476"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.790479"], ["updated_at", "2020-04-22 05:37:11.790479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.785779"], ["updated_at", "2020-04-22 05:37:11.785779"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.792799"], ["updated_at", "2020-04-22 05:37:11.792799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.793962"], ["updated_at", "2020-04-22 05:37:11.793962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.796814"], ["updated_at", "2020-04-22 05:37:11.796814"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_455118


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (26.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.775414"], ["updated_at", "2020-04-22 05:37:11.775414"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_283


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.805125"], ["updated_at", "2020-04-22 05:37:11.805125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.807043"], ["updated_at", "2020-04-22 05:37:11.807043"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.807625"], ["updated_at", "2020-04-22 05:37:11.807625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.809439"], ["updated_at", "2020-04-22 05:37:11.809439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_15


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.816958"], ["updated_at", "2020-04-22 05:37:11.816958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.819145"], ["updated_at", "2020-04-22 05:37:11.819145"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.822983"], ["updated_at", "2020-04-22 05:37:11.822983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.825279"], ["updated_at", "2020-04-22 05:37:11.825279"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_170


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.832125"], ["updated_at", "2020-04-22 05:37:11.832125"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.833990"], ["updated_at", "2020-04-22 05:37:11.833990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_336


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.836116"], ["updated_at", "2020-04-22 05:37:11.836116"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (39.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.802306"], ["updated_at", "2020-04-22 05:37:11.802306"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.843722"], ["updated_at", "2020-04-22 05:37:11.843722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Course Create (135.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.711591"], ["updated_at", "2020-04-22 05:37:11.711591"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.847426"], ["updated_at", "2020-04-22 05:37:11.847426"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.849297"], ["updated_at", "2020-04-22 05:37:11.849297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.851187"], ["updated_at", "2020-04-22 05:37:11.851187"]]
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_13


CommentTest: test_14776


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (13.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.836527"], ["updated_at", "2020-04-22 05:37:11.836527"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.856643"], ["updated_at", "2020-04-22 05:37:11.856643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_56336


Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.854105"], ["updated_at", "2020-04-22 05:37:11.854105"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.858671"], ["updated_at", "2020-04-22 05:37:11.858671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.861533"], ["updated_at", "2020-04-22 05:37:11.861533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.865682"], ["updated_at", "2020-04-22 05:37:11.865682"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_927


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.870887"], ["updated_at", "2020-04-22 05:37:11.870887"]]
 (0.1ms)  begin transaction

CommentTest: test_410


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.876236"], ["updated_at", "2020-04-22 05:37:11.876236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.876179"], ["updated_at", "2020-04-22 05:37:11.876179"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.878813"], ["updated_at", "2020-04-22 05:37:11.878813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.878110"], ["updated_at", "2020-04-22 05:37:11.878110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.880816"], ["updated_at", "2020-04-22 05:37:11.880816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_1000


 (0.1ms)  begin transaction

CommentTest: test_602


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.888415"], ["updated_at", "2020-04-22 05:37:11.888415"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.889738"], ["updated_at", "2020-04-22 05:37:11.889738"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.891823"], ["updated_at", "2020-04-22 05:37:11.891823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.892683"], ["updated_at", "2020-04-22 05:37:11.892683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.893834"], ["updated_at", "2020-04-22 05:37:11.893834"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.894392"], ["updated_at", "2020-04-22 05:37:11.894392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_635


 (0.1ms)  begin transaction

CommentTest: test_744


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.903699"], ["updated_at", "2020-04-22 05:37:11.903699"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.904524"], ["updated_at", "2020-04-22 05:37:11.904524"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.906479"], ["updated_at", "2020-04-22 05:37:11.906479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.907118"], ["updated_at", "2020-04-22 05:37:11.907118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.908438"], ["updated_at", "2020-04-22 05:37:11.908438"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.909154"], ["updated_at", "2020-04-22 05:37:11.909154"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_644


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.917568"], ["updated_at", "2020-04-22 05:37:11.917568"]]
 (0.1ms)  begin transaction

CommentTest: test_465


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.922055"], ["updated_at", "2020-04-22 05:37:11.922055"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.924767"], ["updated_at", "2020-04-22 05:37:11.924767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.926303"], ["updated_at", "2020-04-22 05:37:11.926303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.927452"], ["updated_at", "2020-04-22 05:37:11.927452"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.928162"], ["updated_at", "2020-04-22 05:37:11.928162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (83.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.853691"], ["updated_at", "2020-04-22 05:37:11.853691"]]
 (0.1ms)  begin transaction

CommentTest: test_908


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.938801"], ["updated_at", "2020-04-22 05:37:11.938801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.940957"], ["updated_at", "2020-04-22 05:37:11.940957"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (85.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.859676"], ["updated_at", "2020-04-22 05:37:11.859676"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.947635"], ["updated_at", "2020-04-22 05:37:11.947635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.939054"], ["updated_at", "2020-04-22 05:37:11.939054"]]

CommentTest: test_341875


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.949680"], ["updated_at", "2020-04-22 05:37:11.949680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.952786"], ["updated_at", "2020-04-22 05:37:11.952786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.957401"], ["updated_at", "2020-04-22 05:37:11.957401"]]
 (0.1ms)  begin transaction

CommentTest: test_332613


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.959955"], ["updated_at", "2020-04-22 05:37:11.959955"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.962478"], ["updated_at", "2020-04-22 05:37:11.962478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (12.4ms)  begin transaction

CommentTest: test_524


 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.964586"], ["updated_at", "2020-04-22 05:37:11.964586"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_768


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_293228


Course Create (21.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.951324"], ["updated_at", "2020-04-22 05:37:11.951324"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.974198"], ["updated_at", "2020-04-22 05:37:11.974198"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.973623"], ["updated_at", "2020-04-22 05:37:11.973623"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.976086"], ["updated_at", "2020-04-22 05:37:11.976086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.976124"], ["updated_at", "2020-04-22 05:37:11.976124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.977281"], ["updated_at", "2020-04-22 05:37:11.977281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_961369


 (0.1ms)  begin transaction

CommentTest: test_119371


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.984923"], ["updated_at", "2020-04-22 05:37:11.984923"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.986132"], ["updated_at", "2020-04-22 05:37:11.986132"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.987289"], ["updated_at", "2020-04-22 05:37:11.987289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.989193"], ["updated_at", "2020-04-22 05:37:11.989193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.989770"], ["updated_at", "2020-04-22 05:37:11.989770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:11.991067"], ["updated_at", "2020-04-22 05:37:11.991067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_874742


 (0.6ms)  rollback transaction
Course Create (25.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.968827"], ["updated_at", "2020-04-22 05:37:11.968827"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:11.999201"], ["updated_at", "2020-04-22 05:37:11.999201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_225720


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.001316"], ["updated_at", "2020-04-22 05:37:12.001316"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.000905"], ["updated_at", "2020-04-22 05:37:12.000905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.003457"], ["updated_at", "2020-04-22 05:37:12.003457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.006346"], ["updated_at", "2020-04-22 05:37:12.006346"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_115


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_407136


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.012268"], ["updated_at", "2020-04-22 05:37:12.012268"]]
Course Create (46.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.965099"], ["updated_at", "2020-04-22 05:37:11.965099"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.016683"], ["updated_at", "2020-04-22 05:37:12.016683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.017806"], ["updated_at", "2020-04-22 05:37:12.017806"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.018523"], ["updated_at", "2020-04-22 05:37:12.018523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.020219"], ["updated_at", "2020-04-22 05:37:12.020219"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.016442"], ["updated_at", "2020-04-22 05:37:12.016442"]]
 (0.1ms)  begin transaction

CommentTest: test_422


 (0.2ms)  begin transaction

CommentTest: test_980


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.028783"], ["updated_at", "2020-04-22 05:37:12.028783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.032381"], ["updated_at", "2020-04-22 05:37:12.032381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.028634"], ["updated_at", "2020-04-22 05:37:12.028634"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.036373"], ["updated_at", "2020-04-22 05:37:12.036373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_209721


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.040549"], ["updated_at", "2020-04-22 05:37:12.040549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.028863"], ["updated_at", "2020-04-22 05:37:12.028863"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.045677"], ["updated_at", "2020-04-22 05:37:12.045677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.047961"], ["updated_at", "2020-04-22 05:37:12.047961"]]
 (0.1ms)  begin transaction

CommentTest: test_571


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.051213"], ["updated_at", "2020-04-22 05:37:12.051213"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.059011"], ["updated_at", "2020-04-22 05:37:12.059011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_292


Course Create (22.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.042198"], ["updated_at", "2020-04-22 05:37:12.042198"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.061417"], ["updated_at", "2020-04-22 05:37:12.061417"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.066820"], ["updated_at", "2020-04-22 05:37:12.066820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.069176"], ["updated_at", "2020-04-22 05:37:12.069176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_740042


Course Create (13.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.063243"], ["updated_at", "2020-04-22 05:37:12.063243"]]
 (6.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_510


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.082320"], ["updated_at", "2020-04-22 05:37:12.082320"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.083598"], ["updated_at", "2020-04-22 05:37:12.083598"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.084816"], ["updated_at", "2020-04-22 05:37:12.084816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.086179"], ["updated_at", "2020-04-22 05:37:12.086179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.089104"], ["updated_at", "2020-04-22 05:37:12.089104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_501


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.098917"], ["updated_at", "2020-04-22 05:37:12.098917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.101501"], ["updated_at", "2020-04-22 05:37:12.101501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_652


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.103655"], ["updated_at", "2020-04-22 05:37:12.103655"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (107.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:11.998487"], ["updated_at", "2020-04-22 05:37:11.998487"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.107563"], ["updated_at", "2020-04-22 05:37:12.107563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.109427"], ["updated_at", "2020-04-22 05:37:12.109427"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_764


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.114955"], ["updated_at", "2020-04-22 05:37:12.114955"]]
Course Create (12.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.104568"], ["updated_at", "2020-04-22 05:37:12.104568"]]
 (0.1ms)  begin transaction

CommentTest: test_805014


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.118943"], ["updated_at", "2020-04-22 05:37:12.118943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.118922"], ["updated_at", "2020-04-22 05:37:12.118922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.121097"], ["updated_at", "2020-04-22 05:37:12.121097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.123393"], ["updated_at", "2020-04-22 05:37:12.123393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_871


Course Create (11.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.119056"], ["updated_at", "2020-04-22 05:37:12.119056"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.131347"], ["updated_at", "2020-04-22 05:37:12.131347"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.132912"], ["updated_at", "2020-04-22 05:37:12.132912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.134801"], ["updated_at", "2020-04-22 05:37:12.134801"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.134465"], ["updated_at", "2020-04-22 05:37:12.134465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.136772"], ["updated_at", "2020-04-22 05:37:12.136772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_958


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.140975"], ["updated_at", "2020-04-22 05:37:12.140975"]]
 (0.1ms)  begin transaction

CommentTest: test_10737


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.143902"], ["updated_at", "2020-04-22 05:37:12.143902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.146297"], ["updated_at", "2020-04-22 05:37:12.146297"]]
 (2.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_835


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.150630"], ["updated_at", "2020-04-22 05:37:12.150630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.144031"], ["updated_at", "2020-04-22 05:37:12.144031"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.153520"], ["updated_at", "2020-04-22 05:37:12.153520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.156316"], ["updated_at", "2020-04-22 05:37:12.156316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.158138"], ["updated_at", "2020-04-22 05:37:12.158138"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.156207"], ["updated_at", "2020-04-22 05:37:12.156207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_155



CommentTest: test_142195


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.168053"], ["updated_at", "2020-04-22 05:37:12.168053"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.170409"], ["updated_at", "2020-04-22 05:37:12.170409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_405


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.173142"], ["updated_at", "2020-04-22 05:37:12.173142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.174356"], ["updated_at", "2020-04-22 05:37:12.174356"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (12.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.168138"], ["updated_at", "2020-04-22 05:37:12.168138"]]
 (0.4ms)  begin transaction

CommentTest: test_201195


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.183719"], ["updated_at", "2020-04-22 05:37:12.183719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.177736"], ["updated_at", "2020-04-22 05:37:12.177736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.186067"], ["updated_at", "2020-04-22 05:37:12.186067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.187901"], ["updated_at", "2020-04-22 05:37:12.187901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_508


 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.184809"], ["updated_at", "2020-04-22 05:37:12.184809"]]
 (0.1ms)  begin transaction

CommentTest: test_370


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.197643"], ["updated_at", "2020-04-22 05:37:12.197643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.198881"], ["updated_at", "2020-04-22 05:37:12.198881"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.199757"], ["updated_at", "2020-04-22 05:37:12.199757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.201945"], ["updated_at", "2020-04-22 05:37:12.201945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.204574"], ["updated_at", "2020-04-22 05:37:12.204574"]]
Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.194562"], ["updated_at", "2020-04-22 05:37:12.194562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_310824


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.208669"], ["updated_at", "2020-04-22 05:37:12.208669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.210980"], ["updated_at", "2020-04-22 05:37:12.210980"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_677


 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (136.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.080747"], ["updated_at", "2020-04-22 05:37:12.080747"]]

CommentTest: test_484


Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.208879"], ["updated_at", "2020-04-22 05:37:12.208879"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.219732"], ["updated_at", "2020-04-22 05:37:12.219732"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.220832"], ["updated_at", "2020-04-22 05:37:12.220832"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.221757"], ["updated_at", "2020-04-22 05:37:12.221757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.223160"], ["updated_at", "2020-04-22 05:37:12.223160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (11.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.217264"], ["updated_at", "2020-04-22 05:37:12.217264"]]
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_413694


CommentTest: test_996161


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.231115"], ["updated_at", "2020-04-22 05:37:12.231115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1

Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.232993"], ["updated_at", "2020-04-22 05:37:12.232993"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.234423"], ["updated_at", "2020-04-22 05:37:12.234423"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.235584"], ["updated_at", "2020-04-22 05:37:12.235584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.237539"], ["updated_at", "2020-04-22 05:37:12.237539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_611


 (0.6ms)  rollback transaction
Course Create (9.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.234502"], ["updated_at", "2020-04-22 05:37:12.234502"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_685715


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.246185"], ["updated_at", "2020-04-22 05:37:12.246185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (27.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.219541"], ["updated_at", "2020-04-22 05:37:12.219541"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.248666"], ["updated_at", "2020-04-22 05:37:12.248666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.249077"], ["updated_at", "2020-04-22 05:37:12.249077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.251401"], ["updated_at", "2020-04-22 05:37:12.251401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (8.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.244186"], ["updated_at", "2020-04-22 05:37:12.244186"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_378146


 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.258167"], ["updated_at", "2020-04-22 05:37:12.258167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_530


Course Create (14.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.246599"], ["updated_at", "2020-04-22 05:37:12.246599"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.263456"], ["updated_at", "2020-04-22 05:37:12.263456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.261136"], ["updated_at", "2020-04-22 05:37:12.261136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.266126"], ["updated_at", "2020-04-22 05:37:12.266126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_560



CommentTest: test_371675


Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.262870"], ["updated_at", "2020-04-22 05:37:12.262870"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.275798"], ["updated_at", "2020-04-22 05:37:12.275798"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.276754"], ["updated_at", "2020-04-22 05:37:12.276754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.279307"], ["updated_at", "2020-04-22 05:37:12.279307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.279452"], ["updated_at", "2020-04-22 05:37:12.279452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.282244"], ["updated_at", "2020-04-22 05:37:12.282244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_287


Course Create (14.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.275999"], ["updated_at", "2020-04-22 05:37:12.275999"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.292483"], ["updated_at", "2020-04-22 05:37:12.292483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.294627"], ["updated_at", "2020-04-22 05:37:12.294627"]]
Course Create (35.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.259411"], ["updated_at", "2020-04-22 05:37:12.259411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.297323"], ["updated_at", "2020-04-22 05:37:12.297323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.299524"], ["updated_at", "2020-04-22 05:37:12.299524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_896878


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.303319"], ["updated_at", "2020-04-22 05:37:12.303319"]]
 (0.1ms)  begin transaction

CommentTest: test_487884


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.306591"], ["updated_at", "2020-04-22 05:37:12.306591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.308465"], ["updated_at", "2020-04-22 05:37:12.308465"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.309240"], ["updated_at", "2020-04-22 05:37:12.309240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.311453"], ["updated_at", "2020-04-22 05:37:12.311453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.313792"], ["updated_at", "2020-04-22 05:37:12.313792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_440170


 (0.1ms)  begin transaction

CommentTest: test_293673


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.322339"], ["updated_at", "2020-04-22 05:37:12.322339"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.323624"], ["updated_at", "2020-04-22 05:37:12.323624"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.325190"], ["updated_at", "2020-04-22 05:37:12.325190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.326633"], ["updated_at", "2020-04-22 05:37:12.326633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.328009"], ["updated_at", "2020-04-22 05:37:12.328009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.329848"], ["updated_at", "2020-04-22 05:37:12.329848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_709430


Course Create (44.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.291921"], ["updated_at", "2020-04-22 05:37:12.291921"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.341577"], ["updated_at", "2020-04-22 05:37:12.341577"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.340353"], ["updated_at", "2020-04-22 05:37:12.340353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.344313"], ["updated_at", "2020-04-22 05:37:12.344313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_807646


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.346058"], ["updated_at", "2020-04-22 05:37:12.346058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.352153"], ["updated_at", "2020-04-22 05:37:12.352153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_89


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.356002"], ["updated_at", "2020-04-22 05:37:12.356002"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.358720"], ["updated_at", "2020-04-22 05:37:12.358720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_737


Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.350031"], ["updated_at", "2020-04-22 05:37:12.350031"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.360640"], ["updated_at", "2020-04-22 05:37:12.360640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.362125"], ["updated_at", "2020-04-22 05:37:12.362125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.365024"], ["updated_at", "2020-04-22 05:37:12.365024"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.5ms)  begin transaction

CommentTest: test_782595



CommentTest: test_842


Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.360604"], ["updated_at", "2020-04-22 05:37:12.360604"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.373807"], ["updated_at", "2020-04-22 05:37:12.373807"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.375067"], ["updated_at", "2020-04-22 05:37:12.375067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.376395"], ["updated_at", "2020-04-22 05:37:12.376395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.377135"], ["updated_at", "2020-04-22 05:37:12.377135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.378186"], ["updated_at", "2020-04-22 05:37:12.378186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.373729"], ["updated_at", "2020-04-22 05:37:12.373729"]]
 (0.1ms)  begin transaction

CommentTest: test_91


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.386881"], ["updated_at", "2020-04-22 05:37:12.386881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_151


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.389607"], ["updated_at", "2020-04-22 05:37:12.389607"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.389118"], ["updated_at", "2020-04-22 05:37:12.389118"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.393382"], ["updated_at", "2020-04-22 05:37:12.393382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.396085"], ["updated_at", "2020-04-22 05:37:12.396085"]]
 (0.1ms)  begin transaction

CommentTest: test_584469


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.398508"], ["updated_at", "2020-04-22 05:37:12.398508"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.401538"], ["updated_at", "2020-04-22 05:37:12.401538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.403452"], ["updated_at", "2020-04-22 05:37:12.403452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_229


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.407064"], ["updated_at", "2020-04-22 05:37:12.407064"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.409794"], ["updated_at", "2020-04-22 05:37:12.409794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_171539


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.412101"], ["updated_at", "2020-04-22 05:37:12.412101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.413992"], ["updated_at", "2020-04-22 05:37:12.413992"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.416887"], ["updated_at", "2020-04-22 05:37:12.416887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.418719"], ["updated_at", "2020-04-22 05:37:12.418719"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_79


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.423160"], ["updated_at", "2020-04-22 05:37:12.423160"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_15494


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.427572"], ["updated_at", "2020-04-22 05:37:12.427572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.428560"], ["updated_at", "2020-04-22 05:37:12.428560"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.432450"], ["updated_at", "2020-04-22 05:37:12.432450"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.435263"], ["updated_at", "2020-04-22 05:37:12.435263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.432142"], ["updated_at", "2020-04-22 05:37:12.432142"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_876439


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.446480"], ["updated_at", "2020-04-22 05:37:12.446480"]]

CommentTest: test_339


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.450731"], ["updated_at", "2020-04-22 05:37:12.450731"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.450220"], ["updated_at", "2020-04-22 05:37:12.450220"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.452863"], ["updated_at", "2020-04-22 05:37:12.452863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.453267"], ["updated_at", "2020-04-22 05:37:12.453267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.460395"], ["updated_at", "2020-04-22 05:37:12.460395"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_12665


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.462737"], ["updated_at", "2020-04-22 05:37:12.462737"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.465266"], ["updated_at", "2020-04-22 05:37:12.465266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.467284"], ["updated_at", "2020-04-22 05:37:12.467284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_984


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_737267


Course Create (139.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.338662"], ["updated_at", "2020-04-22 05:37:12.338662"]]
 (3.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.481273"], ["updated_at", "2020-04-22 05:37:12.481273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.483656"], ["updated_at", "2020-04-22 05:37:12.483656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.477964"], ["updated_at", "2020-04-22 05:37:12.477964"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.488895"], ["updated_at", "2020-04-22 05:37:12.488895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_703006


Course Create (16.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.475369"], ["updated_at", "2020-04-22 05:37:12.475369"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.490777"], ["updated_at", "2020-04-22 05:37:12.490777"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.494549"], ["updated_at", "2020-04-22 05:37:12.494549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.497539"], ["updated_at", "2020-04-22 05:37:12.497539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_970615


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.508121"], ["updated_at", "2020-04-22 05:37:12.508121"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.510855"], ["updated_at", "2020-04-22 05:37:12.510855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (20.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.493459"], ["updated_at", "2020-04-22 05:37:12.493459"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.512467"], ["updated_at", "2020-04-22 05:37:12.512467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.516149"], ["updated_at", "2020-04-22 05:37:12.516149"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.518360"], ["updated_at", "2020-04-22 05:37:12.518360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_85


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_510445


 (0.1ms)  begin transaction

CommentTest: test_819877


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.526301"], ["updated_at", "2020-04-22 05:37:12.526301"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.520987"], ["updated_at", "2020-04-22 05:37:12.520987"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.528790"], ["updated_at", "2020-04-22 05:37:12.528790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.530144"], ["updated_at", "2020-04-22 05:37:12.530144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.533209"], ["updated_at", "2020-04-22 05:37:12.533209"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.533125"], ["updated_at", "2020-04-22 05:37:12.533125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (1.4ms)  rollback transaction

CommentTest: test_70


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_31764


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.544246"], ["updated_at", "2020-04-22 05:37:12.544246"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.547403"], ["updated_at", "2020-04-22 05:37:12.547403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.546902"], ["updated_at", "2020-04-22 05:37:12.546902"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.549276"], ["updated_at", "2020-04-22 05:37:12.549276"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.549494"], ["updated_at", "2020-04-22 05:37:12.549494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.551345"], ["updated_at", "2020-04-22 05:37:12.551345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_34


 (0.1ms)  begin transaction

CommentTest: test_335848


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.559009"], ["updated_at", "2020-04-22 05:37:12.559009"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.559945"], ["updated_at", "2020-04-22 05:37:12.559945"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.561741"], ["updated_at", "2020-04-22 05:37:12.561741"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.562213"], ["updated_at", "2020-04-22 05:37:12.562213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.565875"], ["updated_at", "2020-04-22 05:37:12.565875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.566900"], ["updated_at", "2020-04-22 05:37:12.566900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_23983


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_214


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.579770"], ["updated_at", "2020-04-22 05:37:12.579770"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.582018"], ["updated_at", "2020-04-22 05:37:12.582018"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.583111"], ["updated_at", "2020-04-22 05:37:12.583111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.584960"], ["updated_at", "2020-04-22 05:37:12.584960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.586131"], ["updated_at", "2020-04-22 05:37:12.586131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.587873"], ["updated_at", "2020-04-22 05:37:12.587873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_540154


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_343


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.598062"], ["updated_at", "2020-04-22 05:37:12.598062"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.601323"], ["updated_at", "2020-04-22 05:37:12.601323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.600783"], ["updated_at", "2020-04-22 05:37:12.600783"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.603591"], ["updated_at", "2020-04-22 05:37:12.603591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.603401"], ["updated_at", "2020-04-22 05:37:12.603401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.606081"], ["updated_at", "2020-04-22 05:37:12.606081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_682486


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_811


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.614066"], ["updated_at", "2020-04-22 05:37:12.614066"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.620729"], ["updated_at", "2020-04-22 05:37:12.620729"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.623494"], ["updated_at", "2020-04-22 05:37:12.623494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.625091"], ["updated_at", "2020-04-22 05:37:12.625091"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.624921"], ["updated_at", "2020-04-22 05:37:12.624921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.627578"], ["updated_at", "2020-04-22 05:37:12.627578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_144165


 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_378


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.643568"], ["updated_at", "2020-04-22 05:37:12.643568"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.646019"], ["updated_at", "2020-04-22 05:37:12.646019"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.647189"], ["updated_at", "2020-04-22 05:37:12.647189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.650285"], ["updated_at", "2020-04-22 05:37:12.650285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.650944"], ["updated_at", "2020-04-22 05:37:12.650944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.652394"], ["updated_at", "2020-04-22 05:37:12.652394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  begin transaction

CommentTest: test_584394


 (4.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.682129"], ["updated_at", "2020-04-22 05:37:12.682129"]]
 (0.2ms)  begin transaction

CommentTest: test_774


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.695134"], ["updated_at", "2020-04-22 05:37:12.695134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.695367"], ["updated_at", "2020-04-22 05:37:12.695367"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.711621"], ["updated_at", "2020-04-22 05:37:12.711621"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.712126"], ["updated_at", "2020-04-22 05:37:12.712126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.730088"], ["updated_at", "2020-04-22 05:37:12.730088"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  begin transaction

CommentTest: test_395310


 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.773888"], ["updated_at", "2020-04-22 05:37:12.773888"]]
 (0.2ms)  begin transaction

CommentTest: test_191


Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.786133"], ["updated_at", "2020-04-22 05:37:12.786133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.799323"], ["updated_at", "2020-04-22 05:37:12.799323"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.803039"], ["updated_at", "2020-04-22 05:37:12.803039"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.809891"], ["updated_at", "2020-04-22 05:37:12.809891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.819249"], ["updated_at", "2020-04-22 05:37:12.819249"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (449.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.390781"], ["updated_at", "2020-04-22 05:37:12.390781"]]
 (3.1ms)  begin transaction
 (3.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_53262


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.847373"], ["updated_at", "2020-04-22 05:37:12.847373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (9.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.856951"], ["updated_at", "2020-04-22 05:37:12.856951"]]
 (0.2ms)  begin transaction

CommentTest: test_948


 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (341.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.527422"], ["updated_at", "2020-04-22 05:37:12.527422"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.872284"], ["updated_at", "2020-04-22 05:37:12.872284"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.878502"], ["updated_at", "2020-04-22 05:37:12.878502"]]
 (1.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_876


 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.891364"], ["updated_at", "2020-04-22 05:37:12.891364"]]
 (1.1ms)  begin transaction

CommentTest: test_645154


Course Create (34.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.866245"], ["updated_at", "2020-04-22 05:37:12.866245"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.907667"], ["updated_at", "2020-04-22 05:37:12.907667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.919403"], ["updated_at", "2020-04-22 05:37:12.919403"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (13.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.916750"], ["updated_at", "2020-04-22 05:37:12.916750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:12.946185"], ["updated_at", "2020-04-22 05:37:12.946185"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_659


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.970395"], ["updated_at", "2020-04-22 05:37:12.970395"]]
 (1.9ms)  rollback transaction
 (1.7ms)  begin transaction

CommentTest: test_290


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:12.990075"], ["updated_at", "2020-04-22 05:37:12.990075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (30.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.993951"], ["updated_at", "2020-04-22 05:37:12.993951"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.032082"], ["updated_at", "2020-04-22 05:37:13.032082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.028077"], ["updated_at", "2020-04-22 05:37:13.028077"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.048478"], ["updated_at", "2020-04-22 05:37:13.048478"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (25.4ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_725


 (0.2ms)  begin transaction

CommentTest: test_88


Course Create (194.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.909212"], ["updated_at", "2020-04-22 05:37:12.909212"]]
Course Create (250.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:12.848421"], ["updated_at", "2020-04-22 05:37:12.848421"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.112036"], ["updated_at", "2020-04-22 05:37:13.112036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.110614"], ["updated_at", "2020-04-22 05:37:13.110614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.124483"], ["updated_at", "2020-04-22 05:37:13.124483"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.124644"], ["updated_at", "2020-04-22 05:37:13.124644"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.8ms)  rollback transaction
Course Create (18.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.125928"], ["updated_at", "2020-04-22 05:37:13.125928"]]
 (0.3ms)  begin transaction

CommentTest: test_247899


 (1.4ms)  SAVEPOINT active_record_1
 (3.1ms)  begin transaction

CommentTest: test_723400


Course Create (56.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.101968"], ["updated_at", "2020-04-22 05:37:13.101968"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.172419"], ["updated_at", "2020-04-22 05:37:13.172419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.178304"], ["updated_at", "2020-04-22 05:37:13.178304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.186026"], ["updated_at", "2020-04-22 05:37:13.186026"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.185306"], ["updated_at", "2020-04-22 05:37:13.185306"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (7.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Course Create (39.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.167499"], ["updated_at", "2020-04-22 05:37:13.167499"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.220258"], ["updated_at", "2020-04-22 05:37:13.220258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_366


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.229561"], ["updated_at", "2020-04-22 05:37:13.229561"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.233105"], ["updated_at", "2020-04-22 05:37:13.233105"]]
 (0.2ms)  begin transaction
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.264703"], ["updated_at", "2020-04-22 05:37:13.264703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_657889


 (24.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (114.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.157599"], ["updated_at", "2020-04-22 05:37:13.157599"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.282163"], ["updated_at", "2020-04-22 05:37:13.282163"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_765


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.289677"], ["updated_at", "2020-04-22 05:37:13.289677"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.293610"], ["updated_at", "2020-04-22 05:37:13.293610"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_320747


 (0.3ms)  SAVEPOINT active_record_1
Course Create (28.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.291843"], ["updated_at", "2020-04-22 05:37:13.291843"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.330455"], ["updated_at", "2020-04-22 05:37:13.330455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.343063"], ["updated_at", "2020-04-22 05:37:13.343063"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (91.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.275160"], ["updated_at", "2020-04-22 05:37:13.275160"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.375398"], ["updated_at", "2020-04-22 05:37:13.375398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_436


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.382979"], ["updated_at", "2020-04-22 05:37:13.382979"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (61.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.321567"], ["updated_at", "2020-04-22 05:37:13.321567"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.393112"], ["updated_at", "2020-04-22 05:37:13.393112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_36

Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.400345"], ["updated_at", "2020-04-22 05:37:13.400345"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_521896


 (4.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_154352


Course Create (56.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.384834"], ["updated_at", "2020-04-22 05:37:13.384834"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.445390"], ["updated_at", "2020-04-22 05:37:13.445390"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.457975"], ["updated_at", "2020-04-22 05:37:13.457975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.448007"], ["updated_at", "2020-04-22 05:37:13.448007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.469867"], ["updated_at", "2020-04-22 05:37:13.469867"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.479984"], ["updated_at", "2020-04-22 05:37:13.479984"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_595


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.515307"], ["updated_at", "2020-04-22 05:37:13.515307"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Course Create (66.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.466601"], ["updated_at", "2020-04-22 05:37:13.466601"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.530454"], ["updated_at", "2020-04-22 05:37:13.530454"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction
Bucket Create (6.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.540371"], ["updated_at", "2020-04-22 05:37:13.540371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_649822


 (2.2ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.555360"], ["updated_at", "2020-04-22 05:37:13.555360"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.542664"], ["updated_at", "2020-04-22 05:37:13.542664"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (23.4ms)  RELEASE SAVEPOINT active_record_1
 (7.1ms)  rollback transaction
Course Create (67.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.554374"], ["updated_at", "2020-04-22 05:37:13.554374"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.634191"], ["updated_at", "2020-04-22 05:37:13.634191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_905


 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.643494"], ["updated_at", "2020-04-22 05:37:13.643494"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (253.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.427105"], ["updated_at", "2020-04-22 05:37:13.427105"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.693680"], ["updated_at", "2020-04-22 05:37:13.693680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_930


 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_570776


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.706120"], ["updated_at", "2020-04-22 05:37:13.706120"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (67.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.645625"], ["updated_at", "2020-04-22 05:37:13.645625"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.718822"], ["updated_at", "2020-04-22 05:37:13.718822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_254933


Course Create (32.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.706708"], ["updated_at", "2020-04-22 05:37:13.706708"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.724678"], ["updated_at", "2020-04-22 05:37:13.724678"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.754139"], ["updated_at", "2020-04-22 05:37:13.754139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.768713"], ["updated_at", "2020-04-22 05:37:13.768713"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (95.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.713909"], ["updated_at", "2020-04-22 05:37:13.713909"]]
 (0.2ms)  begin transaction

CommentTest: test_893


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.816066"], ["updated_at", "2020-04-22 05:37:13.816066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.841875"], ["updated_at", "2020-04-22 05:37:13.841875"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (122.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.744075"], ["updated_at", "2020-04-22 05:37:13.744075"]]
 (0.3ms)  begin transaction

CommentTest: test_742


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.879966"], ["updated_at", "2020-04-22 05:37:13.879966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.887602"], ["updated_at", "2020-04-22 05:37:13.887602"]]
 (13.0ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_379313


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_532931


Course Create (94.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.817442"], ["updated_at", "2020-04-22 05:37:13.817442"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.930644"], ["updated_at", "2020-04-22 05:37:13.930644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (48.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.882344"], ["updated_at", "2020-04-22 05:37:13.882344"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.936944"], ["updated_at", "2020-04-22 05:37:13.936944"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.953773"], ["updated_at", "2020-04-22 05:37:13.953773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:13.963605"], ["updated_at", "2020-04-22 05:37:13.963605"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.9ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_131


Course Create (65.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.920604"], ["updated_at", "2020-04-22 05:37:13.920604"]]
 (2.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:13.995822"], ["updated_at", "2020-04-22 05:37:13.995822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.004351"], ["updated_at", "2020-04-22 05:37:14.004351"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Comment Create (2.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.2ms)  rollback transaction
 (4.4ms)  begin transaction

CommentTest: test_944


Course Create (128.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.929924"], ["updated_at", "2020-04-22 05:37:13.929924"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.064562"], ["updated_at", "2020-04-22 05:37:14.064562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (74.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:13.991968"], ["updated_at", "2020-04-22 05:37:13.991968"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.072480"], ["updated_at", "2020-04-22 05:37:14.072480"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.082031"], ["updated_at", "2020-04-22 05:37:14.082031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_852556


 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (16.7ms)  rollback transaction
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.098562"], ["updated_at", "2020-04-22 05:37:14.098562"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (60.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.053887"], ["updated_at", "2020-04-22 05:37:14.053887"]]
 (0.2ms)  begin transaction

CommentTest: test_658763


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.128653"], ["updated_at", "2020-04-22 05:37:14.128653"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Course Create (46.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.091810"], ["updated_at", "2020-04-22 05:37:14.091810"]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.136028"], ["updated_at", "2020-04-22 05:37:14.136028"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.146771"], ["updated_at", "2020-04-22 05:37:14.146771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_532


Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.156760"], ["updated_at", "2020-04-22 05:37:14.156760"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (17.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  begin transaction
Course Create (71.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.129620"], ["updated_at", "2020-04-22 05:37:14.129620"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_256


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.209208"], ["updated_at", "2020-04-22 05:37:14.209208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.215321"], ["updated_at", "2020-04-22 05:37:14.215321"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (41.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.167562"], ["updated_at", "2020-04-22 05:37:14.167562"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.223446"], ["updated_at", "2020-04-22 05:37:14.223446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_278565


 (1.7ms)  rollback transaction
Course Create (29.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.211920"], ["updated_at", "2020-04-22 05:37:14.211920"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_591859


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.250176"], ["updated_at", "2020-04-22 05:37:14.250176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.254340"], ["updated_at", "2020-04-22 05:37:14.254340"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.260305"], ["updated_at", "2020-04-22 05:37:14.260305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_758


Course Create (59.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.244962"], ["updated_at", "2020-04-22 05:37:14.244962"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.311985"], ["updated_at", "2020-04-22 05:37:14.311985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.321835"], ["updated_at", "2020-04-22 05:37:14.321835"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (106.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.260808"], ["updated_at", "2020-04-22 05:37:14.260808"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (4.4ms)  begin transaction

CommentTest: test_402


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.377060"], ["updated_at", "2020-04-22 05:37:14.377060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_534696


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.385135"], ["updated_at", "2020-04-22 05:37:14.385135"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (5.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.389716"], ["updated_at", "2020-04-22 05:37:14.389716"]]
 (0.6ms)  begin transaction

CommentTest: test_192722


Course Create (35.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.384924"], ["updated_at", "2020-04-22 05:37:14.384924"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.431034"], ["updated_at", "2020-04-22 05:37:14.431034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.448456"], ["updated_at", "2020-04-22 05:37:14.448456"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.447767"], ["updated_at", "2020-04-22 05:37:14.447767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.461862"], ["updated_at", "2020-04-22 05:37:14.461862"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (40.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (99.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.425884"], ["updated_at", "2020-04-22 05:37:14.425884"]]
 (1.7ms)  rollback transaction
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.534879"], ["updated_at", "2020-04-22 05:37:14.534879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_480


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.546677"], ["updated_at", "2020-04-22 05:37:14.546677"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  begin transaction

CommentTest: test_482583


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (254.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.310494"], ["updated_at", "2020-04-22 05:37:14.310494"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.4ms)  begin transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.586568"], ["updated_at", "2020-04-22 05:37:14.586568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_453567


Course Create (30.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.560858"], ["updated_at", "2020-04-22 05:37:14.560858"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.598535"], ["updated_at", "2020-04-22 05:37:14.598535"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.603099"], ["updated_at", "2020-04-22 05:37:14.603099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (52.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_507

Course Create (128.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.565025"], ["updated_at", "2020-04-22 05:37:14.565025"]]

 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.711277"], ["updated_at", "2020-04-22 05:37:14.711277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.720943"], ["updated_at", "2020-04-22 05:37:14.720943"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (6.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.729491"], ["updated_at", "2020-04-22 05:37:14.729491"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (166.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.597494"], ["updated_at", "2020-04-22 05:37:14.597494"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.769364"], ["updated_at", "2020-04-22 05:37:14.769364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (8.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.779139"], ["updated_at", "2020-04-22 05:37:14.779139"]]
 (0.2ms)  begin transaction

CommentTest: test_781


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (35.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (91.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.709266"], ["updated_at", "2020-04-22 05:37:14.709266"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.808028"], ["updated_at", "2020-04-22 05:37:14.808028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_220514


 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_983901


Course Create (14.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.800863"], ["updated_at", "2020-04-22 05:37:14.800863"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.828998"], ["updated_at", "2020-04-22 05:37:14.828998"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.831001"], ["updated_at", "2020-04-22 05:37:14.831001"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.877029"], ["updated_at", "2020-04-22 05:37:14.877029"]]
 (1.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_225


Course Create (73.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.817495"], ["updated_at", "2020-04-22 05:37:14.817495"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.903008"], ["updated_at", "2020-04-22 05:37:14.903008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.7ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.919608"], ["updated_at", "2020-04-22 05:37:14.919608"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  begin transaction

CommentTest: test_849


 (0.8ms)  SAVEPOINT active_record_1
Course Create (124.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.823857"], ["updated_at", "2020-04-22 05:37:14.823857"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:14.958205"], ["updated_at", "2020-04-22 05:37:14.958205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:14.970630"], ["updated_at", "2020-04-22 05:37:14.970630"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (78.3ms)  rollback transaction
Course Create (110.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.902598"], ["updated_at", "2020-04-22 05:37:14.902598"]]
Bucket Create (10.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.034279"], ["updated_at", "2020-04-22 05:37:15.034279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_179477


Recording Create (4.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.052313"], ["updated_at", "2020-04-22 05:37:15.052313"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (27.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_807804


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Course Create (28.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.062125"], ["updated_at", "2020-04-22 05:37:15.062125"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.088924"], ["updated_at", "2020-04-22 05:37:15.088924"]]
 (0.2ms)  begin transaction
Bucket Create (6.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.101161"], ["updated_at", "2020-04-22 05:37:15.101161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.101250"], ["updated_at", "2020-04-22 05:37:15.101250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.115602"], ["updated_at", "2020-04-22 05:37:15.115602"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_789

 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_412562



 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.164812"], ["updated_at", "2020-04-22 05:37:15.164812"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.166230"], ["updated_at", "2020-04-22 05:37:15.166230"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.180808"], ["updated_at", "2020-04-22 05:37:15.180808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.9ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_546108


Course Create (279.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:14.949721"], ["updated_at", "2020-04-22 05:37:14.949721"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.237254"], ["updated_at", "2020-04-22 05:37:15.237254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.220920"], ["updated_at", "2020-04-22 05:37:15.220920"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (7.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.249590"], ["updated_at", "2020-04-22 05:37:15.249590"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.5ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (2.3ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_963


Course Create (120.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.166017"], ["updated_at", "2020-04-22 05:37:15.166017"]]
 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (10.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.302101"], ["updated_at", "2020-04-22 05:37:15.302101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.297972"], ["updated_at", "2020-04-22 05:37:15.297972"]]
Recording Create (4.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.326446"], ["updated_at", "2020-04-22 05:37:15.326446"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (7.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.349303"], ["updated_at", "2020-04-22 05:37:15.349303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.365289"], ["updated_at", "2020-04-22 05:37:15.365289"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_755870


Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.441295"], ["updated_at", "2020-04-22 05:37:15.441295"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.453324"], ["updated_at", "2020-04-22 05:37:15.453324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  begin transaction

CommentTest: test_167


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.466077"], ["updated_at", "2020-04-22 05:37:15.466077"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (31.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_699


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (14.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.503538"], ["updated_at", "2020-04-22 05:37:15.503538"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (71.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.467468"], ["updated_at", "2020-04-22 05:37:15.467468"]]
 (0.2ms)  begin transaction

CommentTest: test_981080


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.546812"], ["updated_at", "2020-04-22 05:37:15.546812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.552988"], ["updated_at", "2020-04-22 05:37:15.552988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.555943"], ["updated_at", "2020-04-22 05:37:15.555943"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (10.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.560786"], ["updated_at", "2020-04-22 05:37:15.560786"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.548488"], ["updated_at", "2020-04-22 05:37:15.548488"]]
 (0.2ms)  begin transaction

CommentTest: test_104


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.594187"], ["updated_at", "2020-04-22 05:37:15.594187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_171


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.603118"], ["updated_at", "2020-04-22 05:37:15.603118"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.607036"], ["updated_at", "2020-04-22 05:37:15.607036"]]
 (7.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.618877"], ["updated_at", "2020-04-22 05:37:15.618877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.626708"], ["updated_at", "2020-04-22 05:37:15.626708"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_573230


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.669045"], ["updated_at", "2020-04-22 05:37:15.669045"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.685594"], ["updated_at", "2020-04-22 05:37:15.685594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.696573"], ["updated_at", "2020-04-22 05:37:15.696573"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_565


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.717969"], ["updated_at", "2020-04-22 05:37:15.717969"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.727534"], ["updated_at", "2020-04-22 05:37:15.727534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (7.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.735452"], ["updated_at", "2020-04-22 05:37:15.735452"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (14.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

 (0.5ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_574729


 (1.8ms)  rollback transaction
Course Create (555.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.232031"], ["updated_at", "2020-04-22 05:37:15.232031"]]
Course Create (202.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.589572"], ["updated_at", "2020-04-22 05:37:15.589572"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.796046"], ["updated_at", "2020-04-22 05:37:15.796046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.802677"], ["updated_at", "2020-04-22 05:37:15.802677"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.804389"], ["updated_at", "2020-04-22 05:37:15.804389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.816779"], ["updated_at", "2020-04-22 05:37:15.816779"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_432944


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.835008"], ["updated_at", "2020-04-22 05:37:15.835008"]]
 (2.2ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.846429"], ["updated_at", "2020-04-22 05:37:15.846429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_962


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.773378"], ["updated_at", "2020-04-22 05:37:15.773378"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.853413"], ["updated_at", "2020-04-22 05:37:15.853413"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.861824"], ["updated_at", "2020-04-22 05:37:15.861824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_653


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_233779


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.883088"], ["updated_at", "2020-04-22 05:37:15.883088"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.903826"], ["updated_at", "2020-04-22 05:37:15.903826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.876065"], ["updated_at", "2020-04-22 05:37:15.876065"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.927081"], ["updated_at", "2020-04-22 05:37:15.927081"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_23429


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (115.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.853068"], ["updated_at", "2020-04-22 05:37:15.853068"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:15.976035"], ["updated_at", "2020-04-22 05:37:15.976035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:15.986188"], ["updated_at", "2020-04-22 05:37:15.986188"]]
 (19.5ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_280


Course Create (96.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.889536"], ["updated_at", "2020-04-22 05:37:15.889536"]]
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.003575"], ["updated_at", "2020-04-22 05:37:16.003575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.032856"], ["updated_at", "2020-04-22 05:37:16.032856"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_305


Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.067221"], ["updated_at", "2020-04-22 05:37:16.067221"]]
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_135831


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.083327"], ["updated_at", "2020-04-22 05:37:16.083327"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.075806"], ["updated_at", "2020-04-22 05:37:16.075806"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.098509"], ["updated_at", "2020-04-22 05:37:16.098509"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.102677"], ["updated_at", "2020-04-22 05:37:16.102677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.131650"], ["updated_at", "2020-04-22 05:37:16.131650"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (6.3ms)  RELEASE SAVEPOINT active_record_1
 (8.4ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_945


 (0.6ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (212.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:15.967602"], ["updated_at", "2020-04-22 05:37:15.967602"]]
 (2.1ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.188401"], ["updated_at", "2020-04-22 05:37:16.188401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.195878"], ["updated_at", "2020-04-22 05:37:16.195878"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_490799


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (183.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.002457"], ["updated_at", "2020-04-22 05:37:16.002457"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.220350"], ["updated_at", "2020-04-22 05:37:16.220350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_104018


Course Create (51.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.173016"], ["updated_at", "2020-04-22 05:37:16.173016"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.230382"], ["updated_at", "2020-04-22 05:37:16.230382"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.234293"], ["updated_at", "2020-04-22 05:37:16.234293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.242182"], ["updated_at", "2020-04-22 05:37:16.242182"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction
Course Create (44.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.231301"], ["updated_at", "2020-04-22 05:37:16.231301"]]

CommentTest: test_204


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.281759"], ["updated_at", "2020-04-22 05:37:16.281759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.289300"], ["updated_at", "2020-04-22 05:37:16.289300"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_587


 (0.3ms)  SAVEPOINT active_record_1
Course Create (111.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.208826"], ["updated_at", "2020-04-22 05:37:16.208826"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.334743"], ["updated_at", "2020-04-22 05:37:16.334743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.343814"], ["updated_at", "2020-04-22 05:37:16.343814"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (67.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.281375"], ["updated_at", "2020-04-22 05:37:16.281375"]]
 (0.2ms)  begin transaction

CommentTest: test_371


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.359586"], ["updated_at", "2020-04-22 05:37:16.359586"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.385345"], ["updated_at", "2020-04-22 05:37:16.385345"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (62.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.327008"], ["updated_at", "2020-04-22 05:37:16.327008"]]
 (0.2ms)  begin transaction

CommentTest: test_510291


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.398755"], ["updated_at", "2020-04-22 05:37:16.398755"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.407222"], ["updated_at", "2020-04-22 05:37:16.407222"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (14.1ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (31.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.400767"], ["updated_at", "2020-04-22 05:37:16.400767"]]
 (0.2ms)  begin transaction

CommentTest: test_641


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.440655"], ["updated_at", "2020-04-22 05:37:16.440655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (20.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_257


Course Create (98.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.376381"], ["updated_at", "2020-04-22 05:37:16.376381"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (10.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.467566"], ["updated_at", "2020-04-22 05:37:16.467566"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.482102"], ["updated_at", "2020-04-22 05:37:16.482102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.490551"], ["updated_at", "2020-04-22 05:37:16.490551"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (69.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.441759"], ["updated_at", "2020-04-22 05:37:16.441759"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.522112"], ["updated_at", "2020-04-22 05:37:16.522112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.533357"], ["updated_at", "2020-04-22 05:37:16.533357"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_774253


 (2.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  begin transaction
Course Create (82.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.472992"], ["updated_at", "2020-04-22 05:37:16.472992"]]

CommentTest: test_103663


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.567285"], ["updated_at", "2020-04-22 05:37:16.567285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.572294"], ["updated_at", "2020-04-22 05:37:16.572294"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.5ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_446


Course Create (49.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.549281"], ["updated_at", "2020-04-22 05:37:16.549281"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.605027"], ["updated_at", "2020-04-22 05:37:16.605027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.621809"], ["updated_at", "2020-04-22 05:37:16.621809"]]
 (132.5ms)  rollback transaction
Course Create (165.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.578323"], ["updated_at", "2020-04-22 05:37:16.578323"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.751129"], ["updated_at", "2020-04-22 05:37:16.751129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_848


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.758493"], ["updated_at", "2020-04-22 05:37:16.758493"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (27.6ms)  rollback transaction
 (9.6ms)  rollback transaction
Course Create (57.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.772535"], ["updated_at", "2020-04-22 05:37:16.772535"]]
Course Create (241.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.603656"], ["updated_at", "2020-04-22 05:37:16.603656"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.841058"], ["updated_at", "2020-04-22 05:37:16.841058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_186090


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (7.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.854755"], ["updated_at", "2020-04-22 05:37:16.854755"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.853527"], ["updated_at", "2020-04-22 05:37:16.853527"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.869668"], ["updated_at", "2020-04-22 05:37:16.869668"]]

CommentTest: test_637446


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction
Course Create (59.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.853993"], ["updated_at", "2020-04-22 05:37:16.853993"]]

CommentTest: test_76


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.919672"], ["updated_at", "2020-04-22 05:37:16.919672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.933855"], ["updated_at", "2020-04-22 05:37:16.933855"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (15.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_442


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (94.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.879862"], ["updated_at", "2020-04-22 05:37:16.879862"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:16.983479"], ["updated_at", "2020-04-22 05:37:16.983479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:16.994180"], ["updated_at", "2020-04-22 05:37:16.994180"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_856388


Course Create (106.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.919362"], ["updated_at", "2020-04-22 05:37:16.919362"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.033911"], ["updated_at", "2020-04-22 05:37:17.033911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.054850"], ["updated_at", "2020-04-22 05:37:17.054850"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.6ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_228014


 (0.9ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.096393"], ["updated_at", "2020-04-22 05:37:17.096393"]]
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_529


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.111702"], ["updated_at", "2020-04-22 05:37:17.111702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.119971"], ["updated_at", "2020-04-22 05:37:17.119971"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.119269"], ["updated_at", "2020-04-22 05:37:17.119269"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (31.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.132350"], ["updated_at", "2020-04-22 05:37:17.132350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.169725"], ["updated_at", "2020-04-22 05:37:17.169725"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (212.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:16.978002"], ["updated_at", "2020-04-22 05:37:16.978002"]]
 (0.2ms)  begin transaction

CommentTest: test_320809


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.198451"], ["updated_at", "2020-04-22 05:37:17.198451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.206606"], ["updated_at", "2020-04-22 05:37:17.206606"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.8ms)  rollback transaction
 (1.5ms)  rollback transaction
Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.217177"], ["updated_at", "2020-04-22 05:37:17.217177"]]
 (0.2ms)  begin transaction

CommentTest: test_978


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.239787"], ["updated_at", "2020-04-22 05:37:17.239787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_537


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.249674"], ["updated_at", "2020-04-22 05:37:17.249674"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.245822"], ["updated_at", "2020-04-22 05:37:17.245822"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.260000"], ["updated_at", "2020-04-22 05:37:17.260000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.270719"], ["updated_at", "2020-04-22 05:37:17.270719"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_579635


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (281.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.029699"], ["updated_at", "2020-04-22 05:37:17.029699"]]
Course Create (17.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.298810"], ["updated_at", "2020-04-22 05:37:17.298810"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.317511"], ["updated_at", "2020-04-22 05:37:17.317511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.323941"], ["updated_at", "2020-04-22 05:37:17.323941"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.324180"], ["updated_at", "2020-04-22 05:37:17.324180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_516


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.331400"], ["updated_at", "2020-04-22 05:37:17.331400"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_400955


Course Create (13.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.333488"], ["updated_at", "2020-04-22 05:37:17.333488"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (21.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.355011"], ["updated_at", "2020-04-22 05:37:17.355011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.370082"], ["updated_at", "2020-04-22 05:37:17.370082"]]
 (1.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
Course Create (149.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.241233"], ["updated_at", "2020-04-22 05:37:17.241233"]]

CommentTest: test_178765


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.398092"], ["updated_at", "2020-04-22 05:37:17.398092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.407671"], ["updated_at", "2020-04-22 05:37:17.407671"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_411


Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (6.0ms)  rollback transaction
Course Create (36.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.399756"], ["updated_at", "2020-04-22 05:37:17.399756"]]
Course Create (93.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.352721"], ["updated_at", "2020-04-22 05:37:17.352721"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.446197"], ["updated_at", "2020-04-22 05:37:17.446197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.453573"], ["updated_at", "2020-04-22 05:37:17.453573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_846


Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.461052"], ["updated_at", "2020-04-22 05:37:17.461052"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.479489"], ["updated_at", "2020-04-22 05:37:17.479489"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (16.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.469595"], ["updated_at", "2020-04-22 05:37:17.469595"]]
 (0.2ms)  begin transaction

CommentTest: test_892322


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.502861"], ["updated_at", "2020-04-22 05:37:17.502861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.520117"], ["updated_at", "2020-04-22 05:37:17.520117"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (28.5ms)  rollback transaction
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_581737


 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_397


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (113.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.436443"], ["updated_at", "2020-04-22 05:37:17.436443"]]
Course Create (47.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.503355"], ["updated_at", "2020-04-22 05:37:17.503355"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.557151"], ["updated_at", "2020-04-22 05:37:17.557151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.562526"], ["updated_at", "2020-04-22 05:37:17.562526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.569557"], ["updated_at", "2020-04-22 05:37:17.569557"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.574451"], ["updated_at", "2020-04-22 05:37:17.574451"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_25


Course Create (51.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.542866"], ["updated_at", "2020-04-22 05:37:17.542866"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.606658"], ["updated_at", "2020-04-22 05:37:17.606658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.1ms)  rollback transaction
Course Create (60.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.549964"], ["updated_at", "2020-04-22 05:37:17.549964"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.617704"], ["updated_at", "2020-04-22 05:37:17.617704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.619536"], ["updated_at", "2020-04-22 05:37:17.619536"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_541333


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.638602"], ["updated_at", "2020-04-22 05:37:17.638602"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_1016


 (0.3ms)  SAVEPOINT active_record_1
Course Create (42.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.607809"], ["updated_at", "2020-04-22 05:37:17.607809"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.664131"], ["updated_at", "2020-04-22 05:37:17.664131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.669674"], ["updated_at", "2020-04-22 05:37:17.669674"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (15.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_72


Course Create (38.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.656572"], ["updated_at", "2020-04-22 05:37:17.656572"]]
 (0.2ms)  begin transaction

CommentTest: test_312


 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.702147"], ["updated_at", "2020-04-22 05:37:17.702147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (68.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.636013"], ["updated_at", "2020-04-22 05:37:17.636013"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.711727"], ["updated_at", "2020-04-22 05:37:17.711727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.719134"], ["updated_at", "2020-04-22 05:37:17.719134"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.719598"], ["updated_at", "2020-04-22 05:37:17.719598"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  rollback transaction
 (11.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (61.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.701133"], ["updated_at", "2020-04-22 05:37:17.701133"]]
 (0.2ms)  begin transaction

CommentTest: test_216352


 (11.4ms)  rollback transaction
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.770988"], ["updated_at", "2020-04-22 05:37:17.770988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (71.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.706872"], ["updated_at", "2020-04-22 05:37:17.706872"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.786808"], ["updated_at", "2020-04-22 05:37:17.786808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.823791"], ["updated_at", "2020-04-22 05:37:17.823791"]]
 (0.3ms)  begin transaction

 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_132522

Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.786308"], ["updated_at", "2020-04-22 05:37:17.786308"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (4.8ms)  rollback transaction
Course Create (166.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.783321"], ["updated_at", "2020-04-22 05:37:17.783321"]]
 (0.3ms)  begin transaction

CommentTest: test_381


 (0.2ms)  begin transaction

CommentTest: test_850


Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.957968"], ["updated_at", "2020-04-22 05:37:17.957968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.960161"], ["updated_at", "2020-04-22 05:37:17.960161"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:17.965286"], ["updated_at", "2020-04-22 05:37:17.965286"]]
 (1.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
Course Create (26.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.959402"], ["updated_at", "2020-04-22 05:37:17.959402"]]
 (0.2ms)  begin transaction

CommentTest: test_942404


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.002314"], ["updated_at", "2020-04-22 05:37:18.002314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:17.969914"], ["updated_at", "2020-04-22 05:37:17.969914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.022790"], ["updated_at", "2020-04-22 05:37:18.022790"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.041229"], ["updated_at", "2020-04-22 05:37:18.041229"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (12.7ms)  rollback transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_234


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.103189"], ["updated_at", "2020-04-22 05:37:18.103189"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.116509"], ["updated_at", "2020-04-22 05:37:18.116509"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_870


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.126215"], ["updated_at", "2020-04-22 05:37:18.126215"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.151324"], ["updated_at", "2020-04-22 05:37:18.151324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.123073"], ["updated_at", "2020-04-22 05:37:18.123073"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.159590"], ["updated_at", "2020-04-22 05:37:18.159590"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (6.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_952


 (0.6ms)  SAVEPOINT active_record_1
Course Create (14.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.233147"], ["updated_at", "2020-04-22 05:37:18.233147"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.258317"], ["updated_at", "2020-04-22 05:37:18.258317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (84.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_241


 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.295989"], ["updated_at", "2020-04-22 05:37:18.295989"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.317984"], ["updated_at", "2020-04-22 05:37:18.317984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.272863"], ["updated_at", "2020-04-22 05:37:18.272863"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (7.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (8.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.334414"], ["updated_at", "2020-04-22 05:37:18.334414"]]
 (6.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
 (14.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_998


 (8.0ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.400599"], ["updated_at", "2020-04-22 05:37:18.400599"]]
 (0.2ms)  begin transaction

CommentTest: test_843


Course Create (448.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.002475"], ["updated_at", "2020-04-22 05:37:18.002475"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.460622"], ["updated_at", "2020-04-22 05:37:18.460622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.474014"], ["updated_at", "2020-04-22 05:37:18.474014"]]
 (19.9ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.420032"], ["updated_at", "2020-04-22 05:37:18.420032"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_325664


 (0.4ms)  SAVEPOINT active_record_1
Course Create (49.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.449882"], ["updated_at", "2020-04-22 05:37:18.449882"]]
Recording Create (30.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.500810"], ["updated_at", "2020-04-22 05:37:18.500810"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.535525"], ["updated_at", "2020-04-22 05:37:18.535525"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.571921"], ["updated_at", "2020-04-22 05:37:18.571921"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (8.5ms)  rollback transaction
 (71.6ms)  rollback transaction
 (0.5ms)  begin transaction
Course Create (174.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.520775"], ["updated_at", "2020-04-22 05:37:18.520775"]]

CommentTest: test_18


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.712209"], ["updated_at", "2020-04-22 05:37:18.712209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.722367"], ["updated_at", "2020-04-22 05:37:18.722367"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.4ms)  begin transaction

CommentTest: test_144


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.740017"], ["updated_at", "2020-04-22 05:37:18.740017"]]
 (2.0ms)  rollback transaction
 (0.4ms)  begin transaction
Course Create (42.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.718525"], ["updated_at", "2020-04-22 05:37:18.718525"]]

CommentTest: test_617176

Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.761250"], ["updated_at", "2020-04-22 05:37:18.761250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.771935"], ["updated_at", "2020-04-22 05:37:18.771935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.774682"], ["updated_at", "2020-04-22 05:37:18.774682"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.784380"], ["updated_at", "2020-04-22 05:37:18.784380"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (13.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (60.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.776538"], ["updated_at", "2020-04-22 05:37:18.776538"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.845581"], ["updated_at", "2020-04-22 05:37:18.845581"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.4ms)  rollback transaction
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.868055"], ["updated_at", "2020-04-22 05:37:18.868055"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_418


 (0.6ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_787


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.904726"], ["updated_at", "2020-04-22 05:37:18.904726"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_984639


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.962343"], ["updated_at", "2020-04-22 05:37:18.962343"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.970681"], ["updated_at", "2020-04-22 05:37:18.970681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:18.973733"], ["updated_at", "2020-04-22 05:37:18.973733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.989338"], ["updated_at", "2020-04-22 05:37:18.989338"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:18.990783"], ["updated_at", "2020-04-22 05:37:18.990783"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_268


Course Create (1163.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:17.886855"], ["updated_at", "2020-04-22 05:37:17.886855"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.065286"], ["updated_at", "2020-04-22 05:37:19.065286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.074142"], ["updated_at", "2020-04-22 05:37:19.074142"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_329827


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.104354"], ["updated_at", "2020-04-22 05:37:19.104354"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.119470"], ["updated_at", "2020-04-22 05:37:19.119470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.130276"], ["updated_at", "2020-04-22 05:37:19.130276"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (79.7ms)  SAVEPOINT active_record_1
Comment Create (8.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (271.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:18.885313"], ["updated_at", "2020-04-22 05:37:18.885313"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.165369"], ["updated_at", "2020-04-22 05:37:19.165369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.174688"], ["updated_at", "2020-04-22 05:37:19.174688"]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_995563


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_274


 (0.3ms)  SAVEPOINT active_record_1
Course Create (20.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.189820"], ["updated_at", "2020-04-22 05:37:19.189820"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.236558"], ["updated_at", "2020-04-22 05:37:19.236558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_479381


 (0.5ms)  SAVEPOINT active_record_1
Course Create (152.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.053442"], ["updated_at", "2020-04-22 05:37:19.053442"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.294055"], ["updated_at", "2020-04-22 05:37:19.294055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.287359"], ["updated_at", "2020-04-22 05:37:19.287359"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.301060"], ["updated_at", "2020-04-22 05:37:19.301060"]]
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (41.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_251


Course Create (109.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.284567"], ["updated_at", "2020-04-22 05:37:19.284567"]]
 (1.8ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.400728"], ["updated_at", "2020-04-22 05:37:19.400728"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.414621"], ["updated_at", "2020-04-22 05:37:19.414621"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (60.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_831334


Course Create (48.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.389134"], ["updated_at", "2020-04-22 05:37:19.389134"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.449508"], ["updated_at", "2020-04-22 05:37:19.449508"]]
 (0.2ms)  begin transaction

CommentTest: test_746038


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.461494"], ["updated_at", "2020-04-22 05:37:19.461494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.480071"], ["updated_at", "2020-04-22 05:37:19.480071"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (29.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.585519"], ["updated_at", "2020-04-22 05:37:19.585519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.627533"], ["updated_at", "2020-04-22 05:37:19.627533"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_640


Course Create (190.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.469930"], ["updated_at", "2020-04-22 05:37:19.469930"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.669291"], ["updated_at", "2020-04-22 05:37:19.669291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.680568"], ["updated_at", "2020-04-22 05:37:19.680568"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  begin transaction

CommentTest: test_822656


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (562.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.209265"], ["updated_at", "2020-04-22 05:37:19.209265"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.780885"], ["updated_at", "2020-04-22 05:37:19.780885"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.789009"], ["updated_at", "2020-04-22 05:37:19.789009"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_413


 (0.3ms)  SAVEPOINT active_record_1
Course Create (97.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.734250"], ["updated_at", "2020-04-22 05:37:19.734250"]]
 (67.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_913345


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.843816"], ["updated_at", "2020-04-22 05:37:19.843816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.851118"], ["updated_at", "2020-04-22 05:37:19.851118"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.862349"], ["updated_at", "2020-04-22 05:37:19.862349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.869239"], ["updated_at", "2020-04-22 05:37:19.869239"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.884414"], ["updated_at", "2020-04-22 05:37:19.884414"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (40.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (293.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.664140"], ["updated_at", "2020-04-22 05:37:19.664140"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.971870"], ["updated_at", "2020-04-22 05:37:19.971870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (148.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:19.832288"], ["updated_at", "2020-04-22 05:37:19.832288"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.983479"], ["updated_at", "2020-04-22 05:37:19.983479"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:19.987307"], ["updated_at", "2020-04-22 05:37:19.987307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (23.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Recording Create (5.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:19.999824"], ["updated_at", "2020-04-22 05:37:19.999824"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_784


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_910403


Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.016023"], ["updated_at", "2020-04-22 05:37:20.016023"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.027072"], ["updated_at", "2020-04-22 05:37:20.027072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_689689


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.035086"], ["updated_at", "2020-04-22 05:37:20.035086"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Course Create (29.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.038454"], ["updated_at", "2020-04-22 05:37:20.038454"]]
 (0.5ms)  begin transaction

CommentTest: test_489


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.083234"], ["updated_at", "2020-04-22 05:37:20.083234"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (71.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.023231"], ["updated_at", "2020-04-22 05:37:20.023231"]]
Bucket Create (4.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.108849"], ["updated_at", "2020-04-22 05:37:20.108849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.100471"], ["updated_at", "2020-04-22 05:37:20.100471"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.125760"], ["updated_at", "2020-04-22 05:37:20.125760"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_523


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (5.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (5.6ms)  rollback transaction
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (17.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.150101"], ["updated_at", "2020-04-22 05:37:20.150101"]]
 (0.2ms)  begin transaction

CommentTest: test_298527


Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.178456"], ["updated_at", "2020-04-22 05:37:20.178456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (97.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.085978"], ["updated_at", "2020-04-22 05:37:20.085978"]]
 (0.2ms)  begin transaction

CommentTest: test_511586


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.193160"], ["updated_at", "2020-04-22 05:37:20.193160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.201918"], ["updated_at", "2020-04-22 05:37:20.201918"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.202879"], ["updated_at", "2020-04-22 05:37:20.202879"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
Course Create (43.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.188920"], ["updated_at", "2020-04-22 05:37:20.188920"]]
 (1.6ms)  begin transaction

CommentTest: test_364


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.249108"], ["updated_at", "2020-04-22 05:37:20.249108"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.256179"], ["updated_at", "2020-04-22 05:37:20.256179"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_609


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (11.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (16.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.278681"], ["updated_at", "2020-04-22 05:37:20.278681"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_592062


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.312742"], ["updated_at", "2020-04-22 05:37:20.312742"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.303835"], ["updated_at", "2020-04-22 05:37:20.303835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.326704"], ["updated_at", "2020-04-22 05:37:20.326704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.336716"], ["updated_at", "2020-04-22 05:37:20.336716"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.337998"], ["updated_at", "2020-04-22 05:37:20.337998"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_74114


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.385977"], ["updated_at", "2020-04-22 05:37:20.385977"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.400312"], ["updated_at", "2020-04-22 05:37:20.400312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.410180"], ["updated_at", "2020-04-22 05:37:20.410180"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_554


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.432922"], ["updated_at", "2020-04-22 05:37:20.432922"]]
Bucket Create (5.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.444499"], ["updated_at", "2020-04-22 05:37:20.444499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.471904"], ["updated_at", "2020-04-22 05:37:20.471904"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.7ms)  rollback transaction
 (9.8ms)  begin transaction

CommentTest: test_966838


 (49.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.589308"], ["updated_at", "2020-04-22 05:37:20.589308"]]
 (0.2ms)  begin transaction

CommentTest: test_562


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.602290"], ["updated_at", "2020-04-22 05:37:20.602290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.615311"], ["updated_at", "2020-04-22 05:37:20.615311"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.605696"], ["updated_at", "2020-04-22 05:37:20.605696"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (123.0ms)  SAVEPOINT active_record_1
Bucket Create (15.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.626930"], ["updated_at", "2020-04-22 05:37:20.626930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (16.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.785609"], ["updated_at", "2020-04-22 05:37:20.785609"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_645863


Course Create (553.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.252673"], ["updated_at", "2020-04-22 05:37:20.252673"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.811914"], ["updated_at", "2020-04-22 05:37:20.811914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.819045"], ["updated_at", "2020-04-22 05:37:20.819045"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_727


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.862408"], ["updated_at", "2020-04-22 05:37:20.862408"]]
 (35.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_712


 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.879233"], ["updated_at", "2020-04-22 05:37:20.879233"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.917468"], ["updated_at", "2020-04-22 05:37:20.917468"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:20.932054"], ["updated_at", "2020-04-22 05:37:20.932054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.950093"], ["updated_at", "2020-04-22 05:37:20.950093"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:20.938587"], ["updated_at", "2020-04-22 05:37:20.938587"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (9.4ms)  rollback transaction
Course Create (854.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.184076"], ["updated_at", "2020-04-22 05:37:20.184076"]]
 (0.2ms)  begin transaction
 (0.3ms)  begin transaction

CommentTest: test_662



CommentTest: test_174


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.056159"], ["updated_at", "2020-04-22 05:37:21.056159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (178.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:20.804846"], ["updated_at", "2020-04-22 05:37:20.804846"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.063715"], ["updated_at", "2020-04-22 05:37:21.063715"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (11.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.067362"], ["updated_at", "2020-04-22 05:37:21.067362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (5.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.084952"], ["updated_at", "2020-04-22 05:37:21.084952"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_741383


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.062108"], ["updated_at", "2020-04-22 05:37:21.062108"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (35.4ms)  rollback transaction
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.152569"], ["updated_at", "2020-04-22 05:37:21.152569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_424602


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.163618"], ["updated_at", "2020-04-22 05:37:21.163618"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.163811"], ["updated_at", "2020-04-22 05:37:21.163811"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.176830"], ["updated_at", "2020-04-22 05:37:21.176830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (15.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.186084"], ["updated_at", "2020-04-22 05:37:21.186084"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_928


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_372976


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.242210"], ["updated_at", "2020-04-22 05:37:21.242210"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.266680"], ["updated_at", "2020-04-22 05:37:21.266680"]]
Bucket Create (5.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.288301"], ["updated_at", "2020-04-22 05:37:21.288301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (12.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.278573"], ["updated_at", "2020-04-22 05:37:21.278573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.312277"], ["updated_at", "2020-04-22 05:37:21.312277"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.303753"], ["updated_at", "2020-04-22 05:37:21.303753"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (7.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (32.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (22.2ms)  rollback transaction
 (26.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_889


 (0.2ms)  begin transaction

CommentTest: test_438937


 (1.7ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.418361"], ["updated_at", "2020-04-22 05:37:21.418361"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.426025"], ["updated_at", "2020-04-22 05:37:21.426025"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.443640"], ["updated_at", "2020-04-22 05:37:21.443640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.436930"], ["updated_at", "2020-04-22 05:37:21.436930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.463550"], ["updated_at", "2020-04-22 05:37:21.463550"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.459613"], ["updated_at", "2020-04-22 05:37:21.459613"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (44.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (11.0ms)  rollback transaction
 (4.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_841


Course Create (455.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.106153"], ["updated_at", "2020-04-22 05:37:21.106153"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.569216"], ["updated_at", "2020-04-22 05:37:21.569216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (32.9ms)  rollback transaction
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.576877"], ["updated_at", "2020-04-22 05:37:21.576877"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.3ms)  begin transaction

CommentTest: test_567552


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (16.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.559022"], ["updated_at", "2020-04-22 05:37:21.559022"]]
 (0.5ms)  begin transaction

CommentTest: test_912724


 (1.4ms)  SAVEPOINT active_record_1
Course Create (14.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.595114"], ["updated_at", "2020-04-22 05:37:21.595114"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.617604"], ["updated_at", "2020-04-22 05:37:21.617604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.620730"], ["updated_at", "2020-04-22 05:37:21.620730"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.627156"], ["updated_at", "2020-04-22 05:37:21.627156"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.628619"], ["updated_at", "2020-04-22 05:37:21.628619"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (49.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (44.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_498823


 (8.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_7


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.720834"], ["updated_at", "2020-04-22 05:37:21.720834"]]
Course Create (128.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.608069"], ["updated_at", "2020-04-22 05:37:21.608069"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.745434"], ["updated_at", "2020-04-22 05:37:21.745434"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.754048"], ["updated_at", "2020-04-22 05:37:21.754048"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_702407


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.788188"], ["updated_at", "2020-04-22 05:37:21.788188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.792553"], ["updated_at", "2020-04-22 05:37:21.792553"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.802427"], ["updated_at", "2020-04-22 05:37:21.802427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.809880"], ["updated_at", "2020-04-22 05:37:21.809880"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.800437"], ["updated_at", "2020-04-22 05:37:21.800437"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
Course Create (205.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.743561"], ["updated_at", "2020-04-22 05:37:21.743561"]]
 (0.2ms)  begin transaction

CommentTest: test_377622


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.962087"], ["updated_at", "2020-04-22 05:37:21.962087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:21.972942"], ["updated_at", "2020-04-22 05:37:21.972942"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_994329


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.987837"], ["updated_at", "2020-04-22 05:37:21.987837"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:21.998406"], ["updated_at", "2020-04-22 05:37:21.998406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (81.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_66


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.095164"], ["updated_at", "2020-04-22 05:37:22.095164"]]
Recording Create (17.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.085088"], ["updated_at", "2020-04-22 05:37:22.085088"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.127371"], ["updated_at", "2020-04-22 05:37:22.127371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.134708"], ["updated_at", "2020-04-22 05:37:22.134708"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_633711


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.187640"], ["updated_at", "2020-04-22 05:37:22.187640"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.208773"], ["updated_at", "2020-04-22 05:37:22.208773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.240087"], ["updated_at", "2020-04-22 05:37:22.240087"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (43.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_911


 (0.3ms)  SAVEPOINT active_record_1
Course Create (296.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.966812"], ["updated_at", "2020-04-22 05:37:21.966812"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.272309"], ["updated_at", "2020-04-22 05:37:22.272309"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.282520"], ["updated_at", "2020-04-22 05:37:22.282520"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_929934


Course Create (58.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.264867"], ["updated_at", "2020-04-22 05:37:22.264867"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.329850"], ["updated_at", "2020-04-22 05:37:22.329850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_608705


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.340358"], ["updated_at", "2020-04-22 05:37:22.340358"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.355132"], ["updated_at", "2020-04-22 05:37:22.355132"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.417445"], ["updated_at", "2020-04-22 05:37:22.417445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (114.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.328508"], ["updated_at", "2020-04-22 05:37:22.328508"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.497909"], ["updated_at", "2020-04-22 05:37:22.497909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.508507"], ["updated_at", "2020-04-22 05:37:22.508507"]]
Recording Create (76.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.434427"], ["updated_at", "2020-04-22 05:37:22.434427"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_200


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (2.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.2ms)  rollback transaction
 (17.8ms)  rollback transaction
Course Create (29.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.522098"], ["updated_at", "2020-04-22 05:37:22.522098"]]
Course Create (1481.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:21.062160"], ["updated_at", "2020-04-22 05:37:21.062160"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.588172"], ["updated_at", "2020-04-22 05:37:22.588172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.587104"], ["updated_at", "2020-04-22 05:37:22.587104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.593488"], ["updated_at", "2020-04-22 05:37:22.593488"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_834726


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_826


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.639049"], ["updated_at", "2020-04-22 05:37:22.639049"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.649334"], ["updated_at", "2020-04-22 05:37:22.649334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.658144"], ["updated_at", "2020-04-22 05:37:22.658144"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_256404


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.601751"], ["updated_at", "2020-04-22 05:37:22.601751"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (1.8ms)  rollback transaction
Course Create (61.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.702836"], ["updated_at", "2020-04-22 05:37:22.702836"]]
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction


Course Create (154.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.610015"], ["updated_at", "2020-04-22 05:37:22.610015"]]

CommentTest: test_592


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.770925"], ["updated_at", "2020-04-22 05:37:22.770925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.777522"], ["updated_at", "2020-04-22 05:37:22.777522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.3ms)  SAVEPOINT active_record_1

CommentTest: test_215


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.789869"], ["updated_at", "2020-04-22 05:37:22.789869"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.786549"], ["updated_at", "2020-04-22 05:37:22.786549"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (14.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (12.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_675813


 (0.3ms)  SAVEPOINT active_record_1
Course Create (81.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.776677"], ["updated_at", "2020-04-22 05:37:22.776677"]]
Bucket Create (15.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.871989"], ["updated_at", "2020-04-22 05:37:22.871989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (60.2ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.894167"], ["updated_at", "2020-04-22 05:37:22.894167"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_195402


Course Create (117.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.790331"], ["updated_at", "2020-04-22 05:37:22.790331"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.912506"], ["updated_at", "2020-04-22 05:37:22.912506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.915005"], ["updated_at", "2020-04-22 05:37:22.915005"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_975


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.918901"], ["updated_at", "2020-04-22 05:37:22.918901"]]
 (0.5ms)  rollback transaction
Course Create (10.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.910236"], ["updated_at", "2020-04-22 05:37:22.910236"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.922554"], ["updated_at", "2020-04-22 05:37:22.922554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.923821"], ["updated_at", "2020-04-22 05:37:22.923821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.925536"], ["updated_at", "2020-04-22 05:37:22.925536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.926049"], ["updated_at", "2020-04-22 05:37:22.926049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_153


 (2.7ms)  rollback transaction
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_373463


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.934501"], ["updated_at", "2020-04-22 05:37:22.934501"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.937542"], ["updated_at", "2020-04-22 05:37:22.937542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_624


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.940072"], ["updated_at", "2020-04-22 05:37:22.940072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.941237"], ["updated_at", "2020-04-22 05:37:22.941237"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.944295"], ["updated_at", "2020-04-22 05:37:22.944295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_393


Course Create (11.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.936951"], ["updated_at", "2020-04-22 05:37:22.936951"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.950620"], ["updated_at", "2020-04-22 05:37:22.950620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.953975"], ["updated_at", "2020-04-22 05:37:22.953975"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.947747"], ["updated_at", "2020-04-22 05:37:22.947747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_814375


 (0.2ms)  begin transaction

CommentTest: test_299


 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.951749"], ["updated_at", "2020-04-22 05:37:22.951749"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.965678"], ["updated_at", "2020-04-22 05:37:22.965678"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.963985"], ["updated_at", "2020-04-22 05:37:22.963985"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.967399"], ["updated_at", "2020-04-22 05:37:22.967399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.970861"], ["updated_at", "2020-04-22 05:37:22.970861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.975976"], ["updated_at", "2020-04-22 05:37:22.975976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_474


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.978654"], ["updated_at", "2020-04-22 05:37:22.978654"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:22.981578"], ["updated_at", "2020-04-22 05:37:22.981578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:22.984579"], ["updated_at", "2020-04-22 05:37:22.984579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (33.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.963266"], ["updated_at", "2020-04-22 05:37:22.963266"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.000148"], ["updated_at", "2020-04-22 05:37:23.000148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.002879"], ["updated_at", "2020-04-22 05:37:23.002879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (139.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:22.859437"], ["updated_at", "2020-04-22 05:37:22.859437"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.008110"], ["updated_at", "2020-04-22 05:37:23.008110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.010092"], ["updated_at", "2020-04-22 05:37:23.010092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_463156


 (0.1ms)  begin transaction

CommentTest: test_341086


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.025501"], ["updated_at", "2020-04-22 05:37:23.025501"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.025733"], ["updated_at", "2020-04-22 05:37:23.025733"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.028099"], ["updated_at", "2020-04-22 05:37:23.028099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.028099"], ["updated_at", "2020-04-22 05:37:23.028099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.030295"], ["updated_at", "2020-04-22 05:37:23.030295"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.030483"], ["updated_at", "2020-04-22 05:37:23.030483"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_135995


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.040112"], ["updated_at", "2020-04-22 05:37:23.040112"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.042541"], ["updated_at", "2020-04-22 05:37:23.042541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_349810


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.044300"], ["updated_at", "2020-04-22 05:37:23.044300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.045363"], ["updated_at", "2020-04-22 05:37:23.045363"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.049213"], ["updated_at", "2020-04-22 05:37:23.049213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_363174

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.051341"], ["updated_at", "2020-04-22 05:37:23.051341"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.053144"], ["updated_at", "2020-04-22 05:37:23.053144"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.056022"], ["updated_at", "2020-04-22 05:37:23.056022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.058723"], ["updated_at", "2020-04-22 05:37:23.058723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_838673


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.062866"], ["updated_at", "2020-04-22 05:37:23.062866"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.069049"], ["updated_at", "2020-04-22 05:37:23.069049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_986074


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.071414"], ["updated_at", "2020-04-22 05:37:23.071414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.070809"], ["updated_at", "2020-04-22 05:37:23.070809"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.074165"], ["updated_at", "2020-04-22 05:37:23.074165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.076265"], ["updated_at", "2020-04-22 05:37:23.076265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_300825


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.080970"], ["updated_at", "2020-04-22 05:37:23.080970"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_850024


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.084973"], ["updated_at", "2020-04-22 05:37:23.084973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.087062"], ["updated_at", "2020-04-22 05:37:23.087062"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.086812"], ["updated_at", "2020-04-22 05:37:23.086812"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.091945"], ["updated_at", "2020-04-22 05:37:23.091945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_585122


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.095474"], ["updated_at", "2020-04-22 05:37:23.095474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.097792"], ["updated_at", "2020-04-22 05:37:23.097792"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.100258"], ["updated_at", "2020-04-22 05:37:23.100258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.102274"], ["updated_at", "2020-04-22 05:37:23.102274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_573736


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.106593"], ["updated_at", "2020-04-22 05:37:23.106593"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_655053


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.109382"], ["updated_at", "2020-04-22 05:37:23.109382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.111540"], ["updated_at", "2020-04-22 05:37:23.111540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.4ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.110888"], ["updated_at", "2020-04-22 05:37:23.110888"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.119587"], ["updated_at", "2020-04-22 05:37:23.119587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_208347


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.122037"], ["updated_at", "2020-04-22 05:37:23.122037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.123320"], ["updated_at", "2020-04-22 05:37:23.123320"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.126574"], ["updated_at", "2020-04-22 05:37:23.126574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.128488"], ["updated_at", "2020-04-22 05:37:23.128488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_187983


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.133685"], ["updated_at", "2020-04-22 05:37:23.133685"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.135952"], ["updated_at", "2020-04-22 05:37:23.135952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.137842"], ["updated_at", "2020-04-22 05:37:23.137842"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_290606


 (0.1ms)  begin transaction

CommentTest: test_832123


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.151586"], ["updated_at", "2020-04-22 05:37:23.151586"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.152032"], ["updated_at", "2020-04-22 05:37:23.152032"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.154336"], ["updated_at", "2020-04-22 05:37:23.154336"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.154354"], ["updated_at", "2020-04-22 05:37:23.154354"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.156671"], ["updated_at", "2020-04-22 05:37:23.156671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.158306"], ["updated_at", "2020-04-22 05:37:23.158306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_887768


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_760515


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.177258"], ["updated_at", "2020-04-22 05:37:23.177258"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.179823"], ["updated_at", "2020-04-22 05:37:23.179823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.179320"], ["updated_at", "2020-04-22 05:37:23.179320"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.182631"], ["updated_at", "2020-04-22 05:37:23.182631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.182531"], ["updated_at", "2020-04-22 05:37:23.182531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.184383"], ["updated_at", "2020-04-22 05:37:23.184383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_166921


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_75090


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.192612"], ["updated_at", "2020-04-22 05:37:23.192612"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.194440"], ["updated_at", "2020-04-22 05:37:23.194440"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.195360"], ["updated_at", "2020-04-22 05:37:23.195360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.199314"], ["updated_at", "2020-04-22 05:37:23.199314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.200093"], ["updated_at", "2020-04-22 05:37:23.200093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.201984"], ["updated_at", "2020-04-22 05:37:23.201984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_26695


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.207521"], ["updated_at", "2020-04-22 05:37:23.207521"]]
 (0.1ms)  begin transaction

CommentTest: test_739741


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.210717"], ["updated_at", "2020-04-22 05:37:23.210717"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.211549"], ["updated_at", "2020-04-22 05:37:23.211549"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.213144"], ["updated_at", "2020-04-22 05:37:23.213144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.214589"], ["updated_at", "2020-04-22 05:37:23.214589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.217593"], ["updated_at", "2020-04-22 05:37:23.217593"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_486


 (0.1ms)  begin transaction

CommentTest: test_181


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.226252"], ["updated_at", "2020-04-22 05:37:23.226252"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.226108"], ["updated_at", "2020-04-22 05:37:23.226108"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.231350"], ["updated_at", "2020-04-22 05:37:23.231350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.231132"], ["updated_at", "2020-04-22 05:37:23.231132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.233578"], ["updated_at", "2020-04-22 05:37:23.233578"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.233828"], ["updated_at", "2020-04-22 05:37:23.233828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_459


 (0.1ms)  begin transaction

CommentTest: test_377


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_171055


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.243406"], ["updated_at", "2020-04-22 05:37:23.243406"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.243192"], ["updated_at", "2020-04-22 05:37:23.243192"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.245657"], ["updated_at", "2020-04-22 05:37:23.245657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.245731"], ["updated_at", "2020-04-22 05:37:23.245731"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.247779"], ["updated_at", "2020-04-22 05:37:23.247779"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.247764"], ["updated_at", "2020-04-22 05:37:23.247764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_848951


 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.250232"], ["updated_at", "2020-04-22 05:37:23.250232"]]
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_506


 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_67


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.258272"], ["updated_at", "2020-04-22 05:37:23.258272"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.258708"], ["updated_at", "2020-04-22 05:37:23.258708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.261710"], ["updated_at", "2020-04-22 05:37:23.261710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.261858"], ["updated_at", "2020-04-22 05:37:23.261858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.263776"], ["updated_at", "2020-04-22 05:37:23.263776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_196166


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (11.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.258802"], ["updated_at", "2020-04-22 05:37:23.258802"]]
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.260327"], ["updated_at", "2020-04-22 05:37:23.260327"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.272727"], ["updated_at", "2020-04-22 05:37:23.272727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.272458"], ["updated_at", "2020-04-22 05:37:23.272458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_602511


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.275071"], ["updated_at", "2020-04-22 05:37:23.275071"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.275073"], ["updated_at", "2020-04-22 05:37:23.275073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_51


 (0.1ms)  begin transaction

CommentTest: test_865


 (0.1ms)  SAVEPOINT active_record_1
Course Create (8.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.276405"], ["updated_at", "2020-04-22 05:37:23.276405"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.270565"], ["updated_at", "2020-04-22 05:37:23.270565"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.287038"], ["updated_at", "2020-04-22 05:37:23.287038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.288185"], ["updated_at", "2020-04-22 05:37:23.288185"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.289831"], ["updated_at", "2020-04-22 05:37:23.289831"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.290286"], ["updated_at", "2020-04-22 05:37:23.290286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.285618"], ["updated_at", "2020-04-22 05:37:23.285618"]]
 (0.1ms)  begin transaction

CommentTest: test_296169


 (0.1ms)  begin transaction

CommentTest: test_97661


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.299391"], ["updated_at", "2020-04-22 05:37:23.299391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.299800"], ["updated_at", "2020-04-22 05:37:23.299800"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.301760"], ["updated_at", "2020-04-22 05:37:23.301760"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.302175"], ["updated_at", "2020-04-22 05:37:23.302175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.304034"], ["updated_at", "2020-04-22 05:37:23.304034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_621


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (11.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.300671"], ["updated_at", "2020-04-22 05:37:23.300671"]]
 (0.1ms)  begin transaction

CommentTest: test_739291


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.314109"], ["updated_at", "2020-04-22 05:37:23.314109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.314230"], ["updated_at", "2020-04-22 05:37:23.314230"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.317047"], ["updated_at", "2020-04-22 05:37:23.317047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.318543"], ["updated_at", "2020-04-22 05:37:23.318543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.320950"], ["updated_at", "2020-04-22 05:37:23.320950"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_437682


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.326305"], ["updated_at", "2020-04-22 05:37:23.326305"]]
 (0.1ms)  begin transaction

CommentTest: test_825862


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.328710"], ["updated_at", "2020-04-22 05:37:23.328710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.329157"], ["updated_at", "2020-04-22 05:37:23.329157"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.331710"], ["updated_at", "2020-04-22 05:37:23.331710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.333076"], ["updated_at", "2020-04-22 05:37:23.333076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.334839"], ["updated_at", "2020-04-22 05:37:23.334839"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_885177


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.342594"], ["updated_at", "2020-04-22 05:37:23.342594"]]
Course Create (59.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.283807"], ["updated_at", "2020-04-22 05:37:23.283807"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.345248"], ["updated_at", "2020-04-22 05:37:23.345248"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.345418"], ["updated_at", "2020-04-22 05:37:23.345418"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.347486"], ["updated_at", "2020-04-22 05:37:23.347486"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.347698"], ["updated_at", "2020-04-22 05:37:23.347698"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_313


 (0.1ms)  begin transaction

CommentTest: test_13352


 (0.1ms)  begin transaction

CommentTest: test_298908


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.356387"], ["updated_at", "2020-04-22 05:37:23.356387"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.356857"], ["updated_at", "2020-04-22 05:37:23.356857"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.359258"], ["updated_at", "2020-04-22 05:37:23.359258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.359536"], ["updated_at", "2020-04-22 05:37:23.359536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.361392"], ["updated_at", "2020-04-22 05:37:23.361392"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.361588"], ["updated_at", "2020-04-22 05:37:23.361588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_672


 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (59.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.311659"], ["updated_at", "2020-04-22 05:37:23.311659"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.370603"], ["updated_at", "2020-04-22 05:37:23.370603"]]
 (0.1ms)  begin transaction

CommentTest: test_572801


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.372857"], ["updated_at", "2020-04-22 05:37:23.372857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.373702"], ["updated_at", "2020-04-22 05:37:23.373702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.374785"], ["updated_at", "2020-04-22 05:37:23.374785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.375552"], ["updated_at", "2020-04-22 05:37:23.375552"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (9.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.373694"], ["updated_at", "2020-04-22 05:37:23.373694"]]
 (0.1ms)  begin transaction

CommentTest: test_687


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.385271"], ["updated_at", "2020-04-22 05:37:23.385271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.385093"], ["updated_at", "2020-04-22 05:37:23.385093"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.387239"], ["updated_at", "2020-04-22 05:37:23.387239"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.387384"], ["updated_at", "2020-04-22 05:37:23.387384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.389708"], ["updated_at", "2020-04-22 05:37:23.389708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_46


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.393289"], ["updated_at", "2020-04-22 05:37:23.393289"]]
 (0.1ms)  begin transaction

 (0.5ms)  rollback transaction

CommentTest: test_284611


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.395933"], ["updated_at", "2020-04-22 05:37:23.395933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_862


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.398058"], ["updated_at", "2020-04-22 05:37:23.398058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.397999"], ["updated_at", "2020-04-22 05:37:23.397999"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.402797"], ["updated_at", "2020-04-22 05:37:23.402797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.405497"], ["updated_at", "2020-04-22 05:37:23.405497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (10.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.396328"], ["updated_at", "2020-04-22 05:37:23.396328"]]
 (0.1ms)  begin transaction

CommentTest: test_697


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.409204"], ["updated_at", "2020-04-22 05:37:23.409204"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.411758"], ["updated_at", "2020-04-22 05:37:23.411758"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_323


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (59.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.356553"], ["updated_at", "2020-04-22 05:37:23.356553"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.417677"], ["updated_at", "2020-04-22 05:37:23.417677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.419679"], ["updated_at", "2020-04-22 05:37:23.419679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_555219


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.424917"], ["updated_at", "2020-04-22 05:37:23.424917"]]
Course Create (10.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.415244"], ["updated_at", "2020-04-22 05:37:23.415244"]]
 (0.1ms)  begin transaction

CommentTest: test_51676


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.428711"], ["updated_at", "2020-04-22 05:37:23.428711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.430809"], ["updated_at", "2020-04-22 05:37:23.430809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.431055"], ["updated_at", "2020-04-22 05:37:23.431055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.432609"], ["updated_at", "2020-04-22 05:37:23.432609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_386


Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.429561"], ["updated_at", "2020-04-22 05:37:23.429561"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.441144"], ["updated_at", "2020-04-22 05:37:23.441144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.443306"], ["updated_at", "2020-04-22 05:37:23.443306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_60837


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (38.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.409080"], ["updated_at", "2020-04-22 05:37:23.409080"]]
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.450620"], ["updated_at", "2020-04-22 05:37:23.450620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_96485


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.452939"], ["updated_at", "2020-04-22 05:37:23.452939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.454180"], ["updated_at", "2020-04-22 05:37:23.454180"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.457244"], ["updated_at", "2020-04-22 05:37:23.457244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.459310"], ["updated_at", "2020-04-22 05:37:23.459310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_588


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (6.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.446654"], ["updated_at", "2020-04-22 05:37:23.446654"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.463068"], ["updated_at", "2020-04-22 05:37:23.463068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.468348"], ["updated_at", "2020-04-22 05:37:23.468348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (37.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.439985"], ["updated_at", "2020-04-22 05:37:23.439985"]]
 (0.1ms)  begin transaction
Course Create (20.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.461639"], ["updated_at", "2020-04-22 05:37:23.461639"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.480773"], ["updated_at", "2020-04-22 05:37:23.480773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.484477"], ["updated_at", "2020-04-22 05:37:23.484477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_591979


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.487092"], ["updated_at", "2020-04-22 05:37:23.487092"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.485010"], ["updated_at", "2020-04-22 05:37:23.485010"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_903529


 (0.1ms)  begin transaction

CommentTest: test_937


Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.486698"], ["updated_at", "2020-04-22 05:37:23.486698"]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_499


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.495165"], ["updated_at", "2020-04-22 05:37:23.495165"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.496913"], ["updated_at", "2020-04-22 05:37:23.496913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.499560"], ["updated_at", "2020-04-22 05:37:23.499560"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.499904"], ["updated_at", "2020-04-22 05:37:23.499904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.501762"], ["updated_at", "2020-04-22 05:37:23.501762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_833683


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (11.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.498155"], ["updated_at", "2020-04-22 05:37:23.498155"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.511965"], ["updated_at", "2020-04-22 05:37:23.511965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.514020"], ["updated_at", "2020-04-22 05:37:23.514020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.495814"], ["updated_at", "2020-04-22 05:37:23.495814"]]
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_995849


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.519622"], ["updated_at", "2020-04-22 05:37:23.519622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_80


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.522087"], ["updated_at", "2020-04-22 05:37:23.522087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.510306"], ["updated_at", "2020-04-22 05:37:23.510306"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.524876"], ["updated_at", "2020-04-22 05:37:23.524876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.526923"], ["updated_at", "2020-04-22 05:37:23.526923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_17


Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (7.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.520030"], ["updated_at", "2020-04-22 05:37:23.520030"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (11.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.523375"], ["updated_at", "2020-04-22 05:37:23.523375"]]
 (0.1ms)  begin transaction

CommentTest: test_187364


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.536663"], ["updated_at", "2020-04-22 05:37:23.536663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.538942"], ["updated_at", "2020-04-22 05:37:23.538942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.531056"], ["updated_at", "2020-04-22 05:37:23.531056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.541936"], ["updated_at", "2020-04-22 05:37:23.541936"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_977


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.547637"], ["updated_at", "2020-04-22 05:37:23.547637"]]
 (0.1ms)  begin transaction

CommentTest: test_293317


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.550888"], ["updated_at", "2020-04-22 05:37:23.550888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.552319"], ["updated_at", "2020-04-22 05:37:23.552319"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.553151"], ["updated_at", "2020-04-22 05:37:23.553151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.555330"], ["updated_at", "2020-04-22 05:37:23.555330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.558980"], ["updated_at", "2020-04-22 05:37:23.558980"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_925


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.563353"], ["updated_at", "2020-04-22 05:37:23.563353"]]
 (0.1ms)  begin transaction

CommentTest: test_968591


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.566687"], ["updated_at", "2020-04-22 05:37:23.566687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.568792"], ["updated_at", "2020-04-22 05:37:23.568792"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.569036"], ["updated_at", "2020-04-22 05:37:23.569036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.571152"], ["updated_at", "2020-04-22 05:37:23.571152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.574625"], ["updated_at", "2020-04-22 05:37:23.574625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_852


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.577680"], ["updated_at", "2020-04-22 05:37:23.577680"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.580595"], ["updated_at", "2020-04-22 05:37:23.580595"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_486684


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.583348"], ["updated_at", "2020-04-22 05:37:23.583348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.585048"], ["updated_at", "2020-04-22 05:37:23.585048"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.587914"], ["updated_at", "2020-04-22 05:37:23.587914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_105


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.591717"], ["updated_at", "2020-04-22 05:37:23.591717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.593666"], ["updated_at", "2020-04-22 05:37:23.593666"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.596547"], ["updated_at", "2020-04-22 05:37:23.596547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.599242"], ["updated_at", "2020-04-22 05:37:23.599242"]]
 (0.1ms)  begin transaction

CommentTest: test_913287


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.601416"], ["updated_at", "2020-04-22 05:37:23.601416"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.603924"], ["updated_at", "2020-04-22 05:37:23.603924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.606032"], ["updated_at", "2020-04-22 05:37:23.606032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_531


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.618443"], ["updated_at", "2020-04-22 05:37:23.618443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.621414"], ["updated_at", "2020-04-22 05:37:23.621414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_218636


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.623732"], ["updated_at", "2020-04-22 05:37:23.623732"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.623677"], ["updated_at", "2020-04-22 05:37:23.623677"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.628085"], ["updated_at", "2020-04-22 05:37:23.628085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.630416"], ["updated_at", "2020-04-22 05:37:23.630416"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_549


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.634619"], ["updated_at", "2020-04-22 05:37:23.634619"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.637793"], ["updated_at", "2020-04-22 05:37:23.637793"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (110.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.530380"], ["updated_at", "2020-04-22 05:37:23.530380"]]
 (0.1ms)  begin transaction

CommentTest: test_795664


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.642108"], ["updated_at", "2020-04-22 05:37:23.642108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.643301"], ["updated_at", "2020-04-22 05:37:23.643301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.645271"], ["updated_at", "2020-04-22 05:37:23.645271"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_473


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.652863"], ["updated_at", "2020-04-22 05:37:23.652863"]]
 (0.1ms)  begin transaction

CommentTest: test_991


Course Create (15.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.643516"], ["updated_at", "2020-04-22 05:37:23.643516"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.655903"], ["updated_at", "2020-04-22 05:37:23.655903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.660944"], ["updated_at", "2020-04-22 05:37:23.660944"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.660858"], ["updated_at", "2020-04-22 05:37:23.660858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.663103"], ["updated_at", "2020-04-22 05:37:23.663103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (135.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.537951"], ["updated_at", "2020-04-22 05:37:23.537951"]]
 (0.6ms)  begin transaction

CommentTest: test_683761


 (0.1ms)  begin transaction

CommentTest: test_834


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.676031"], ["updated_at", "2020-04-22 05:37:23.676031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.675830"], ["updated_at", "2020-04-22 05:37:23.675830"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.678483"], ["updated_at", "2020-04-22 05:37:23.678483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.679826"], ["updated_at", "2020-04-22 05:37:23.679826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.682187"], ["updated_at", "2020-04-22 05:37:23.682187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_659598


Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.676620"], ["updated_at", "2020-04-22 05:37:23.676620"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.690704"], ["updated_at", "2020-04-22 05:37:23.690704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_876795


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.692958"], ["updated_at", "2020-04-22 05:37:23.692958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (12.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.689187"], ["updated_at", "2020-04-22 05:37:23.689187"]]
 (0.1ms)  begin transaction

CommentTest: test_5


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.704599"], ["updated_at", "2020-04-22 05:37:23.704599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (13.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.694717"], ["updated_at", "2020-04-22 05:37:23.694717"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.708653"], ["updated_at", "2020-04-22 05:37:23.708653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.710342"], ["updated_at", "2020-04-22 05:37:23.710342"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380129


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.717545"], ["updated_at", "2020-04-22 05:37:23.717545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.719238"], ["updated_at", "2020-04-22 05:37:23.719238"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.724101"], ["updated_at", "2020-04-22 05:37:23.724101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.725899"], ["updated_at", "2020-04-22 05:37:23.725899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_996276


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.728762"], ["updated_at", "2020-04-22 05:37:23.728762"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_261063


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.731683"], ["updated_at", "2020-04-22 05:37:23.731683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.736149"], ["updated_at", "2020-04-22 05:37:23.736149"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.735592"], ["updated_at", "2020-04-22 05:37:23.735592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.738226"], ["updated_at", "2020-04-22 05:37:23.738226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.740262"], ["updated_at", "2020-04-22 05:37:23.740262"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_840336


 (0.1ms)  begin transaction

CommentTest: test_117278


Course Create (40.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.705497"], ["updated_at", "2020-04-22 05:37:23.705497"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.750338"], ["updated_at", "2020-04-22 05:37:23.750338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.747656"], ["updated_at", "2020-04-22 05:37:23.747656"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.752375"], ["updated_at", "2020-04-22 05:37:23.752375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.753028"], ["updated_at", "2020-04-22 05:37:23.753028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.755374"], ["updated_at", "2020-04-22 05:37:23.755374"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_724


 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.763183"], ["updated_at", "2020-04-22 05:37:23.763183"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.766496"], ["updated_at", "2020-04-22 05:37:23.766496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.767991"], ["updated_at", "2020-04-22 05:37:23.767991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (110.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.658840"], ["updated_at", "2020-04-22 05:37:23.658840"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.771627"], ["updated_at", "2020-04-22 05:37:23.771627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_239115


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.773813"], ["updated_at", "2020-04-22 05:37:23.773813"]]
 (1.1ms)  rollback transaction
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_683


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.777667"], ["updated_at", "2020-04-22 05:37:23.777667"]]
 (0.5ms)  rollback transaction
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.773795"], ["updated_at", "2020-04-22 05:37:23.773795"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.780442"], ["updated_at", "2020-04-22 05:37:23.780442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_96


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.784526"], ["updated_at", "2020-04-22 05:37:23.784526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.781429"], ["updated_at", "2020-04-22 05:37:23.781429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.793335"], ["updated_at", "2020-04-22 05:37:23.793335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_401


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.795882"], ["updated_at", "2020-04-22 05:37:23.795882"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.799456"], ["updated_at", "2020-04-22 05:37:23.799456"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.801814"], ["updated_at", "2020-04-22 05:37:23.801814"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (21.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.782378"], ["updated_at", "2020-04-22 05:37:23.782378"]]
 (3.2ms)  begin transaction

CommentTest: test_342213


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.806545"], ["updated_at", "2020-04-22 05:37:23.806545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.809290"], ["updated_at", "2020-04-22 05:37:23.809290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_705


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.813680"], ["updated_at", "2020-04-22 05:37:23.813680"]]
Course Create (8.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.808684"], ["updated_at", "2020-04-22 05:37:23.808684"]]
 (0.1ms)  begin transaction

CommentTest: test_266


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.819330"], ["updated_at", "2020-04-22 05:37:23.819330"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.819946"], ["updated_at", "2020-04-22 05:37:23.819946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.821364"], ["updated_at", "2020-04-22 05:37:23.821364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.822292"], ["updated_at", "2020-04-22 05:37:23.822292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_540


 (0.1ms)  begin transaction

CommentTest: test_182518


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.836346"], ["updated_at", "2020-04-22 05:37:23.836346"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.836902"], ["updated_at", "2020-04-22 05:37:23.836902"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.839667"], ["updated_at", "2020-04-22 05:37:23.839667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.841192"], ["updated_at", "2020-04-22 05:37:23.841192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.841928"], ["updated_at", "2020-04-22 05:37:23.841928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.843296"], ["updated_at", "2020-04-22 05:37:23.843296"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_479


 (0.1ms)  begin transaction

CommentTest: test_868152


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.853425"], ["updated_at", "2020-04-22 05:37:23.853425"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.853721"], ["updated_at", "2020-04-22 05:37:23.853721"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.856687"], ["updated_at", "2020-04-22 05:37:23.856687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.856896"], ["updated_at", "2020-04-22 05:37:23.856896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.859098"], ["updated_at", "2020-04-22 05:37:23.859098"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.858815"], ["updated_at", "2020-04-22 05:37:23.858815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_193841


 (0.1ms)  begin transaction

CommentTest: test_782


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.870304"], ["updated_at", "2020-04-22 05:37:23.870304"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.871876"], ["updated_at", "2020-04-22 05:37:23.871876"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.873657"], ["updated_at", "2020-04-22 05:37:23.873657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.874619"], ["updated_at", "2020-04-22 05:37:23.874619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.875814"], ["updated_at", "2020-04-22 05:37:23.875814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.876612"], ["updated_at", "2020-04-22 05:37:23.876612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_741


 (0.1ms)  begin transaction
Course Create (136.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.748151"], ["updated_at", "2020-04-22 05:37:23.748151"]]

CommentTest: test_158133


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.887115"], ["updated_at", "2020-04-22 05:37:23.887115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.886917"], ["updated_at", "2020-04-22 05:37:23.886917"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.889057"], ["updated_at", "2020-04-22 05:37:23.889057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.890266"], ["updated_at", "2020-04-22 05:37:23.890266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.892755"], ["updated_at", "2020-04-22 05:37:23.892755"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_893656


Course Create (11.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.886390"], ["updated_at", "2020-04-22 05:37:23.886390"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.900911"], ["updated_at", "2020-04-22 05:37:23.900911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.903005"], ["updated_at", "2020-04-22 05:37:23.903005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (86.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.819822"], ["updated_at", "2020-04-22 05:37:23.819822"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_983409


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.908131"], ["updated_at", "2020-04-22 05:37:23.908131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (10.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.899335"], ["updated_at", "2020-04-22 05:37:23.899335"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.909996"], ["updated_at", "2020-04-22 05:37:23.909996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.912049"], ["updated_at", "2020-04-22 05:37:23.912049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.914569"], ["updated_at", "2020-04-22 05:37:23.914569"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_716


 (0.1ms)  begin transaction

CommentTest: test_910


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (10.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.919450"], ["updated_at", "2020-04-22 05:37:23.919450"]]
 (1.3ms)  rollback transaction
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.918885"], ["updated_at", "2020-04-22 05:37:23.918885"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.922552"], ["updated_at", "2020-04-22 05:37:23.922552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_417910


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.925300"], ["updated_at", "2020-04-22 05:37:23.925300"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.925441"], ["updated_at", "2020-04-22 05:37:23.925441"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.927505"], ["updated_at", "2020-04-22 05:37:23.927505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.909665"], ["updated_at", "2020-04-22 05:37:23.909665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_255


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_272


Course Create (10.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.925622"], ["updated_at", "2020-04-22 05:37:23.925622"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.936499"], ["updated_at", "2020-04-22 05:37:23.936499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.937962"], ["updated_at", "2020-04-22 05:37:23.937962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.938969"], ["updated_at", "2020-04-22 05:37:23.938969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.940130"], ["updated_at", "2020-04-22 05:37:23.940130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_792024


 (6.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.936801"], ["updated_at", "2020-04-22 05:37:23.936801"]]
 (0.1ms)  begin transaction

CommentTest: test_715422


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.959838"], ["updated_at", "2020-04-22 05:37:23.959838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.960340"], ["updated_at", "2020-04-22 05:37:23.960340"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.962133"], ["updated_at", "2020-04-22 05:37:23.962133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.963196"], ["updated_at", "2020-04-22 05:37:23.963196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.970246"], ["updated_at", "2020-04-22 05:37:23.970246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_890


Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.978297"], ["updated_at", "2020-04-22 05:37:23.978297"]]
 (0.1ms)  begin transaction

CommentTest: test_541199


 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.981388"], ["updated_at", "2020-04-22 05:37:23.981388"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.981265"], ["updated_at", "2020-04-22 05:37:23.981265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.985126"], ["updated_at", "2020-04-22 05:37:23.985126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.986165"], ["updated_at", "2020-04-22 05:37:23.986165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:23.987532"], ["updated_at", "2020-04-22 05:37:23.987532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
Course Create (37.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.954687"], ["updated_at", "2020-04-22 05:37:23.954687"]]
 (0.1ms)  begin transaction

CommentTest: test_338015


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:23.996918"], ["updated_at", "2020-04-22 05:37:23.996918"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.000556"], ["updated_at", "2020-04-22 05:37:24.000556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.000274"], ["updated_at", "2020-04-22 05:37:24.000274"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.003370"], ["updated_at", "2020-04-22 05:37:24.003370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.009853"], ["updated_at", "2020-04-22 05:37:24.009853"]]

CommentTest: test_290834


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.011759"], ["updated_at", "2020-04-22 05:37:24.011759"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.014192"], ["updated_at", "2020-04-22 05:37:24.014192"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_341


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.016465"], ["updated_at", "2020-04-22 05:37:24.016465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_758566


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (84.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:23.934621"], ["updated_at", "2020-04-22 05:37:23.934621"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.022199"], ["updated_at", "2020-04-22 05:37:24.022199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_890272


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.024622"], ["updated_at", "2020-04-22 05:37:24.024622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.016546"], ["updated_at", "2020-04-22 05:37:24.016546"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.028543"], ["updated_at", "2020-04-22 05:37:24.028543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_441


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.030375"], ["updated_at", "2020-04-22 05:37:24.030375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Course Create (17.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.019271"], ["updated_at", "2020-04-22 05:37:24.019271"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.039518"], ["updated_at", "2020-04-22 05:37:24.039518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.042146"], ["updated_at", "2020-04-22 05:37:24.042146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_636


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.046015"], ["updated_at", "2020-04-22 05:37:24.046015"]]
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_189054


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.050266"], ["updated_at", "2020-04-22 05:37:24.050266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.051331"], ["updated_at", "2020-04-22 05:37:24.051331"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.052419"], ["updated_at", "2020-04-22 05:37:24.052419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.053883"], ["updated_at", "2020-04-22 05:37:24.053883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.056258"], ["updated_at", "2020-04-22 05:37:24.056258"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_59


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.062560"], ["updated_at", "2020-04-22 05:37:24.062560"]]

CommentTest: test_335221


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.067830"], ["updated_at", "2020-04-22 05:37:24.067830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.067419"], ["updated_at", "2020-04-22 05:37:24.067419"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.069820"], ["updated_at", "2020-04-22 05:37:24.069820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.070751"], ["updated_at", "2020-04-22 05:37:24.070751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.073481"], ["updated_at", "2020-04-22 05:37:24.073481"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_798


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.079283"], ["updated_at", "2020-04-22 05:37:24.079283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.083791"], ["updated_at", "2020-04-22 05:37:24.083791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.087012"], ["updated_at", "2020-04-22 05:37:24.087012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_862135


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.091497"], ["updated_at", "2020-04-22 05:37:24.091497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.098098"], ["updated_at", "2020-04-22 05:37:24.098098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_917


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.100540"], ["updated_at", "2020-04-22 05:37:24.100540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.100478"], ["updated_at", "2020-04-22 05:37:24.100478"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.102955"], ["updated_at", "2020-04-22 05:37:24.102955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.105972"], ["updated_at", "2020-04-22 05:37:24.105972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (6.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_253


 (0.1ms)  begin transaction

CommentTest: test_899606


Course Create (85.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.037347"], ["updated_at", "2020-04-22 05:37:24.037347"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.122994"], ["updated_at", "2020-04-22 05:37:24.122994"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.124789"], ["updated_at", "2020-04-22 05:37:24.124789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.126041"], ["updated_at", "2020-04-22 05:37:24.126041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.127593"], ["updated_at", "2020-04-22 05:37:24.127593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.131747"], ["updated_at", "2020-04-22 05:37:24.131747"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_2


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.139134"], ["updated_at", "2020-04-22 05:37:24.139134"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.142910"], ["updated_at", "2020-04-22 05:37:24.142910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.144940"], ["updated_at", "2020-04-22 05:37:24.144940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_791


 (0.9ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.155101"], ["updated_at", "2020-04-22 05:37:24.155101"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.160600"], ["updated_at", "2020-04-22 05:37:24.160600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.163055"], ["updated_at", "2020-04-22 05:37:24.163055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_348


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.169962"], ["updated_at", "2020-04-22 05:37:24.169962"]]
 (0.1ms)  begin transaction

CommentTest: test_160


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.174654"], ["updated_at", "2020-04-22 05:37:24.174654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.174162"], ["updated_at", "2020-04-22 05:37:24.174162"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.176841"], ["updated_at", "2020-04-22 05:37:24.176841"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.177263"], ["updated_at", "2020-04-22 05:37:24.177263"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.179153"], ["updated_at", "2020-04-22 05:37:24.179153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_395


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_772


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.186282"], ["updated_at", "2020-04-22 05:37:24.186282"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.188979"], ["updated_at", "2020-04-22 05:37:24.188979"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.189630"], ["updated_at", "2020-04-22 05:37:24.189630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.192324"], ["updated_at", "2020-04-22 05:37:24.192324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.192805"], ["updated_at", "2020-04-22 05:37:24.192805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.195126"], ["updated_at", "2020-04-22 05:37:24.195126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_363


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_417

Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.207585"], ["updated_at", "2020-04-22 05:37:24.207585"]]

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.209945"], ["updated_at", "2020-04-22 05:37:24.209945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.212625"], ["updated_at", "2020-04-22 05:37:24.212625"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.209611"], ["updated_at", "2020-04-22 05:37:24.209611"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.216858"], ["updated_at", "2020-04-22 05:37:24.216858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.219884"], ["updated_at", "2020-04-22 05:37:24.219884"]]
 (0.3ms)  begin transaction

CommentTest: test_859


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.224187"], ["updated_at", "2020-04-22 05:37:24.224187"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.227009"], ["updated_at", "2020-04-22 05:37:24.227009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.229440"], ["updated_at", "2020-04-22 05:37:24.229440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_627


 (0.7ms)  rollback transaction
 (0.3ms)  begin transaction
Course Create (100.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.141029"], ["updated_at", "2020-04-22 05:37:24.141029"]]
 (1.7ms)  SAVEPOINT active_record_1

CommentTest: test_875


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.244713"], ["updated_at", "2020-04-22 05:37:24.244713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.239474"], ["updated_at", "2020-04-22 05:37:24.239474"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.248069"], ["updated_at", "2020-04-22 05:37:24.248069"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.248692"], ["updated_at", "2020-04-22 05:37:24.248692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.252015"], ["updated_at", "2020-04-22 05:37:24.252015"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_977986


Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.244505"], ["updated_at", "2020-04-22 05:37:24.244505"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.267189"], ["updated_at", "2020-04-22 05:37:24.267189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.269084"], ["updated_at", "2020-04-22 05:37:24.269084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_658


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.278523"], ["updated_at", "2020-04-22 05:37:24.278523"]]
 (0.1ms)  begin transaction

CommentTest: test_574


 (0.2ms)  SAVEPOINT active_record_1
Course Create (13.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.267125"], ["updated_at", "2020-04-22 05:37:24.267125"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.285835"], ["updated_at", "2020-04-22 05:37:24.285835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.286116"], ["updated_at", "2020-04-22 05:37:24.286116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.287982"], ["updated_at", "2020-04-22 05:37:24.287982"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.288249"], ["updated_at", "2020-04-22 05:37:24.288249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_9


 (0.1ms)  begin transaction

CommentTest: test_787664


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.299114"], ["updated_at", "2020-04-22 05:37:24.299114"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.298856"], ["updated_at", "2020-04-22 05:37:24.298856"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.302151"], ["updated_at", "2020-04-22 05:37:24.302151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.302081"], ["updated_at", "2020-04-22 05:37:24.302081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.304133"], ["updated_at", "2020-04-22 05:37:24.304133"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.304079"], ["updated_at", "2020-04-22 05:37:24.304079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_542049


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.314201"], ["updated_at", "2020-04-22 05:37:24.314201"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.317629"], ["updated_at", "2020-04-22 05:37:24.317629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.320341"], ["updated_at", "2020-04-22 05:37:24.320341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_792


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.325303"], ["updated_at", "2020-04-22 05:37:24.325303"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_768731


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.328572"], ["updated_at", "2020-04-22 05:37:24.328572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.330067"], ["updated_at", "2020-04-22 05:37:24.330067"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.330871"], ["updated_at", "2020-04-22 05:37:24.330871"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.334721"], ["updated_at", "2020-04-22 05:37:24.334721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.337238"], ["updated_at", "2020-04-22 05:37:24.337238"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_189


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.345867"], ["updated_at", "2020-04-22 05:37:24.345867"]]
 (0.1ms)  begin transaction

CommentTest: test_307791


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.348701"], ["updated_at", "2020-04-22 05:37:24.348701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.349684"], ["updated_at", "2020-04-22 05:37:24.349684"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.350769"], ["updated_at", "2020-04-22 05:37:24.350769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.352427"], ["updated_at", "2020-04-22 05:37:24.352427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.354724"], ["updated_at", "2020-04-22 05:37:24.354724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_774763


Course Create (339.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.026930"], ["updated_at", "2020-04-22 05:37:24.026930"]]
Course Create (83.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.281696"], ["updated_at", "2020-04-22 05:37:24.281696"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.368420"], ["updated_at", "2020-04-22 05:37:24.368420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.369767"], ["updated_at", "2020-04-22 05:37:24.369767"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.370525"], ["updated_at", "2020-04-22 05:37:24.370525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.372145"], ["updated_at", "2020-04-22 05:37:24.372145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_342


 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_887859



CommentTest: test_732


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.379809"], ["updated_at", "2020-04-22 05:37:24.379809"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.379825"], ["updated_at", "2020-04-22 05:37:24.379825"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.382684"], ["updated_at", "2020-04-22 05:37:24.382684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.383921"], ["updated_at", "2020-04-22 05:37:24.383921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.385620"], ["updated_at", "2020-04-22 05:37:24.385620"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.385968"], ["updated_at", "2020-04-22 05:37:24.385968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_898966


Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.378848"], ["updated_at", "2020-04-22 05:37:24.378848"]]
 (0.1ms)  begin transaction

CommentTest: test_421


Course Create (16.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.365633"], ["updated_at", "2020-04-22 05:37:24.365633"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.395923"], ["updated_at", "2020-04-22 05:37:24.395923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.396873"], ["updated_at", "2020-04-22 05:37:24.396873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.398813"], ["updated_at", "2020-04-22 05:37:24.398813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.401297"], ["updated_at", "2020-04-22 05:37:24.401297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_236


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.411718"], ["updated_at", "2020-04-22 05:37:24.411718"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.414535"], ["updated_at", "2020-04-22 05:37:24.414535"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_752471


Course Create (20.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.396433"], ["updated_at", "2020-04-22 05:37:24.396433"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.418778"], ["updated_at", "2020-04-22 05:37:24.418778"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.417664"], ["updated_at", "2020-04-22 05:37:24.417664"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.420900"], ["updated_at", "2020-04-22 05:37:24.420900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_468

Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.417828"], ["updated_at", "2020-04-22 05:37:24.417828"]]

 (0.1ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.432235"], ["updated_at", "2020-04-22 05:37:24.432235"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.432027"], ["updated_at", "2020-04-22 05:37:24.432027"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.434409"], ["updated_at", "2020-04-22 05:37:24.434409"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.434825"], ["updated_at", "2020-04-22 05:37:24.434825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.437185"], ["updated_at", "2020-04-22 05:37:24.437185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_848845


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.446198"], ["updated_at", "2020-04-22 05:37:24.446198"]]
 (0.1ms)  begin transaction

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.449697"], ["updated_at", "2020-04-22 05:37:24.449697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.452856"], ["updated_at", "2020-04-22 05:37:24.452856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (58.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.395533"], ["updated_at", "2020-04-22 05:37:24.395533"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.457314"], ["updated_at", "2020-04-22 05:37:24.457314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.459495"], ["updated_at", "2020-04-22 05:37:24.459495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_170701


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.9ms)  rollback transaction
 (0.1ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.463079"], ["updated_at", "2020-04-22 05:37:24.463079"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.1ms)  begin transaction

CommentTest: test_567724


Course Create (13.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:24.454911"], ["updated_at", "2020-04-22 05:37:24.454911"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.469568"], ["updated_at", "2020-04-22 05:37:24.469568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.472424"], ["updated_at", "2020-04-22 05:37:24.472424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.474994"], ["updated_at", "2020-04-22 05:37:24.474994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.477129"], ["updated_at", "2020-04-22 05:37:24.477129"]]
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_625386



Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.486856"], ["updated_at", "2020-04-22 05:37:24.486856"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:37:24.491050"], ["updated_at", "2020-04-22 05:37:24.491050"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.491517"], ["updated_at", "2020-04-22 05:37:24.491517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.493512"], ["updated_at", "2020-04-22 05:37:24.493512"]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.6ms)  rollback transaction
Course Create (35.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.469984"], ["updated_at", "2020-04-22 05:37:24.469984"]]
 (0.1ms)  begin transaction

CommentTest: test_961814


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.507751"], ["updated_at", "2020-04-22 05:37:24.507751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.509927"], ["updated_at", "2020-04-22 05:37:24.509927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_893689


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.519845"], ["updated_at", "2020-04-22 05:37:24.519845"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.523988"], ["updated_at", "2020-04-22 05:37:24.523988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.526360"], ["updated_at", "2020-04-22 05:37:24.526360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_327495


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.541819"], ["updated_at", "2020-04-22 05:37:24.541819"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.544528"], ["updated_at", "2020-04-22 05:37:24.544528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  rollback transaction
Course Create (13.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.511538"], ["updated_at", "2020-04-22 05:37:24.511538"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.546543"], ["updated_at", "2020-04-22 05:37:24.546543"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.547297"], ["updated_at", "2020-04-22 05:37:24.547297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_108890


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.557915"], ["updated_at", "2020-04-22 05:37:24.557915"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.551922"], ["updated_at", "2020-04-22 05:37:24.551922"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.561421"], ["updated_at", "2020-04-22 05:37:24.561421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.563465"], ["updated_at", "2020-04-22 05:37:24.563465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_29353


 (0.1ms)  begin transaction

CommentTest: test_119288


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.577775"], ["updated_at", "2020-04-22 05:37:24.577775"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.580405"], ["updated_at", "2020-04-22 05:37:24.580405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.582696"], ["updated_at", "2020-04-22 05:37:24.582696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.579156"], ["updated_at", "2020-04-22 05:37:24.579156"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.586479"], ["updated_at", "2020-04-22 05:37:24.586479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.587749"], ["updated_at", "2020-04-22 05:37:24.587749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_778815


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.594631"], ["updated_at", "2020-04-22 05:37:24.594631"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.597655"], ["updated_at", "2020-04-22 05:37:24.597655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.599928"], ["updated_at", "2020-04-22 05:37:24.599928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_352002


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_675194


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.611817"], ["updated_at", "2020-04-22 05:37:24.611817"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.614536"], ["updated_at", "2020-04-22 05:37:24.614536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.616546"], ["updated_at", "2020-04-22 05:37:24.616546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.621395"], ["updated_at", "2020-04-22 05:37:24.621395"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.627077"], ["updated_at", "2020-04-22 05:37:24.627077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.647120"], ["updated_at", "2020-04-22 05:37:24.647120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_429448


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.663806"], ["updated_at", "2020-04-22 05:37:24.663806"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.669996"], ["updated_at", "2020-04-22 05:37:24.669996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.673391"], ["updated_at", "2020-04-22 05:37:24.673391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_197505


 (0.1ms)  begin transaction

CommentTest: test_553532


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.683023"], ["updated_at", "2020-04-22 05:37:24.683023"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.683651"], ["updated_at", "2020-04-22 05:37:24.683651"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.685266"], ["updated_at", "2020-04-22 05:37:24.685266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.685939"], ["updated_at", "2020-04-22 05:37:24.685939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.686944"], ["updated_at", "2020-04-22 05:37:24.686944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.687699"], ["updated_at", "2020-04-22 05:37:24.687699"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_742588


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.698611"], ["updated_at", "2020-04-22 05:37:24.698611"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.703380"], ["updated_at", "2020-04-22 05:37:24.703380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.705818"], ["updated_at", "2020-04-22 05:37:24.705818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (17.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_400546


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.720534"], ["updated_at", "2020-04-22 05:37:24.720534"]]
 (1.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.724537"], ["updated_at", "2020-04-22 05:37:24.724537"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_168052


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.726729"], ["updated_at", "2020-04-22 05:37:24.726729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.727588"], ["updated_at", "2020-04-22 05:37:24.727588"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.730048"], ["updated_at", "2020-04-22 05:37:24.730048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.732234"], ["updated_at", "2020-04-22 05:37:24.732234"]]

CommentTest: test_571974


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.735985"], ["updated_at", "2020-04-22 05:37:24.735985"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.740255"], ["updated_at", "2020-04-22 05:37:24.740255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.741967"], ["updated_at", "2020-04-22 05:37:24.741967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.6ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_775874


 (0.1ms)  begin transaction

CommentTest: test_386278


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.752981"], ["updated_at", "2020-04-22 05:37:24.752981"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.753892"], ["updated_at", "2020-04-22 05:37:24.753892"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.756371"], ["updated_at", "2020-04-22 05:37:24.756371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.757174"], ["updated_at", "2020-04-22 05:37:24.757174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.760647"], ["updated_at", "2020-04-22 05:37:24.760647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.762089"], ["updated_at", "2020-04-22 05:37:24.762089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_136752


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.772913"], ["updated_at", "2020-04-22 05:37:24.772913"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.775459"], ["updated_at", "2020-04-22 05:37:24.775459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.777295"], ["updated_at", "2020-04-22 05:37:24.777295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (7.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_688613


 (0.1ms)  SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.794193"], ["updated_at", "2020-04-22 05:37:24.794193"]]
Course Create (68.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:24.728001"], ["updated_at", "2020-04-22 05:37:24.728001"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.797826"], ["updated_at", "2020-04-22 05:37:24.797826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.799417"], ["updated_at", "2020-04-22 05:37:24.799417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.802759"], ["updated_at", "2020-04-22 05:37:24.802759"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.802915"], ["updated_at", "2020-04-22 05:37:24.802915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.2ms)  begin transaction

CommentTest: test_334306


 (1.0ms)  SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_721247


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.827302"], ["updated_at", "2020-04-22 05:37:24.827302"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.829585"], ["updated_at", "2020-04-22 05:37:24.829585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.832353"], ["updated_at", "2020-04-22 05:37:24.832353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_259480


 (0.1ms)  SAVEPOINT active_record_1
Rendering buckets/search.json.erb
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.843864"], ["updated_at", "2020-04-22 05:37:24.843864"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.846548"], ["updated_at", "2020-04-22 05:37:24.846548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Rendered buckets/search.json.erb (Duration: 3.0ms | Allocations: 441)

Completed 200 OK in 38ms (Views: 19.2ms | ActiveRecord: 0.4ms | Allocations: 5275)

Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.848453"], ["updated_at", "2020-04-22 05:37:24.848453"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (43.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.812402"], ["updated_at", "2020-04-22 05:37:24.812402"]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.1ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.859084"], ["updated_at", "2020-04-22 05:37:24.859084"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_838584



Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.860572"], ["updated_at", "2020-04-22 05:37:24.860572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.861736"], ["updated_at", "2020-04-22 05:37:24.861736"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.864470"], ["updated_at", "2020-04-22 05:37:24.864470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.869023"], ["updated_at", "2020-04-22 05:37:24.869023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_878710


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.871837"], ["updated_at", "2020-04-22 05:37:24.871837"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.875260"], ["updated_at", "2020-04-22 05:37:24.875260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.877190"], ["updated_at", "2020-04-22 05:37:24.877190"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_114768

 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (58.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:24.826602"], ["updated_at", "2020-04-22 05:37:24.826602"]]
 (0.1ms)  begin transaction

CommentTest: test_690221


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.887465"], ["updated_at", "2020-04-22 05:37:24.887465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.887288"], ["updated_at", "2020-04-22 05:37:24.887288"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.890904"], ["updated_at", "2020-04-22 05:37:24.890904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.890869"], ["updated_at", "2020-04-22 05:37:24.890869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.892919"], ["updated_at", "2020-04-22 05:37:24.892919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_216468


Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.902965"], ["updated_at", "2020-04-22 05:37:24.902965"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.906083"], ["updated_at", "2020-04-22 05:37:24.906083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.908025"], ["updated_at", "2020-04-22 05:37:24.908025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.3ms | Allocations: 445)

Completed 200 OK in 28ms (Views: 13.7ms | ActiveRecord: 0.6ms | Allocations: 5635)

 (21.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_998045


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:37:24.940100"], ["updated_at", "2020-04-22 05:37:24.940100"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.940865"], ["updated_at", "2020-04-22 05:37:24.940865"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.942838"], ["updated_at", "2020-04-22 05:37:24.942838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.945197"], ["updated_at", "2020-04-22 05:37:24.945197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.945744"], ["updated_at", "2020-04-22 05:37:24.945744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.947365"], ["updated_at", "2020-04-22 05:37:24.947365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:37:24.952725"], ["updated_at", "2020-04-22 05:37:24.952725"]]
 (0.1ms)  begin transaction

CommentTest: test_605206


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.959151"], ["updated_at", "2020-04-22 05:37:24.959151"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.962991"], ["updated_at", "2020-04-22 05:37:24.962991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.961546"], ["updated_at", "2020-04-22 05:37:24.961546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.964255"], ["updated_at", "2020-04-22 05:37:24.964255"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.966771"], ["updated_at", "2020-04-22 05:37:24.966771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_708677


Course Create (0.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 05:37:24.974592"], ["updated_at", "2020-04-22 05:37:24.974592"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.976819"], ["updated_at", "2020-04-22 05:37:24.976819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.975340"], ["updated_at", "2020-04-22 05:37:24.975340"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.978751"], ["updated_at", "2020-04-22 05:37:24.978751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.979494"], ["updated_at", "2020-04-22 05:37:24.979494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.982020"], ["updated_at", "2020-04-22 05:37:24.982020"]]
 (0.0ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_446648


Course Create (6.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:24.986175"], ["updated_at", "2020-04-22 05:37:24.986175"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.994730"], ["updated_at", "2020-04-22 05:37:24.994730"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.995410"], ["updated_at", "2020-04-22 05:37:24.995410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:24.997463"], ["updated_at", "2020-04-22 05:37:24.997463"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:24.997345"], ["updated_at", "2020-04-22 05:37:24.997345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.000087"], ["updated_at", "2020-04-22 05:37:25.000087"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_282653


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.009430"], ["updated_at", "2020-04-22 05:37:25.009430"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.011669"], ["updated_at", "2020-04-22 05:37:25.011669"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.012277"], ["updated_at", "2020-04-22 05:37:25.012277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.014236"], ["updated_at", "2020-04-22 05:37:25.014236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.014111"], ["updated_at", "2020-04-22 05:37:25.014111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.017628"], ["updated_at", "2020-04-22 05:37:25.017628"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.021331"], ["updated_at", "2020-04-22 05:37:25.021331"]]
 (0.1ms)  begin transaction

CommentTest: test_461201


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.028841"], ["updated_at", "2020-04-22 05:37:25.028841"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.028573"], ["updated_at", "2020-04-22 05:37:25.028573"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.031113"], ["updated_at", "2020-04-22 05:37:25.031113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.032886"], ["updated_at", "2020-04-22 05:37:25.032886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.035666"], ["updated_at", "2020-04-22 05:37:25.035666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (158.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:24.884958"], ["updated_at", "2020-04-22 05:37:24.884958"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.045759"], ["updated_at", "2020-04-22 05:37:25.045759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.047781"], ["updated_at", "2020-04-22 05:37:25.047781"]]

CommentTest: test_41730


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.049623"], ["updated_at", "2020-04-22 05:37:25.049623"]]
 (0.1ms)  begin transaction

CommentTest: test_292760


Course Create (14.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.043684"], ["updated_at", "2020-04-22 05:37:25.043684"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.060750"], ["updated_at", "2020-04-22 05:37:25.060750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.062165"], ["updated_at", "2020-04-22 05:37:25.062165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.054420"], ["updated_at", "2020-04-22 05:37:25.054420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.069515"], ["updated_at", "2020-04-22 05:37:25.069515"]]
Course Create (10.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.059352"], ["updated_at", "2020-04-22 05:37:25.059352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.073850"], ["updated_at", "2020-04-22 05:37:25.073850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.078068"], ["updated_at", "2020-04-22 05:37:25.078068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_685506

 (0.1ms)  begin transaction

CommentTest: test_867136


Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.071262"], ["updated_at", "2020-04-22 05:37:25.071262"]]
 (0.2ms)  SAVEPOINT active_record_1

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.088762"], ["updated_at", "2020-04-22 05:37:25.088762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.088720"], ["updated_at", "2020-04-22 05:37:25.088720"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.091541"], ["updated_at", "2020-04-22 05:37:25.091541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.093323"], ["updated_at", "2020-04-22 05:37:25.093323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.095748"], ["updated_at", "2020-04-22 05:37:25.095748"]]
 (0.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Course Create (21.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.086298"], ["updated_at", "2020-04-22 05:37:25.086298"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.110808"], ["updated_at", "2020-04-22 05:37:25.110808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_582909


 (0.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.113115"], ["updated_at", "2020-04-22 05:37:25.113115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.114838"], ["updated_at", "2020-04-22 05:37:25.114838"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  begin transaction

CommentTest: test_501703


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.118517"], ["updated_at", "2020-04-22 05:37:25.118517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.121736"], ["updated_at", "2020-04-22 05:37:25.121736"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.122593"], ["updated_at", "2020-04-22 05:37:25.122593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.125122"], ["updated_at", "2020-04-22 05:37:25.125122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.127280"], ["updated_at", "2020-04-22 05:37:25.127280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (4.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_158739


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.136667"], ["updated_at", "2020-04-22 05:37:25.136667"]]
 (0.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.140277"], ["updated_at", "2020-04-22 05:37:25.140277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

LessonTest: test_associations


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.142652"], ["updated_at", "2020-04-22 05:37:25.142652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_684048


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.145657"], ["updated_at", "2020-04-22 05:37:25.145657"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.148556"], ["updated_at", "2020-04-22 05:37:25.148556"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_791611


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.151099"], ["updated_at", "2020-04-22 05:37:25.151099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (9.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.142578"], ["updated_at", "2020-04-22 05:37:25.142578"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.154658"], ["updated_at", "2020-04-22 05:37:25.154658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.157097"], ["updated_at", "2020-04-22 05:37:25.157097"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Load (0.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Track Create (0.6ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:37:25.161820"], ["updated_at", "2020-04-22 05:37:25.161820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_658619


 (1.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.167877"], ["updated_at", "2020-04-22 05:37:25.167877"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.170493"], ["updated_at", "2020-04-22 05:37:25.170493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.173160"], ["updated_at", "2020-04-22 05:37:25.173160"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.171641"], ["updated_at", "2020-04-22 05:37:25.171641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.175973"], ["updated_at", "2020-04-22 05:37:25.175973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.177998"], ["updated_at", "2020-04-22 05:37:25.177998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:37:25.180450"], ["updated_at", "2020-04-22 05:37:25.180450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_10935


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:37:25.182966"], ["updated_at", "2020-04-22 05:37:25.182966"], ["track_id", 980190963]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.183206"], ["updated_at", "2020-04-22 05:37:25.183206"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.185670"], ["updated_at", "2020-04-22 05:37:25.185670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Lesson Create (0.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 05:37:25.185629"], ["updated_at", "2020-04-22 05:37:25.185629"], ["track_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.187625"], ["updated_at", "2020-04-22 05:37:25.187625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (35.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.152062"], ["updated_at", "2020-04-22 05:37:25.152062"]]
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.191561"], ["updated_at", "2020-04-22 05:37:25.191561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.194096"], ["updated_at", "2020-04-22 05:37:25.194096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_989807


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.200579"], ["updated_at", "2020-04-22 05:37:25.200579"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.204135"], ["updated_at", "2020-04-22 05:37:25.204135"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.207024"], ["updated_at", "2020-04-22 05:37:25.207024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 05:37:25.210478"], ["updated_at", "2020-04-22 05:37:25.210478"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.214042"], ["updated_at", "2020-04-22 05:37:25.214042"]]
 (0.1ms)  begin transaction

CommentTest: test_838308


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.217364"], ["updated_at", "2020-04-22 05:37:25.217364"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.218125"], ["updated_at", "2020-04-22 05:37:25.218125"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.221063"], ["updated_at", "2020-04-22 05:37:25.221063"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.219716"], ["updated_at", "2020-04-22 05:37:25.219716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.224924"], ["updated_at", "2020-04-22 05:37:25.224924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 05:37:25.226855"], ["updated_at", "2020-04-22 05:37:25.226855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

TrackTest: test_track_valid


 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_456799


 (0.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.237090"], ["updated_at", "2020-04-22 05:37:25.237090"]]
Course Create (36.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.203178"], ["updated_at", "2020-04-22 05:37:25.203178"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.241832"], ["updated_at", "2020-04-22 05:37:25.241832"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.244026"], ["updated_at", "2020-04-22 05:37:25.244026"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.243801"], ["updated_at", "2020-04-22 05:37:25.243801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.245697"], ["updated_at", "2020-04-22 05:37:25.245697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_706051


 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.252424"], ["updated_at", "2020-04-22 05:37:25.252424"]]
 (3.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.255020"], ["updated_at", "2020-04-22 05:37:25.255020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_723107


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.257242"], ["updated_at", "2020-04-22 05:37:25.257242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.259915"], ["updated_at", "2020-04-22 05:37:25.259915"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

ContentRecommendationTest: test_relationships_set_up


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.262812"], ["updated_at", "2020-04-22 05:37:25.262812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.264838"], ["updated_at", "2020-04-22 05:37:25.264838"]]
 (0.1ms)  begin transaction

CommentTest: test_372312


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.268069"], ["updated_at", "2020-04-22 05:37:25.268069"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.269834"], ["updated_at", "2020-04-22 05:37:25.269834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.271746"], ["updated_at", "2020-04-22 05:37:25.271746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  begin transaction

CommentTest: test_344949


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_841419


 (0.6ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CoursesControllerTest: test_index


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.284174"], ["updated_at", "2020-04-22 05:37:25.284174"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.281254"], ["updated_at", "2020-04-22 05:37:25.281254"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.287695"], ["updated_at", "2020-04-22 05:37:25.287695"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.289994"], ["updated_at", "2020-04-22 05:37:25.289994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.289133"], ["updated_at", "2020-04-22 05:37:25.289133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.293076"], ["updated_at", "2020-04-22 05:37:25.293076"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_881117


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.300082"], ["updated_at", "2020-04-22 05:37:25.300082"]]
 (0.1ms)  begin transaction

CommentTest: test_42093


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.303162"], ["updated_at", "2020-04-22 05:37:25.303162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.303468"], ["updated_at", "2020-04-22 05:37:25.303468"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.305669"], ["updated_at", "2020-04-22 05:37:25.305669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.307734"], ["updated_at", "2020-04-22 05:37:25.307734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.309930"], ["updated_at", "2020-04-22 05:37:25.309930"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.298498"], ["updated_at", "2020-04-22 05:37:25.298498"]]
 (0.1ms)  begin transaction

CommentTest: test_915602


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.315247"], ["updated_at", "2020-04-22 05:37:25.315247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.317780"], ["updated_at", "2020-04-22 05:37:25.317780"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

 (0.1ms)  begin transaction

CommentTest: test_125581


Rendering courses/index.html.erb within layouts/application
Course Load (0.2ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 1.6ms | Allocations: 362)
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.326132"], ["updated_at", "2020-04-22 05:37:25.326132"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.330803"], ["updated_at", "2020-04-22 05:37:25.330803"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.332892"], ["updated_at", "2020-04-22 05:37:25.332892"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_657355


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.344578"], ["updated_at", "2020-04-22 05:37:25.344578"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.347181"], ["updated_at", "2020-04-22 05:37:25.347181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.349403"], ["updated_at", "2020-04-22 05:37:25.349403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_815956


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.363644"], ["updated_at", "2020-04-22 05:37:25.363644"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.368494"], ["updated_at", "2020-04-22 05:37:25.368494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.376340"], ["updated_at", "2020-04-22 05:37:25.376340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_722811


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.386655"], ["updated_at", "2020-04-22 05:37:25.386655"]]
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 70ms (Views: 67.6ms | ActiveRecord: 0.2ms | Allocations: 8459)

Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.391099"], ["updated_at", "2020-04-22 05:37:25.391099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.393257"], ["updated_at", "2020-04-22 05:37:25.393257"]]
 (0.1ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 05:37:25.395368"], ["updated_at", "2020-04-22 05:37:25.395368"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.398285"], ["updated_at", "2020-04-22 05:37:25.398285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_508309

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.401032"], ["updated_at", "2020-04-22 05:37:25.401032"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.1ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.402720"], ["updated_at", "2020-04-22 05:37:25.402720"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.417557"], ["updated_at", "2020-04-22 05:37:25.417557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.420308"], ["updated_at", "2020-04-22 05:37:25.420308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (108.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.315101"], ["updated_at", "2020-04-22 05:37:25.315101"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.425802"], ["updated_at", "2020-04-22 05:37:25.425802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.427625"], ["updated_at", "2020-04-22 05:37:25.427625"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_651404


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.430213"], ["updated_at", "2020-04-22 05:37:25.430213"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.432844"], ["updated_at", "2020-04-22 05:37:25.432844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_475836


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.434992"], ["updated_at", "2020-04-22 05:37:25.434992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.436337"], ["updated_at", "2020-04-22 05:37:25.436337"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.440140"], ["updated_at", "2020-04-22 05:37:25.440140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.442775"], ["updated_at", "2020-04-22 05:37:25.442775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_459661


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_496308


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.452583"], ["updated_at", "2020-04-22 05:37:25.452583"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.446276"], ["updated_at", "2020-04-22 05:37:25.446276"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.455913"], ["updated_at", "2020-04-22 05:37:25.455913"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.458403"], ["updated_at", "2020-04-22 05:37:25.458403"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.458633"], ["updated_at", "2020-04-22 05:37:25.458633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.463480"], ["updated_at", "2020-04-22 05:37:25.463480"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_855941


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.469093"], ["updated_at", "2020-04-22 05:37:25.469093"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.472209"], ["updated_at", "2020-04-22 05:37:25.472209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.475030"], ["updated_at", "2020-04-22 05:37:25.475030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_652599


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.483844"], ["updated_at", "2020-04-22 05:37:25.483844"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.490076"], ["updated_at", "2020-04-22 05:37:25.490076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.494125"], ["updated_at", "2020-04-22 05:37:25.494125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_813736


 (0.1ms)  begin transaction

CommentTest: test_135813


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.503407"], ["updated_at", "2020-04-22 05:37:25.503407"]]
 (3.0ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.506973"], ["updated_at", "2020-04-22 05:37:25.506973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.503819"], ["updated_at", "2020-04-22 05:37:25.503819"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.509333"], ["updated_at", "2020-04-22 05:37:25.509333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.509763"], ["updated_at", "2020-04-22 05:37:25.509763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.512539"], ["updated_at", "2020-04-22 05:37:25.512539"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_451324


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.518984"], ["updated_at", "2020-04-22 05:37:25.518984"]]
 (0.1ms)  begin transaction

CommentTest: test_255963


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.521428"], ["updated_at", "2020-04-22 05:37:25.521428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.524297"], ["updated_at", "2020-04-22 05:37:25.524297"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.523866"], ["updated_at", "2020-04-22 05:37:25.523866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.526892"], ["updated_at", "2020-04-22 05:37:25.526892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.529103"], ["updated_at", "2020-04-22 05:37:25.529103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_391220


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.533163"], ["updated_at", "2020-04-22 05:37:25.533163"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.536029"], ["updated_at", "2020-04-22 05:37:25.536029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.538187"], ["updated_at", "2020-04-22 05:37:25.538187"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_270054


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.543623"], ["updated_at", "2020-04-22 05:37:25.543623"]]
 (0.1ms)  begin transaction

CommentTest: test_825028


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.547779"], ["updated_at", "2020-04-22 05:37:25.547779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.547686"], ["updated_at", "2020-04-22 05:37:25.547686"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.550772"], ["updated_at", "2020-04-22 05:37:25.550772"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.552622"], ["updated_at", "2020-04-22 05:37:25.552622"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.552844"], ["updated_at", "2020-04-22 05:37:25.552844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_561215


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.564374"], ["updated_at", "2020-04-22 05:37:25.564374"]]
 (2.0ms)  begin transaction

CommentTest: test_149717


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.569167"], ["updated_at", "2020-04-22 05:37:25.569167"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.569521"], ["updated_at", "2020-04-22 05:37:25.569521"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.575771"], ["updated_at", "2020-04-22 05:37:25.575771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.580558"], ["updated_at", "2020-04-22 05:37:25.580558"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.582925"], ["updated_at", "2020-04-22 05:37:25.582925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_639887


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.589658"], ["updated_at", "2020-04-22 05:37:25.589658"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.595488"], ["updated_at", "2020-04-22 05:37:25.595488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.4ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.597701"], ["updated_at", "2020-04-22 05:37:25.597701"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_694312


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.601616"], ["updated_at", "2020-04-22 05:37:25.601616"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_464850


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.609639"], ["updated_at", "2020-04-22 05:37:25.609639"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.613379"], ["updated_at", "2020-04-22 05:37:25.613379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.604215"], ["updated_at", "2020-04-22 05:37:25.604215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.615415"], ["updated_at", "2020-04-22 05:37:25.615415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.617113"], ["updated_at", "2020-04-22 05:37:25.617113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_657748


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.625028"], ["updated_at", "2020-04-22 05:37:25.625028"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.627591"], ["updated_at", "2020-04-22 05:37:25.627591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.629504"], ["updated_at", "2020-04-22 05:37:25.629504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_35520


 (0.1ms)  begin transaction

CommentTest: test_151510


 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.638224"], ["updated_at", "2020-04-22 05:37:25.638224"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.638531"], ["updated_at", "2020-04-22 05:37:25.638531"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.642287"], ["updated_at", "2020-04-22 05:37:25.642287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.644764"], ["updated_at", "2020-04-22 05:37:25.644764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.643003"], ["updated_at", "2020-04-22 05:37:25.643003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.647518"], ["updated_at", "2020-04-22 05:37:25.647518"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_26606


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.654176"], ["updated_at", "2020-04-22 05:37:25.654176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.657384"], ["updated_at", "2020-04-22 05:37:25.657384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.662481"], ["updated_at", "2020-04-22 05:37:25.662481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_516484


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.669280"], ["updated_at", "2020-04-22 05:37:25.669280"]]
 (0.1ms)  begin transaction

CommentTest: test_881843


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.672016"], ["updated_at", "2020-04-22 05:37:25.672016"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.672588"], ["updated_at", "2020-04-22 05:37:25.672588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.675052"], ["updated_at", "2020-04-22 05:37:25.675052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.676873"], ["updated_at", "2020-04-22 05:37:25.676873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.676798"], ["updated_at", "2020-04-22 05:37:25.676798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_858899


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.686658"], ["updated_at", "2020-04-22 05:37:25.686658"]]
 (0.1ms)  begin transaction

CommentTest: test_551833


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.697514"], ["updated_at", "2020-04-22 05:37:25.697514"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.700399"], ["updated_at", "2020-04-22 05:37:25.700399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.702529"], ["updated_at", "2020-04-22 05:37:25.702529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.702563"], ["updated_at", "2020-04-22 05:37:25.702563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.705078"], ["updated_at", "2020-04-22 05:37:25.705078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_963036


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.715428"], ["updated_at", "2020-04-22 05:37:25.715428"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.718154"], ["updated_at", "2020-04-22 05:37:25.718154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.720396"], ["updated_at", "2020-04-22 05:37:25.720396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_584685

 (0.1ms)  begin transaction


CommentTest: test_30815


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.734205"], ["updated_at", "2020-04-22 05:37:25.734205"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.734278"], ["updated_at", "2020-04-22 05:37:25.734278"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.736923"], ["updated_at", "2020-04-22 05:37:25.736923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.736856"], ["updated_at", "2020-04-22 05:37:25.736856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.739208"], ["updated_at", "2020-04-22 05:37:25.739208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.739576"], ["updated_at", "2020-04-22 05:37:25.739576"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811396


 (0.1ms)  begin transaction

CommentTest: test_775962


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.751373"], ["updated_at", "2020-04-22 05:37:25.751373"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.751720"], ["updated_at", "2020-04-22 05:37:25.751720"]]
Bucket Create (17.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.754025"], ["updated_at", "2020-04-22 05:37:25.754025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.754105"], ["updated_at", "2020-04-22 05:37:25.754105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.798174"], ["updated_at", "2020-04-22 05:37:25.798174"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.798200"], ["updated_at", "2020-04-22 05:37:25.798200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (5.1ms)  rollback transaction
 (0.1ms)  begin transaction
Comment Create (10.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_478943


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.836626"], ["updated_at", "2020-04-22 05:37:25.836626"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.846901"], ["updated_at", "2020-04-22 05:37:25.846901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_488414


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.849220"], ["updated_at", "2020-04-22 05:37:25.849220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.849778"], ["updated_at", "2020-04-22 05:37:25.849778"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.865693"], ["updated_at", "2020-04-22 05:37:25.865693"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_747390


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.869389"], ["updated_at", "2020-04-22 05:37:25.869389"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.870706"], ["updated_at", "2020-04-22 05:37:25.870706"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.880623"], ["updated_at", "2020-04-22 05:37:25.880623"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.884609"], ["updated_at", "2020-04-22 05:37:25.884609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_577741


 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_772457


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.903949"], ["updated_at", "2020-04-22 05:37:25.903949"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.917019"], ["updated_at", "2020-04-22 05:37:25.917019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.902191"], ["updated_at", "2020-04-22 05:37:25.902191"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.920893"], ["updated_at", "2020-04-22 05:37:25.920893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.921383"], ["updated_at", "2020-04-22 05:37:25.921383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.931131"], ["updated_at", "2020-04-22 05:37:25.931131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_411890


 (3.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.938925"], ["updated_at", "2020-04-22 05:37:25.938925"]]
 (2.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (4.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.948702"], ["updated_at", "2020-04-22 05:37:25.948702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_941280


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.956275"], ["updated_at", "2020-04-22 05:37:25.956275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.956081"], ["updated_at", "2020-04-22 05:37:25.956081"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.960988"], ["updated_at", "2020-04-22 05:37:25.960988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.963471"], ["updated_at", "2020-04-22 05:37:25.963471"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_121105


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.967590"], ["updated_at", "2020-04-22 05:37:25.967590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_437308


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.971146"], ["updated_at", "2020-04-22 05:37:25.971146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.974703"], ["updated_at", "2020-04-22 05:37:25.974703"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.974163"], ["updated_at", "2020-04-22 05:37:25.974163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.976706"], ["updated_at", "2020-04-22 05:37:25.976706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.978308"], ["updated_at", "2020-04-22 05:37:25.978308"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_612137


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.983440"], ["updated_at", "2020-04-22 05:37:25.983440"]]
 (0.1ms)  begin transaction

CommentTest: test_550744


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.986603"], ["updated_at", "2020-04-22 05:37:25.986603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:25.988053"], ["updated_at", "2020-04-22 05:37:25.988053"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.989586"], ["updated_at", "2020-04-22 05:37:25.989586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:25.990864"], ["updated_at", "2020-04-22 05:37:25.990864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:25.994942"], ["updated_at", "2020-04-22 05:37:25.994942"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_614093


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.000960"], ["updated_at", "2020-04-22 05:37:26.000960"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_779647


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.003705"], ["updated_at", "2020-04-22 05:37:26.003705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.005387"], ["updated_at", "2020-04-22 05:37:26.005387"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.008227"], ["updated_at", "2020-04-22 05:37:26.008227"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.008907"], ["updated_at", "2020-04-22 05:37:26.008907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.011006"], ["updated_at", "2020-04-22 05:37:26.011006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_307955


 (0.1ms)  begin transaction

CommentTest: test_411687


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.018927"], ["updated_at", "2020-04-22 05:37:26.018927"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.019544"], ["updated_at", "2020-04-22 05:37:26.019544"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.021587"], ["updated_at", "2020-04-22 05:37:26.021587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.022080"], ["updated_at", "2020-04-22 05:37:26.022080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.025042"], ["updated_at", "2020-04-22 05:37:26.025042"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.025365"], ["updated_at", "2020-04-22 05:37:26.025365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.7ms)  rollback transaction

CommentTest: test_314740


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.035605"], ["updated_at", "2020-04-22 05:37:26.035605"]]

CommentTest: test_628551


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.039106"], ["updated_at", "2020-04-22 05:37:26.039106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.038296"], ["updated_at", "2020-04-22 05:37:26.038296"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.044170"], ["updated_at", "2020-04-22 05:37:26.044170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.042952"], ["updated_at", "2020-04-22 05:37:26.042952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.046783"], ["updated_at", "2020-04-22 05:37:26.046783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_575678


 (0.1ms)  begin transaction

CommentTest: test_564341


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.058720"], ["updated_at", "2020-04-22 05:37:26.058720"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.059289"], ["updated_at", "2020-04-22 05:37:26.059289"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.061683"], ["updated_at", "2020-04-22 05:37:26.061683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.062286"], ["updated_at", "2020-04-22 05:37:26.062286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.063605"], ["updated_at", "2020-04-22 05:37:26.063605"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.064005"], ["updated_at", "2020-04-22 05:37:26.064005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_27137


 (0.1ms)  begin transaction

CommentTest: test_973081


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.075051"], ["updated_at", "2020-04-22 05:37:26.075051"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.075332"], ["updated_at", "2020-04-22 05:37:26.075332"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.078679"], ["updated_at", "2020-04-22 05:37:26.078679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.080070"], ["updated_at", "2020-04-22 05:37:26.080070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.081008"], ["updated_at", "2020-04-22 05:37:26.081008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.082499"], ["updated_at", "2020-04-22 05:37:26.082499"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_16565


 (0.1ms)  begin transaction

CommentTest: test_632818


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.090939"], ["updated_at", "2020-04-22 05:37:26.090939"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.092671"], ["updated_at", "2020-04-22 05:37:26.092671"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.094023"], ["updated_at", "2020-04-22 05:37:26.094023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.095023"], ["updated_at", "2020-04-22 05:37:26.095023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.095832"], ["updated_at", "2020-04-22 05:37:26.095832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.097950"], ["updated_at", "2020-04-22 05:37:26.097950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_204604


 (0.1ms)  begin transaction

CommentTest: test_652947


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.107949"], ["updated_at", "2020-04-22 05:37:26.107949"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.109219"], ["updated_at", "2020-04-22 05:37:26.109219"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.113803"], ["updated_at", "2020-04-22 05:37:26.113803"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.113974"], ["updated_at", "2020-04-22 05:37:26.113974"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.115948"], ["updated_at", "2020-04-22 05:37:26.115948"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.116157"], ["updated_at", "2020-04-22 05:37:26.116157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_297600


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.126207"], ["updated_at", "2020-04-22 05:37:26.126207"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.128182"], ["updated_at", "2020-04-22 05:37:26.128182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.130054"], ["updated_at", "2020-04-22 05:37:26.130054"]]
 (0.1ms)  begin transaction

CommentTest: test_574854

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.132792"], ["updated_at", "2020-04-22 05:37:26.132792"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.135643"], ["updated_at", "2020-04-22 05:37:26.135643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.137647"], ["updated_at", "2020-04-22 05:37:26.137647"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_220686


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.143384"], ["updated_at", "2020-04-22 05:37:26.143384"]]
 (0.1ms)  begin transaction

CommentTest: test_462556


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.145706"], ["updated_at", "2020-04-22 05:37:26.145706"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.147114"], ["updated_at", "2020-04-22 05:37:26.147114"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.147693"], ["updated_at", "2020-04-22 05:37:26.147693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.149379"], ["updated_at", "2020-04-22 05:37:26.149379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.151534"], ["updated_at", "2020-04-22 05:37:26.151534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_306912


 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.157157"], ["updated_at", "2020-04-22 05:37:26.157157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.160230"], ["updated_at", "2020-04-22 05:37:26.160230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.162796"], ["updated_at", "2020-04-22 05:37:26.162796"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_143266


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.165092"], ["updated_at", "2020-04-22 05:37:26.165092"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.168186"], ["updated_at", "2020-04-22 05:37:26.168186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_778139


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.170647"], ["updated_at", "2020-04-22 05:37:26.170647"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.171370"], ["updated_at", "2020-04-22 05:37:26.171370"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.175877"], ["updated_at", "2020-04-22 05:37:26.175877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.177991"], ["updated_at", "2020-04-22 05:37:26.177991"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_868396


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_582302


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.185958"], ["updated_at", "2020-04-22 05:37:26.185958"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.187933"], ["updated_at", "2020-04-22 05:37:26.187933"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.191752"], ["updated_at", "2020-04-22 05:37:26.191752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.191455"], ["updated_at", "2020-04-22 05:37:26.191455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.194279"], ["updated_at", "2020-04-22 05:37:26.194279"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.194478"], ["updated_at", "2020-04-22 05:37:26.194478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_772621


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_242591


Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.203715"], ["updated_at", "2020-04-22 05:37:26.203715"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.209194"], ["updated_at", "2020-04-22 05:37:26.209194"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.212967"], ["updated_at", "2020-04-22 05:37:26.212967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.213578"], ["updated_at", "2020-04-22 05:37:26.213578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.215043"], ["updated_at", "2020-04-22 05:37:26.215043"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.218545"], ["updated_at", "2020-04-22 05:37:26.218545"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_828245

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.226029"], ["updated_at", "2020-04-22 05:37:26.226029"]]
 (3.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.229684"], ["updated_at", "2020-04-22 05:37:26.229684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_478146


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.231790"], ["updated_at", "2020-04-22 05:37:26.231790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.232886"], ["updated_at", "2020-04-22 05:37:26.232886"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.236869"], ["updated_at", "2020-04-22 05:37:26.236869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.240977"], ["updated_at", "2020-04-22 05:37:26.240977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  begin transaction

CommentTest: test_445528


 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.252155"], ["updated_at", "2020-04-22 05:37:26.252155"]]
 (0.1ms)  begin transaction

CommentTest: test_444532


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.255059"], ["updated_at", "2020-04-22 05:37:26.255059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.255467"], ["updated_at", "2020-04-22 05:37:26.255467"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.261784"], ["updated_at", "2020-04-22 05:37:26.261784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.263805"], ["updated_at", "2020-04-22 05:37:26.263805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.266429"], ["updated_at", "2020-04-22 05:37:26.266429"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_567185


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.271411"], ["updated_at", "2020-04-22 05:37:26.271411"]]
 (6.9ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.280606"], ["updated_at", "2020-04-22 05:37:26.280606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_900504


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.283326"], ["updated_at", "2020-04-22 05:37:26.283326"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.285428"], ["updated_at", "2020-04-22 05:37:26.285428"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.288503"], ["updated_at", "2020-04-22 05:37:26.288503"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.291815"], ["updated_at", "2020-04-22 05:37:26.291815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_87680


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.298068"], ["updated_at", "2020-04-22 05:37:26.298068"]]
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.301040"], ["updated_at", "2020-04-22 05:37:26.301040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_960175


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.303757"], ["updated_at", "2020-04-22 05:37:26.303757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.303580"], ["updated_at", "2020-04-22 05:37:26.303580"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.309088"], ["updated_at", "2020-04-22 05:37:26.309088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.311488"], ["updated_at", "2020-04-22 05:37:26.311488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_733259


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.316586"], ["updated_at", "2020-04-22 05:37:26.316586"]]
 (0.1ms)  begin transaction

CommentTest: test_643629


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.320800"], ["updated_at", "2020-04-22 05:37:26.320800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.322415"], ["updated_at", "2020-04-22 05:37:26.322415"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.325798"], ["updated_at", "2020-04-22 05:37:26.325798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.329272"], ["updated_at", "2020-04-22 05:37:26.329272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.325929"], ["updated_at", "2020-04-22 05:37:26.325929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_192666


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.342003"], ["updated_at", "2020-04-22 05:37:26.342003"]]

CommentTest: test_475802


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.344947"], ["updated_at", "2020-04-22 05:37:26.344947"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.346026"], ["updated_at", "2020-04-22 05:37:26.346026"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.348554"], ["updated_at", "2020-04-22 05:37:26.348554"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.348006"], ["updated_at", "2020-04-22 05:37:26.348006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.353926"], ["updated_at", "2020-04-22 05:37:26.353926"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_226590


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.362717"], ["updated_at", "2020-04-22 05:37:26.362717"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.368888"], ["updated_at", "2020-04-22 05:37:26.368888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_9390


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.371619"], ["updated_at", "2020-04-22 05:37:26.371619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.373761"], ["updated_at", "2020-04-22 05:37:26.373761"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.379033"], ["updated_at", "2020-04-22 05:37:26.379033"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.381379"], ["updated_at", "2020-04-22 05:37:26.381379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_548821


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.386727"], ["updated_at", "2020-04-22 05:37:26.386727"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_943100


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.392675"], ["updated_at", "2020-04-22 05:37:26.392675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.394911"], ["updated_at", "2020-04-22 05:37:26.394911"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.394529"], ["updated_at", "2020-04-22 05:37:26.394529"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.397061"], ["updated_at", "2020-04-22 05:37:26.397061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.400049"], ["updated_at", "2020-04-22 05:37:26.400049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_451372


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.407105"], ["updated_at", "2020-04-22 05:37:26.407105"]]
 (3.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.413110"], ["updated_at", "2020-04-22 05:37:26.413110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_198103


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.416035"], ["updated_at", "2020-04-22 05:37:26.416035"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.415899"], ["updated_at", "2020-04-22 05:37:26.415899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.418821"], ["updated_at", "2020-04-22 05:37:26.418821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.420954"], ["updated_at", "2020-04-22 05:37:26.420954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_851462


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.427306"], ["updated_at", "2020-04-22 05:37:26.427306"]]
 (0.4ms)  begin transaction

CommentTest: test_161740


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.431027"], ["updated_at", "2020-04-22 05:37:26.431027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.432706"], ["updated_at", "2020-04-22 05:37:26.432706"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.434876"], ["updated_at", "2020-04-22 05:37:26.434876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.436629"], ["updated_at", "2020-04-22 05:37:26.436629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.438621"], ["updated_at", "2020-04-22 05:37:26.438621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_856099


CommentTest: test_99537


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.449505"], ["updated_at", "2020-04-22 05:37:26.449505"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.449150"], ["updated_at", "2020-04-22 05:37:26.449150"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.453990"], ["updated_at", "2020-04-22 05:37:26.453990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.453990"], ["updated_at", "2020-04-22 05:37:26.453990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.456795"], ["updated_at", "2020-04-22 05:37:26.456795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.457255"], ["updated_at", "2020-04-22 05:37:26.457255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_227676


 (0.1ms)  begin transaction

CommentTest: test_339695


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.466320"], ["updated_at", "2020-04-22 05:37:26.466320"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.467606"], ["updated_at", "2020-04-22 05:37:26.467606"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.468831"], ["updated_at", "2020-04-22 05:37:26.468831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.470085"], ["updated_at", "2020-04-22 05:37:26.470085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.470801"], ["updated_at", "2020-04-22 05:37:26.470801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.472498"], ["updated_at", "2020-04-22 05:37:26.472498"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_35504


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_237048


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.483522"], ["updated_at", "2020-04-22 05:37:26.483522"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.487019"], ["updated_at", "2020-04-22 05:37:26.487019"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.486223"], ["updated_at", "2020-04-22 05:37:26.486223"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.492751"], ["updated_at", "2020-04-22 05:37:26.492751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.489331"], ["updated_at", "2020-04-22 05:37:26.489331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.496293"], ["updated_at", "2020-04-22 05:37:26.496293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_477522


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.503117"], ["updated_at", "2020-04-22 05:37:26.503117"]]
 (0.1ms)  begin transaction

CommentTest: test_336759


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.507907"], ["updated_at", "2020-04-22 05:37:26.507907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.510717"], ["updated_at", "2020-04-22 05:37:26.510717"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.510330"], ["updated_at", "2020-04-22 05:37:26.510330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.513249"], ["updated_at", "2020-04-22 05:37:26.513249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.515079"], ["updated_at", "2020-04-22 05:37:26.515079"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_12566


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.520696"], ["updated_at", "2020-04-22 05:37:26.520696"]]
 (0.1ms)  begin transaction

CommentTest: test_998663


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.524635"], ["updated_at", "2020-04-22 05:37:26.524635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.527206"], ["updated_at", "2020-04-22 05:37:26.527206"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.526367"], ["updated_at", "2020-04-22 05:37:26.526367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.529311"], ["updated_at", "2020-04-22 05:37:26.529311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.531131"], ["updated_at", "2020-04-22 05:37:26.531131"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_263888


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_183261


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.539377"], ["updated_at", "2020-04-22 05:37:26.539377"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.541379"], ["updated_at", "2020-04-22 05:37:26.541379"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.543049"], ["updated_at", "2020-04-22 05:37:26.543049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.545029"], ["updated_at", "2020-04-22 05:37:26.545029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.544909"], ["updated_at", "2020-04-22 05:37:26.544909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.547922"], ["updated_at", "2020-04-22 05:37:26.547922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_892725


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.554143"], ["updated_at", "2020-04-22 05:37:26.554143"]]
 (2.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.558125"], ["updated_at", "2020-04-22 05:37:26.558125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_785491


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.560868"], ["updated_at", "2020-04-22 05:37:26.560868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.560815"], ["updated_at", "2020-04-22 05:37:26.560815"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.563471"], ["updated_at", "2020-04-22 05:37:26.563471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.565864"], ["updated_at", "2020-04-22 05:37:26.565864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_441798


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.572501"], ["updated_at", "2020-04-22 05:37:26.572501"]]
 (0.1ms)  begin transaction

CommentTest: test_322887


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.575462"], ["updated_at", "2020-04-22 05:37:26.575462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.577763"], ["updated_at", "2020-04-22 05:37:26.577763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.575806"], ["updated_at", "2020-04-22 05:37:26.575806"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.585663"], ["updated_at", "2020-04-22 05:37:26.585663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.587735"], ["updated_at", "2020-04-22 05:37:26.587735"]]
 (0.1ms)  begin transaction

CommentTest: test_895427


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.590292"], ["updated_at", "2020-04-22 05:37:26.590292"]]
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.595295"], ["updated_at", "2020-04-22 05:37:26.595295"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.597267"], ["updated_at", "2020-04-22 05:37:26.597267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_948959


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.602274"], ["updated_at", "2020-04-22 05:37:26.602274"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.605272"], ["updated_at", "2020-04-22 05:37:26.605272"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.609787"], ["updated_at", "2020-04-22 05:37:26.609787"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_61559


 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (1.3ms)  begin transaction

CommentTest: test_42938


Course Create (7.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.620219"], ["updated_at", "2020-04-22 05:37:26.620219"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.629554"], ["updated_at", "2020-04-22 05:37:26.629554"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.632568"], ["updated_at", "2020-04-22 05:37:26.632568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.638505"], ["updated_at", "2020-04-22 05:37:26.638505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.635480"], ["updated_at", "2020-04-22 05:37:26.635480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.653585"], ["updated_at", "2020-04-22 05:37:26.653585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_59214


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.671824"], ["updated_at", "2020-04-22 05:37:26.671824"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.676762"], ["updated_at", "2020-04-22 05:37:26.676762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_810321


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.680250"], ["updated_at", "2020-04-22 05:37:26.680250"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.681993"], ["updated_at", "2020-04-22 05:37:26.681993"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.684313"], ["updated_at", "2020-04-22 05:37:26.684313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.686119"], ["updated_at", "2020-04-22 05:37:26.686119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_262951


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.693490"], ["updated_at", "2020-04-22 05:37:26.693490"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_780488


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.697034"], ["updated_at", "2020-04-22 05:37:26.697034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.698621"], ["updated_at", "2020-04-22 05:37:26.698621"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.699295"], ["updated_at", "2020-04-22 05:37:26.699295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.701212"], ["updated_at", "2020-04-22 05:37:26.701212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.702999"], ["updated_at", "2020-04-22 05:37:26.702999"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_236408


 (0.1ms)  begin transaction

CommentTest: test_548160


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.713538"], ["updated_at", "2020-04-22 05:37:26.713538"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.714263"], ["updated_at", "2020-04-22 05:37:26.714263"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.716025"], ["updated_at", "2020-04-22 05:37:26.716025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.716150"], ["updated_at", "2020-04-22 05:37:26.716150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.718158"], ["updated_at", "2020-04-22 05:37:26.718158"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.718155"], ["updated_at", "2020-04-22 05:37:26.718155"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_158469


 (0.1ms)  begin transaction

CommentTest: test_593117


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.730671"], ["updated_at", "2020-04-22 05:37:26.730671"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.731427"], ["updated_at", "2020-04-22 05:37:26.731427"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.733403"], ["updated_at", "2020-04-22 05:37:26.733403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.734927"], ["updated_at", "2020-04-22 05:37:26.734927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.736139"], ["updated_at", "2020-04-22 05:37:26.736139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.737123"], ["updated_at", "2020-04-22 05:37:26.737123"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_42289


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.748483"], ["updated_at", "2020-04-22 05:37:26.748483"]]
 (0.1ms)  begin transaction

CommentTest: test_965814


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.751663"], ["updated_at", "2020-04-22 05:37:26.751663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.751604"], ["updated_at", "2020-04-22 05:37:26.751604"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.753606"], ["updated_at", "2020-04-22 05:37:26.753606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.754465"], ["updated_at", "2020-04-22 05:37:26.754465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.756732"], ["updated_at", "2020-04-22 05:37:26.756732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_811433

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.766214"], ["updated_at", "2020-04-22 05:37:26.766214"]]
 (0.1ms)  begin transaction

CommentTest: test_67233


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.769360"], ["updated_at", "2020-04-22 05:37:26.769360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.770658"], ["updated_at", "2020-04-22 05:37:26.770658"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.772763"], ["updated_at", "2020-04-22 05:37:26.772763"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.775041"], ["updated_at", "2020-04-22 05:37:26.775041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.781409"], ["updated_at", "2020-04-22 05:37:26.781409"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_930067


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.786183"], ["updated_at", "2020-04-22 05:37:26.786183"]]
 (0.1ms)  begin transaction

CommentTest: test_337205


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.789055"], ["updated_at", "2020-04-22 05:37:26.789055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.793380"], ["updated_at", "2020-04-22 05:37:26.793380"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.790479"], ["updated_at", "2020-04-22 05:37:26.790479"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.800517"], ["updated_at", "2020-04-22 05:37:26.800517"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.802572"], ["updated_at", "2020-04-22 05:37:26.802572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_309020


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.809924"], ["updated_at", "2020-04-22 05:37:26.809924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.813798"], ["updated_at", "2020-04-22 05:37:26.813798"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_964790


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.816440"], ["updated_at", "2020-04-22 05:37:26.816440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.816594"], ["updated_at", "2020-04-22 05:37:26.816594"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.819577"], ["updated_at", "2020-04-22 05:37:26.819577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.821859"], ["updated_at", "2020-04-22 05:37:26.821859"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380540


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.835903"], ["updated_at", "2020-04-22 05:37:26.835903"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.840024"], ["updated_at", "2020-04-22 05:37:26.840024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.5ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_768315


Recording Create (7.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.845355"], ["updated_at", "2020-04-22 05:37:26.845355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (4.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (11.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.854444"], ["updated_at", "2020-04-22 05:37:26.854444"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_313714


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.868538"], ["updated_at", "2020-04-22 05:37:26.868538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.871301"], ["updated_at", "2020-04-22 05:37:26.871301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.870751"], ["updated_at", "2020-04-22 05:37:26.870751"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.877976"], ["updated_at", "2020-04-22 05:37:26.877976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.882281"], ["updated_at", "2020-04-22 05:37:26.882281"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

 (5.5ms)  rollback transaction

CommentTest: test_928953


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_82133


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.898859"], ["updated_at", "2020-04-22 05:37:26.898859"]]
Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.895910"], ["updated_at", "2020-04-22 05:37:26.895910"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.902788"], ["updated_at", "2020-04-22 05:37:26.902788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.905225"], ["updated_at", "2020-04-22 05:37:26.905225"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.904499"], ["updated_at", "2020-04-22 05:37:26.904499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.918386"], ["updated_at", "2020-04-22 05:37:26.918386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  begin transaction

CommentTest: test_537146


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (6.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.923314"], ["updated_at", "2020-04-22 05:37:26.923314"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.929353"], ["updated_at", "2020-04-22 05:37:26.929353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.932069"], ["updated_at", "2020-04-22 05:37:26.932069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_386852


 (0.1ms)  begin transaction

CommentTest: test_732097


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.948070"], ["updated_at", "2020-04-22 05:37:26.948070"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.949606"], ["updated_at", "2020-04-22 05:37:26.949606"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.951124"], ["updated_at", "2020-04-22 05:37:26.951124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.953105"], ["updated_at", "2020-04-22 05:37:26.953105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.953640"], ["updated_at", "2020-04-22 05:37:26.953640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (4.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.955531"], ["updated_at", "2020-04-22 05:37:26.955531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_164906


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.969543"], ["updated_at", "2020-04-22 05:37:26.969543"]]

CommentTest: test_868254


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.972224"], ["updated_at", "2020-04-22 05:37:26.972224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.972014"], ["updated_at", "2020-04-22 05:37:26.972014"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.974678"], ["updated_at", "2020-04-22 05:37:26.974678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.977378"], ["updated_at", "2020-04-22 05:37:26.977378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.980445"], ["updated_at", "2020-04-22 05:37:26.980445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_891668


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.986983"], ["updated_at", "2020-04-22 05:37:26.986983"]]
 (0.1ms)  begin transaction

CommentTest: test_796908


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:26.995006"], ["updated_at", "2020-04-22 05:37:26.995006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:26.998609"], ["updated_at", "2020-04-22 05:37:26.998609"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:26.997178"], ["updated_at", "2020-04-22 05:37:26.997178"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:27.022305"], ["updated_at", "2020-04-22 05:37:27.022305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (61.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:27.069867"], ["updated_at", "2020-04-22 05:37:27.069867"]]
 (146.8ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_169362


Bucket Load (103.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (22.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:27.270968"], ["updated_at", "2020-04-22 05:37:27.270968"]]
 (5.3ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:27.446570"], ["updated_at", "2020-04-22 05:37:27.446570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_828358


 (9.7ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:27.499997"], ["updated_at", "2020-04-22 05:37:27.499997"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:27.505056"], ["updated_at", "2020-04-22 05:37:27.505056"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (4.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:27.594313"], ["updated_at", "2020-04-22 05:37:27.594313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (11.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_731690


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:27.802959"], ["updated_at", "2020-04-22 05:37:27.802959"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (159.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:27.693220"], ["updated_at", "2020-04-22 05:37:27.693220"]]
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:27.862943"], ["updated_at", "2020-04-22 05:37:27.862943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (13.5ms)  rollback transaction
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:27.872411"], ["updated_at", "2020-04-22 05:37:27.872411"]]
 (0.3ms)  begin transaction

CommentTest: test_466038


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:27.887985"], ["updated_at", "2020-04-22 05:37:27.887985"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:27.936390"], ["updated_at", "2020-04-22 05:37:27.936390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_441614


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:27.986736"], ["updated_at", "2020-04-22 05:37:27.986736"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:27.987633"], ["updated_at", "2020-04-22 05:37:27.987633"]]
Bucket Create (4.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.003110"], ["updated_at", "2020-04-22 05:37:28.003110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_513764


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.064078"], ["updated_at", "2020-04-22 05:37:28.064078"]]
Recording Create (18.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.077344"], ["updated_at", "2020-04-22 05:37:28.077344"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.074139"], ["updated_at", "2020-04-22 05:37:28.074139"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (4.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.115671"], ["updated_at", "2020-04-22 05:37:28.115671"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_537590


 (160.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.199092"], ["updated_at", "2020-04-22 05:37:28.199092"]]
 (0.2ms)  begin transaction

CommentTest: test_227766


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.315542"], ["updated_at", "2020-04-22 05:37:28.315542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.315336"], ["updated_at", "2020-04-22 05:37:28.315336"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.328145"], ["updated_at", "2020-04-22 05:37:28.328145"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.332469"], ["updated_at", "2020-04-22 05:37:28.332469"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.345345"], ["updated_at", "2020-04-22 05:37:28.345345"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_481120


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.392792"], ["updated_at", "2020-04-22 05:37:28.392792"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.403094"], ["updated_at", "2020-04-22 05:37:28.403094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.416402"], ["updated_at", "2020-04-22 05:37:28.416402"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_676324


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.437978"], ["updated_at", "2020-04-22 05:37:28.437978"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.450570"], ["updated_at", "2020-04-22 05:37:28.450570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (13.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.498445"], ["updated_at", "2020-04-22 05:37:28.498445"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_781598


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.520260"], ["updated_at", "2020-04-22 05:37:28.520260"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.532444"], ["updated_at", "2020-04-22 05:37:28.532444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_13825


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (49.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.571976"], ["updated_at", "2020-04-22 05:37:28.571976"]]
Course Create (60.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.569018"], ["updated_at", "2020-04-22 05:37:28.569018"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.750740"], ["updated_at", "2020-04-22 05:37:28.750740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.777784"], ["updated_at", "2020-04-22 05:37:28.777784"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  begin transaction

CommentTest: test_633853


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.889422"], ["updated_at", "2020-04-22 05:37:28.889422"]]
 (0.2ms)  begin transaction

CommentTest: test_356366


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:28.910489"], ["updated_at", "2020-04-22 05:37:28.910489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (8.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:28.925256"], ["updated_at", "2020-04-22 05:37:28.925256"]]
Course Create (86.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:28.910668"], ["updated_at", "2020-04-22 05:37:28.910668"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.024542"], ["updated_at", "2020-04-22 05:37:29.024542"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.068319"], ["updated_at", "2020-04-22 05:37:29.068319"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (16.4ms)  rollback transaction
 (8.4ms)  SAVEPOINT active_record_1
Comment Create (4.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_644218


 (0.4ms)  SAVEPOINT active_record_1
Course Create (11.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.161175"], ["updated_at", "2020-04-22 05:37:29.161175"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.233776"], ["updated_at", "2020-04-22 05:37:29.233776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (107.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.254644"], ["updated_at", "2020-04-22 05:37:29.254644"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_127559


Bucket Load (5.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (2.1ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.287148"], ["updated_at", "2020-04-22 05:37:29.287148"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.373067"], ["updated_at", "2020-04-22 05:37:29.373067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.423288"], ["updated_at", "2020-04-22 05:37:29.423288"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (16.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_602854


 (1.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (19.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.498039"], ["updated_at", "2020-04-22 05:37:29.498039"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_906478


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.557060"], ["updated_at", "2020-04-22 05:37:29.557060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.597314"], ["updated_at", "2020-04-22 05:37:29.597314"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.607545"], ["updated_at", "2020-04-22 05:37:29.607545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.615566"], ["updated_at", "2020-04-22 05:37:29.615566"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.625348"], ["updated_at", "2020-04-22 05:37:29.625348"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_987532


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.682846"], ["updated_at", "2020-04-22 05:37:29.682846"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_520595


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.736514"], ["updated_at", "2020-04-22 05:37:29.736514"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.757095"], ["updated_at", "2020-04-22 05:37:29.757095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.734429"], ["updated_at", "2020-04-22 05:37:29.734429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.779139"], ["updated_at", "2020-04-22 05:37:29.779139"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (4.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.801298"], ["updated_at", "2020-04-22 05:37:29.801298"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_786531


 (0.7ms)  SAVEPOINT active_record_1
Course Create (26.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.832312"], ["updated_at", "2020-04-22 05:37:29.832312"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.878252"], ["updated_at", "2020-04-22 05:37:29.878252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (16.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_198935


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:29.926554"], ["updated_at", "2020-04-22 05:37:29.926554"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:29.957042"], ["updated_at", "2020-04-22 05:37:29.957042"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:29.947449"], ["updated_at", "2020-04-22 05:37:29.947449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_503189


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.005703"], ["updated_at", "2020-04-22 05:37:30.005703"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Course Create (56.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.017212"], ["updated_at", "2020-04-22 05:37:30.017212"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.084117"], ["updated_at", "2020-04-22 05:37:30.084117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.092331"], ["updated_at", "2020-04-22 05:37:30.092331"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_488930


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.112750"], ["updated_at", "2020-04-22 05:37:30.112750"]]
Bucket Create (13.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.149197"], ["updated_at", "2020-04-22 05:37:30.149197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.206068"], ["updated_at", "2020-04-22 05:37:30.206068"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (40.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_735397


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.265629"], ["updated_at", "2020-04-22 05:37:30.265629"]]
 (0.2ms)  begin transaction

CommentTest: test_554789


 (0.3ms)  SAVEPOINT active_record_1
Course Create (13.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.290156"], ["updated_at", "2020-04-22 05:37:30.290156"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.318442"], ["updated_at", "2020-04-22 05:37:30.318442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.328222"], ["updated_at", "2020-04-22 05:37:30.328222"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (54.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.275533"], ["updated_at", "2020-04-22 05:37:30.275533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (19.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.343684"], ["updated_at", "2020-04-22 05:37:30.343684"]]
Bucket Load (2.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_916177


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_354245


Course Create (70.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.423034"], ["updated_at", "2020-04-22 05:37:30.423034"]]
 (4.9ms)  SAVEPOINT active_record_1
Bucket Create (9.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.542281"], ["updated_at", "2020-04-22 05:37:30.542281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (127.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.482544"], ["updated_at", "2020-04-22 05:37:30.482544"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.739207"], ["updated_at", "2020-04-22 05:37:30.739207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.756121"], ["updated_at", "2020-04-22 05:37:30.756121"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.630546"], ["updated_at", "2020-04-22 05:37:30.630546"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (8.7ms)  rollback transaction
 (9.6ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_455454



CommentTest: test_596800


 (0.4ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.895791"], ["updated_at", "2020-04-22 05:37:30.895791"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.917207"], ["updated_at", "2020-04-22 05:37:30.917207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:30.894722"], ["updated_at", "2020-04-22 05:37:30.894722"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:30.968762"], ["updated_at", "2020-04-22 05:37:30.968762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (115.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:30.925781"], ["updated_at", "2020-04-22 05:37:30.925781"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (33.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.033210"], ["updated_at", "2020-04-22 05:37:31.033210"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (9.9ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_723774


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.140852"], ["updated_at", "2020-04-22 05:37:31.140852"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.158911"], ["updated_at", "2020-04-22 05:37:31.158911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_539079


 (0.4ms)  SAVEPOINT active_record_1
Course Create (24.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.175618"], ["updated_at", "2020-04-22 05:37:31.175618"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.207746"], ["updated_at", "2020-04-22 05:37:31.207746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.256999"], ["updated_at", "2020-04-22 05:37:31.256999"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.267347"], ["updated_at", "2020-04-22 05:37:31.267347"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_598019


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.390740"], ["updated_at", "2020-04-22 05:37:31.390740"]]
 (67.3ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.403435"], ["updated_at", "2020-04-22 05:37:31.403435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_168524


Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.414372"], ["updated_at", "2020-04-22 05:37:31.414372"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.416913"], ["updated_at", "2020-04-22 05:37:31.416913"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.441146"], ["updated_at", "2020-04-22 05:37:31.441146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.465390"], ["updated_at", "2020-04-22 05:37:31.465390"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.0ms)  rollback transaction
 (9.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_261846


 (0.2ms)  begin transaction

CommentTest: test_250878


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.550664"], ["updated_at", "2020-04-22 05:37:31.550664"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.562146"], ["updated_at", "2020-04-22 05:37:31.562146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (11.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.558541"], ["updated_at", "2020-04-22 05:37:31.558541"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.576327"], ["updated_at", "2020-04-22 05:37:31.576327"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.580000"], ["updated_at", "2020-04-22 05:37:31.580000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.650151"], ["updated_at", "2020-04-22 05:37:31.650151"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_302268


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.681496"], ["updated_at", "2020-04-22 05:37:31.681496"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.690891"], ["updated_at", "2020-04-22 05:37:31.690891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.700302"], ["updated_at", "2020-04-22 05:37:31.700302"]]
 (27.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_328194


 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.751740"], ["updated_at", "2020-04-22 05:37:31.751740"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.765424"], ["updated_at", "2020-04-22 05:37:31.765424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.772962"], ["updated_at", "2020-04-22 05:37:31.772962"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (16.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (16.9ms)  rollback transaction
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_861443


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (41.3ms)  rollback transaction
 (3.4ms)  begin transaction

CommentTest: test_916083


 (0.3ms)  SAVEPOINT active_record_1
Course Create (93.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.855261"], ["updated_at", "2020-04-22 05:37:31.855261"]]
Bucket Create (15.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:31.958922"], ["updated_at", "2020-04-22 05:37:31.958922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:31.994265"], ["updated_at", "2020-04-22 05:37:31.994265"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (49.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:31.950973"], ["updated_at", "2020-04-22 05:37:31.950973"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.018843"], ["updated_at", "2020-04-22 05:37:32.018843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:32.027648"], ["updated_at", "2020-04-22 05:37:32.027648"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.9ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (7.5ms)  RELEASE SAVEPOINT active_record_1
Comment Create (7.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.0ms)  rollback transaction
 (7.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_354781


 (0.2ms)  begin transaction

CommentTest: test_567463


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.125938"], ["updated_at", "2020-04-22 05:37:32.125938"]]
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.127968"], ["updated_at", "2020-04-22 05:37:32.127968"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.138319"], ["updated_at", "2020-04-22 05:37:32.138319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:32.149539"], ["updated_at", "2020-04-22 05:37:32.149539"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (40.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.226269"], ["updated_at", "2020-04-22 05:37:32.226269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:32.273626"], ["updated_at", "2020-04-22 05:37:32.273626"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (12.0ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_738291


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.426908"], ["updated_at", "2020-04-22 05:37:32.426908"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_866549


 (0.8ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.500372"], ["updated_at", "2020-04-22 05:37:32.500372"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.444539"], ["updated_at", "2020-04-22 05:37:32.444539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (25.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:32.561341"], ["updated_at", "2020-04-22 05:37:32.561341"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.593566"], ["updated_at", "2020-04-22 05:37:32.593566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:32.624444"], ["updated_at", "2020-04-22 05:37:32.624444"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (32.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_498762


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.885031"], ["updated_at", "2020-04-22 05:37:32.885031"]]
 (6.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (19.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_545532


Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:32.897501"], ["updated_at", "2020-04-22 05:37:32.897501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.009828"], ["updated_at", "2020-04-22 05:37:33.009828"]]
Course Create (63.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:32.993931"], ["updated_at", "2020-04-22 05:37:32.993931"]]
 (3.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.073647"], ["updated_at", "2020-04-22 05:37:33.073647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.153057"], ["updated_at", "2020-04-22 05:37:33.153057"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_187215


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.211058"], ["updated_at", "2020-04-22 05:37:33.211058"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.227533"], ["updated_at", "2020-04-22 05:37:33.227533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.9ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_597465


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.254282"], ["updated_at", "2020-04-22 05:37:33.254282"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.270114"], ["updated_at", "2020-04-22 05:37:33.270114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.279452"], ["updated_at", "2020-04-22 05:37:33.279452"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (70.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.235521"], ["updated_at", "2020-04-22 05:37:33.235521"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (14.9ms)  rollback transaction
 (22.2ms)  begin transaction

CommentTest: test_399244


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_481576


 (2.1ms)  SAVEPOINT active_record_1
Course Create (64.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.409929"], ["updated_at", "2020-04-22 05:37:33.409929"]]
Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.487157"], ["updated_at", "2020-04-22 05:37:33.487157"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.521892"], ["updated_at", "2020-04-22 05:37:33.521892"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.445915"], ["updated_at", "2020-04-22 05:37:33.445915"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.560626"], ["updated_at", "2020-04-22 05:37:33.560626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.575396"], ["updated_at", "2020-04-22 05:37:33.575396"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (13.7ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_356931

 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1

 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.629336"], ["updated_at", "2020-04-22 05:37:33.629336"]]
 (3.1ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_256067


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (7.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.669511"], ["updated_at", "2020-04-22 05:37:33.669511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (8.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.670785"], ["updated_at", "2020-04-22 05:37:33.670785"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.695350"], ["updated_at", "2020-04-22 05:37:33.695350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.686736"], ["updated_at", "2020-04-22 05:37:33.686736"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.737579"], ["updated_at", "2020-04-22 05:37:33.737579"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.8ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
 (0.8ms)  begin transaction

CommentTest: test_535399


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.784191"], ["updated_at", "2020-04-22 05:37:33.784191"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.797573"], ["updated_at", "2020-04-22 05:37:33.797573"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (21.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_516007


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.824310"], ["updated_at", "2020-04-22 05:37:33.824310"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.842288"], ["updated_at", "2020-04-22 05:37:33.842288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.852478"], ["updated_at", "2020-04-22 05:37:33.852478"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (5.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:33.853868"], ["updated_at", "2020-04-22 05:37:33.853868"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_323443


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:33.952393"], ["updated_at", "2020-04-22 05:37:33.952393"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:33.983835"], ["updated_at", "2020-04-22 05:37:33.983835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (72.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_416812


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.046386"], ["updated_at", "2020-04-22 05:37:34.046386"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Course Create (16.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.042940"], ["updated_at", "2020-04-22 05:37:34.042940"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (33.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.072606"], ["updated_at", "2020-04-22 05:37:34.072606"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (11.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.144231"], ["updated_at", "2020-04-22 05:37:34.144231"]]
 (12.4ms)  rollback transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_62590


Bucket Load (3.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (23.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.169011"], ["updated_at", "2020-04-22 05:37:34.169011"]]
 (27.3ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.198256"], ["updated_at", "2020-04-22 05:37:34.198256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_217395


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.202754"], ["updated_at", "2020-04-22 05:37:34.202754"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.203337"], ["updated_at", "2020-04-22 05:37:34.203337"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.213433"], ["updated_at", "2020-04-22 05:37:34.213433"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.215773"], ["updated_at", "2020-04-22 05:37:34.215773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_317704


 (1.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.232036"], ["updated_at", "2020-04-22 05:37:34.232036"]]
 (0.1ms)  begin transaction

CommentTest: test_311920


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.234813"], ["updated_at", "2020-04-22 05:37:34.234813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.235067"], ["updated_at", "2020-04-22 05:37:34.235067"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.236997"], ["updated_at", "2020-04-22 05:37:34.236997"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.243401"], ["updated_at", "2020-04-22 05:37:34.243401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.247228"], ["updated_at", "2020-04-22 05:37:34.247228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_921085


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.255150"], ["updated_at", "2020-04-22 05:37:34.255150"]]
 (0.1ms)  begin transaction

CommentTest: test_509926


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.259893"], ["updated_at", "2020-04-22 05:37:34.259893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.263059"], ["updated_at", "2020-04-22 05:37:34.263059"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.262643"], ["updated_at", "2020-04-22 05:37:34.262643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.265806"], ["updated_at", "2020-04-22 05:37:34.265806"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.267642"], ["updated_at", "2020-04-22 05:37:34.267642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_761582


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.272462"], ["updated_at", "2020-04-22 05:37:34.272462"]]
 (1.4ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.275673"], ["updated_at", "2020-04-22 05:37:34.275673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_940843


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.278703"], ["updated_at", "2020-04-22 05:37:34.278703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.278941"], ["updated_at", "2020-04-22 05:37:34.278941"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.281287"], ["updated_at", "2020-04-22 05:37:34.281287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.283730"], ["updated_at", "2020-04-22 05:37:34.283730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_692039


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.286649"], ["updated_at", "2020-04-22 05:37:34.286649"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_548033


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.295797"], ["updated_at", "2020-04-22 05:37:34.295797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.296403"], ["updated_at", "2020-04-22 05:37:34.296403"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.298294"], ["updated_at", "2020-04-22 05:37:34.298294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.299395"], ["updated_at", "2020-04-22 05:37:34.299395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.301434"], ["updated_at", "2020-04-22 05:37:34.301434"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_340494


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_347572


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.312477"], ["updated_at", "2020-04-22 05:37:34.312477"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.315592"], ["updated_at", "2020-04-22 05:37:34.315592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.315321"], ["updated_at", "2020-04-22 05:37:34.315321"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.318251"], ["updated_at", "2020-04-22 05:37:34.318251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.319399"], ["updated_at", "2020-04-22 05:37:34.319399"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.322315"], ["updated_at", "2020-04-22 05:37:34.322315"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_503619


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.332291"], ["updated_at", "2020-04-22 05:37:34.332291"]]
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.334998"], ["updated_at", "2020-04-22 05:37:34.334998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_130780


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.337063"], ["updated_at", "2020-04-22 05:37:34.337063"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.336927"], ["updated_at", "2020-04-22 05:37:34.336927"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.340182"], ["updated_at", "2020-04-22 05:37:34.340182"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.345018"], ["updated_at", "2020-04-22 05:37:34.345018"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_415024


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.350936"], ["updated_at", "2020-04-22 05:37:34.350936"]]
 (0.1ms)  begin transaction

CommentTest: test_124367


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.354333"], ["updated_at", "2020-04-22 05:37:34.354333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.355380"], ["updated_at", "2020-04-22 05:37:34.355380"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.356951"], ["updated_at", "2020-04-22 05:37:34.356951"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.359988"], ["updated_at", "2020-04-22 05:37:34.359988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.362213"], ["updated_at", "2020-04-22 05:37:34.362213"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_117598


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.369808"], ["updated_at", "2020-04-22 05:37:34.369808"]]
 (0.1ms)  begin transaction

CommentTest: test_400249


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.374208"], ["updated_at", "2020-04-22 05:37:34.374208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.375762"], ["updated_at", "2020-04-22 05:37:34.375762"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.378443"], ["updated_at", "2020-04-22 05:37:34.378443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.379980"], ["updated_at", "2020-04-22 05:37:34.379980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.382329"], ["updated_at", "2020-04-22 05:37:34.382329"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_884388


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.386995"], ["updated_at", "2020-04-22 05:37:34.386995"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.390405"], ["updated_at", "2020-04-22 05:37:34.390405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_968380


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.393896"], ["updated_at", "2020-04-22 05:37:34.393896"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.393870"], ["updated_at", "2020-04-22 05:37:34.393870"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.397863"], ["updated_at", "2020-04-22 05:37:34.397863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.399951"], ["updated_at", "2020-04-22 05:37:34.399951"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_964654


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (7.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (7.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.404224"], ["updated_at", "2020-04-22 05:37:34.404224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.414605"], ["updated_at", "2020-04-22 05:37:34.414605"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.417342"], ["updated_at", "2020-04-22 05:37:34.417342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (1.3ms)  rollback transaction

CommentTest: test_571791


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_951664


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.448828"], ["updated_at", "2020-04-22 05:37:34.448828"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.451237"], ["updated_at", "2020-04-22 05:37:34.451237"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.452030"], ["updated_at", "2020-04-22 05:37:34.452030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.455179"], ["updated_at", "2020-04-22 05:37:34.455179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.456226"], ["updated_at", "2020-04-22 05:37:34.456226"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.463027"], ["updated_at", "2020-04-22 05:37:34.463027"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_242406


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.476008"], ["updated_at", "2020-04-22 05:37:34.476008"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.481125"], ["updated_at", "2020-04-22 05:37:34.481125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.482985"], ["updated_at", "2020-04-22 05:37:34.482985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.8ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_23289


 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.495774"], ["updated_at", "2020-04-22 05:37:34.495774"]]
 (0.1ms)  begin transaction

CommentTest: test_945292


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.499479"], ["updated_at", "2020-04-22 05:37:34.499479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.501860"], ["updated_at", "2020-04-22 05:37:34.501860"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.501058"], ["updated_at", "2020-04-22 05:37:34.501058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_937159


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.514287"], ["updated_at", "2020-04-22 05:37:34.514287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.519447"], ["updated_at", "2020-04-22 05:37:34.519447"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.520560"], ["updated_at", "2020-04-22 05:37:34.520560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.522214"], ["updated_at", "2020-04-22 05:37:34.522214"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.525061"], ["updated_at", "2020-04-22 05:37:34.525061"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_619005


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.532327"], ["updated_at", "2020-04-22 05:37:34.532327"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.535373"], ["updated_at", "2020-04-22 05:37:34.535373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.538433"], ["updated_at", "2020-04-22 05:37:34.538433"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_801934


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.544050"], ["updated_at", "2020-04-22 05:37:34.544050"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.546842"], ["updated_at", "2020-04-22 05:37:34.546842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.548786"], ["updated_at", "2020-04-22 05:37:34.548786"]]

CommentTest: test_802331


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.553822"], ["updated_at", "2020-04-22 05:37:34.553822"]]
 (0.5ms)  begin transaction

CommentTest: test_179813


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.557636"], ["updated_at", "2020-04-22 05:37:34.557636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.558660"], ["updated_at", "2020-04-22 05:37:34.558660"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.565013"], ["updated_at", "2020-04-22 05:37:34.565013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.569394"], ["updated_at", "2020-04-22 05:37:34.569394"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.564580"], ["updated_at", "2020-04-22 05:37:34.564580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618171


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.604847"], ["updated_at", "2020-04-22 05:37:34.604847"]]

CommentTest: test_791727


 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.609700"], ["updated_at", "2020-04-22 05:37:34.609700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.609577"], ["updated_at", "2020-04-22 05:37:34.609577"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.617064"], ["updated_at", "2020-04-22 05:37:34.617064"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.617569"], ["updated_at", "2020-04-22 05:37:34.617569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.619756"], ["updated_at", "2020-04-22 05:37:34.619756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (28.5ms)  rollback transaction
 (4.4ms)  begin transaction

CommentTest: test_113161


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.669641"], ["updated_at", "2020-04-22 05:37:34.669641"]]
 (0.1ms)  begin transaction

CommentTest: test_126371


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.672822"], ["updated_at", "2020-04-22 05:37:34.672822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.675427"], ["updated_at", "2020-04-22 05:37:34.675427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.674646"], ["updated_at", "2020-04-22 05:37:34.674646"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.684990"], ["updated_at", "2020-04-22 05:37:34.684990"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.688160"], ["updated_at", "2020-04-22 05:37:34.688160"]]
 (0.1ms)  begin transaction

CommentTest: test_203946


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.690688"], ["updated_at", "2020-04-22 05:37:34.690688"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.696118"], ["updated_at", "2020-04-22 05:37:34.696118"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.698146"], ["updated_at", "2020-04-22 05:37:34.698146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_533143


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.702063"], ["updated_at", "2020-04-22 05:37:34.702063"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_784462


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.704490"], ["updated_at", "2020-04-22 05:37:34.704490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.706700"], ["updated_at", "2020-04-22 05:37:34.706700"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.711485"], ["updated_at", "2020-04-22 05:37:34.711485"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.711475"], ["updated_at", "2020-04-22 05:37:34.711475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.713601"], ["updated_at", "2020-04-22 05:37:34.713601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_876323


 (0.1ms)  begin transaction

CommentTest: test_829047


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.728134"], ["updated_at", "2020-04-22 05:37:34.728134"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.728728"], ["updated_at", "2020-04-22 05:37:34.728728"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.731927"], ["updated_at", "2020-04-22 05:37:34.731927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.731594"], ["updated_at", "2020-04-22 05:37:34.731594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.735099"], ["updated_at", "2020-04-22 05:37:34.735099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.735753"], ["updated_at", "2020-04-22 05:37:34.735753"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (7.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_345745

 (0.4ms)  begin transaction

CommentTest: test_928884



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.761859"], ["updated_at", "2020-04-22 05:37:34.761859"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.761857"], ["updated_at", "2020-04-22 05:37:34.761857"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.765180"], ["updated_at", "2020-04-22 05:37:34.765180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.768566"], ["updated_at", "2020-04-22 05:37:34.768566"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.768583"], ["updated_at", "2020-04-22 05:37:34.768583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.770725"], ["updated_at", "2020-04-22 05:37:34.770725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_598766


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.783139"], ["updated_at", "2020-04-22 05:37:34.783139"]]
 (0.1ms)  begin transaction

CommentTest: test_514274


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.785938"], ["updated_at", "2020-04-22 05:37:34.785938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.787097"], ["updated_at", "2020-04-22 05:37:34.787097"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.790260"], ["updated_at", "2020-04-22 05:37:34.790260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.793056"], ["updated_at", "2020-04-22 05:37:34.793056"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.795799"], ["updated_at", "2020-04-22 05:37:34.795799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (7.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_263526


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_263549


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.812567"], ["updated_at", "2020-04-22 05:37:34.812567"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.817839"], ["updated_at", "2020-04-22 05:37:34.817839"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.821104"], ["updated_at", "2020-04-22 05:37:34.821104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.823719"], ["updated_at", "2020-04-22 05:37:34.823719"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.818765"], ["updated_at", "2020-04-22 05:37:34.818765"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.828808"], ["updated_at", "2020-04-22 05:37:34.828808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_224943


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.839877"], ["updated_at", "2020-04-22 05:37:34.839877"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.844178"], ["updated_at", "2020-04-22 05:37:34.844178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.847444"], ["updated_at", "2020-04-22 05:37:34.847444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_48380


Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.851653"], ["updated_at", "2020-04-22 05:37:34.851653"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.854018"], ["updated_at", "2020-04-22 05:37:34.854018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.856844"], ["updated_at", "2020-04-22 05:37:34.856844"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_913004


 (0.1ms)  SAVEPOINT active_record_1
 (19.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_754429


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.888945"], ["updated_at", "2020-04-22 05:37:34.888945"]]
Course Create (23.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.867948"], ["updated_at", "2020-04-22 05:37:34.867948"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.894943"], ["updated_at", "2020-04-22 05:37:34.894943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.896381"], ["updated_at", "2020-04-22 05:37:34.896381"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.897750"], ["updated_at", "2020-04-22 05:37:34.897750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.899649"], ["updated_at", "2020-04-22 05:37:34.899649"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  SAVEPOINT active_record_1
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_742899


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_925327


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.917166"], ["updated_at", "2020-04-22 05:37:34.917166"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.919594"], ["updated_at", "2020-04-22 05:37:34.919594"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.920155"], ["updated_at", "2020-04-22 05:37:34.920155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.927771"], ["updated_at", "2020-04-22 05:37:34.927771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.928506"], ["updated_at", "2020-04-22 05:37:34.928506"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.932145"], ["updated_at", "2020-04-22 05:37:34.932145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_520514


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.945996"], ["updated_at", "2020-04-22 05:37:34.945996"]]
 (0.1ms)  begin transaction

CommentTest: test_946433


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.949101"], ["updated_at", "2020-04-22 05:37:34.949101"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.951830"], ["updated_at", "2020-04-22 05:37:34.951830"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.951297"], ["updated_at", "2020-04-22 05:37:34.951297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.954619"], ["updated_at", "2020-04-22 05:37:34.954619"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.958552"], ["updated_at", "2020-04-22 05:37:34.958552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_400394


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.962228"], ["updated_at", "2020-04-22 05:37:34.962228"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.967800"], ["updated_at", "2020-04-22 05:37:34.967800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_904103


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.970635"], ["updated_at", "2020-04-22 05:37:34.970635"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.971710"], ["updated_at", "2020-04-22 05:37:34.971710"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.978367"], ["updated_at", "2020-04-22 05:37:34.978367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.981551"], ["updated_at", "2020-04-22 05:37:34.981551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_335543


 (0.1ms)  begin transaction

CommentTest: test_905247


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.994171"], ["updated_at", "2020-04-22 05:37:34.994171"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:34.995100"], ["updated_at", "2020-04-22 05:37:34.995100"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.996831"], ["updated_at", "2020-04-22 05:37:34.996831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:34.997659"], ["updated_at", "2020-04-22 05:37:34.997659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.998762"], ["updated_at", "2020-04-22 05:37:34.998762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:34.999838"], ["updated_at", "2020-04-22 05:37:34.999838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618222


 (0.1ms)  begin transaction

CommentTest: test_239092


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.009768"], ["updated_at", "2020-04-22 05:37:35.009768"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.010266"], ["updated_at", "2020-04-22 05:37:35.010266"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.014131"], ["updated_at", "2020-04-22 05:37:35.014131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.015736"], ["updated_at", "2020-04-22 05:37:35.015736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.016144"], ["updated_at", "2020-04-22 05:37:35.016144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.017846"], ["updated_at", "2020-04-22 05:37:35.017846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_925112 CommentTest: test_771101



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.029033"], ["updated_at", "2020-04-22 05:37:35.029033"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.029114"], ["updated_at", "2020-04-22 05:37:35.029114"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.031495"], ["updated_at", "2020-04-22 05:37:35.031495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.031968"], ["updated_at", "2020-04-22 05:37:35.031968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.034049"], ["updated_at", "2020-04-22 05:37:35.034049"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.034049"], ["updated_at", "2020-04-22 05:37:35.034049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_73497


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_486127


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.044904"], ["updated_at", "2020-04-22 05:37:35.044904"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.047292"], ["updated_at", "2020-04-22 05:37:35.047292"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.047763"], ["updated_at", "2020-04-22 05:37:35.047763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.050150"], ["updated_at", "2020-04-22 05:37:35.050150"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.050201"], ["updated_at", "2020-04-22 05:37:35.050201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.053078"], ["updated_at", "2020-04-22 05:37:35.053078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_467689


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.065039"], ["updated_at", "2020-04-22 05:37:35.065039"]]
 (0.8ms)  begin transaction

CommentTest: test_831342


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.067854"], ["updated_at", "2020-04-22 05:37:35.067854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.067828"], ["updated_at", "2020-04-22 05:37:35.067828"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.070534"], ["updated_at", "2020-04-22 05:37:35.070534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.070524"], ["updated_at", "2020-04-22 05:37:35.070524"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.074231"], ["updated_at", "2020-04-22 05:37:35.074231"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_91766


 (0.1ms)  begin transaction

CommentTest: test_351187


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.084237"], ["updated_at", "2020-04-22 05:37:35.084237"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.085576"], ["updated_at", "2020-04-22 05:37:35.085576"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.086865"], ["updated_at", "2020-04-22 05:37:35.086865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.089099"], ["updated_at", "2020-04-22 05:37:35.089099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.100003"], ["updated_at", "2020-04-22 05:37:35.100003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.102096"], ["updated_at", "2020-04-22 05:37:35.102096"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_302183


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.110052"], ["updated_at", "2020-04-22 05:37:35.110052"]]
 (0.1ms)  begin transaction

CommentTest: test_719997


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.113202"], ["updated_at", "2020-04-22 05:37:35.113202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.115125"], ["updated_at", "2020-04-22 05:37:35.115125"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.116597"], ["updated_at", "2020-04-22 05:37:35.116597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.118292"], ["updated_at", "2020-04-22 05:37:35.118292"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.120786"], ["updated_at", "2020-04-22 05:37:35.120786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_884425


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.127312"], ["updated_at", "2020-04-22 05:37:35.127312"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.129727"], ["updated_at", "2020-04-22 05:37:35.129727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_162081


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.131290"], ["updated_at", "2020-04-22 05:37:35.131290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.131305"], ["updated_at", "2020-04-22 05:37:35.131305"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.133923"], ["updated_at", "2020-04-22 05:37:35.133923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.135899"], ["updated_at", "2020-04-22 05:37:35.135899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_552155


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.141426"], ["updated_at", "2020-04-22 05:37:35.141426"]]
 (0.1ms)  begin transaction

CommentTest: test_253611


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.144117"], ["updated_at", "2020-04-22 05:37:35.144117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.145054"], ["updated_at", "2020-04-22 05:37:35.145054"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.146366"], ["updated_at", "2020-04-22 05:37:35.146366"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.147137"], ["updated_at", "2020-04-22 05:37:35.147137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.148446"], ["updated_at", "2020-04-22 05:37:35.148446"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_697341


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_755225


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.160368"], ["updated_at", "2020-04-22 05:37:35.160368"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.163753"], ["updated_at", "2020-04-22 05:37:35.163753"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.163456"], ["updated_at", "2020-04-22 05:37:35.163456"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.166017"], ["updated_at", "2020-04-22 05:37:35.166017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.167172"], ["updated_at", "2020-04-22 05:37:35.167172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.169463"], ["updated_at", "2020-04-22 05:37:35.169463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_67568


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.182413"], ["updated_at", "2020-04-22 05:37:35.182413"]]
 (0.1ms)  begin transaction

CommentTest: test_456627


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.185148"], ["updated_at", "2020-04-22 05:37:35.185148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.185837"], ["updated_at", "2020-04-22 05:37:35.185837"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.187530"], ["updated_at", "2020-04-22 05:37:35.187530"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.188550"], ["updated_at", "2020-04-22 05:37:35.188550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.191294"], ["updated_at", "2020-04-22 05:37:35.191294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_218046


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.201895"], ["updated_at", "2020-04-22 05:37:35.201895"]]
 (0.1ms)  begin transaction

CommentTest: test_596730


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.204968"], ["updated_at", "2020-04-22 05:37:35.204968"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.207547"], ["updated_at", "2020-04-22 05:37:35.207547"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.208156"], ["updated_at", "2020-04-22 05:37:35.208156"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.210352"], ["updated_at", "2020-04-22 05:37:35.210352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.212470"], ["updated_at", "2020-04-22 05:37:35.212470"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_182190


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.216289"], ["updated_at", "2020-04-22 05:37:35.216289"]]
 (0.5ms)  rollback transaction
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.218907"], ["updated_at", "2020-04-22 05:37:35.218907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_180127


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.224722"], ["updated_at", "2020-04-22 05:37:35.224722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.226261"], ["updated_at", "2020-04-22 05:37:35.226261"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.229108"], ["updated_at", "2020-04-22 05:37:35.229108"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.231876"], ["updated_at", "2020-04-22 05:37:35.231876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_709148


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.235321"], ["updated_at", "2020-04-22 05:37:35.235321"]]
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.237894"], ["updated_at", "2020-04-22 05:37:35.237894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_257776


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.240090"], ["updated_at", "2020-04-22 05:37:35.240090"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.240491"], ["updated_at", "2020-04-22 05:37:35.240491"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.245168"], ["updated_at", "2020-04-22 05:37:35.245168"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.246627"], ["updated_at", "2020-04-22 05:37:35.246627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_55348


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.250041"], ["updated_at", "2020-04-22 05:37:35.250041"]]
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.252679"], ["updated_at", "2020-04-22 05:37:35.252679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_898599


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.254508"], ["updated_at", "2020-04-22 05:37:35.254508"]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.254377"], ["updated_at", "2020-04-22 05:37:35.254377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.260889"], ["updated_at", "2020-04-22 05:37:35.260889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.262877"], ["updated_at", "2020-04-22 05:37:35.262877"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_456515


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.267879"], ["updated_at", "2020-04-22 05:37:35.267879"]]
 (0.1ms)  begin transaction

CommentTest: test_897511


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.270358"], ["updated_at", "2020-04-22 05:37:35.270358"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.273722"], ["updated_at", "2020-04-22 05:37:35.273722"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.273011"], ["updated_at", "2020-04-22 05:37:35.273011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.276041"], ["updated_at", "2020-04-22 05:37:35.276041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.277690"], ["updated_at", "2020-04-22 05:37:35.277690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_322125


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.282461"], ["updated_at", "2020-04-22 05:37:35.282461"]]
 (0.1ms)  begin transaction

CommentTest: test_475946


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.285171"], ["updated_at", "2020-04-22 05:37:35.285171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.286229"], ["updated_at", "2020-04-22 05:37:35.286229"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.287344"], ["updated_at", "2020-04-22 05:37:35.287344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.287973"], ["updated_at", "2020-04-22 05:37:35.287973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.294023"], ["updated_at", "2020-04-22 05:37:35.294023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_198392


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.297969"], ["updated_at", "2020-04-22 05:37:35.297969"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.300472"], ["updated_at", "2020-04-22 05:37:35.300472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_814505


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.302544"], ["updated_at", "2020-04-22 05:37:35.302544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.303423"], ["updated_at", "2020-04-22 05:37:35.303423"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.309801"], ["updated_at", "2020-04-22 05:37:35.309801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.313009"], ["updated_at", "2020-04-22 05:37:35.313009"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_741932


 (4.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.325119"], ["updated_at", "2020-04-22 05:37:35.325119"]]
 (0.1ms)  begin transaction

CommentTest: test_477781


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.329290"], ["updated_at", "2020-04-22 05:37:35.329290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.329342"], ["updated_at", "2020-04-22 05:37:35.329342"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.331662"], ["updated_at", "2020-04-22 05:37:35.331662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.333145"], ["updated_at", "2020-04-22 05:37:35.333145"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.335259"], ["updated_at", "2020-04-22 05:37:35.335259"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_97921


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.346204"], ["updated_at", "2020-04-22 05:37:35.346204"]]
 (0.1ms)  begin transaction

CommentTest: test_461641


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.349233"], ["updated_at", "2020-04-22 05:37:35.349233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.352120"], ["updated_at", "2020-04-22 05:37:35.352120"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.352805"], ["updated_at", "2020-04-22 05:37:35.352805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.358304"], ["updated_at", "2020-04-22 05:37:35.358304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.361166"], ["updated_at", "2020-04-22 05:37:35.361166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_963205


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.369526"], ["updated_at", "2020-04-22 05:37:35.369526"]]
 (0.1ms)  begin transaction

CommentTest: test_769266


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.377136"], ["updated_at", "2020-04-22 05:37:35.377136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.377328"], ["updated_at", "2020-04-22 05:37:35.377328"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.379045"], ["updated_at", "2020-04-22 05:37:35.379045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.379736"], ["updated_at", "2020-04-22 05:37:35.379736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.381542"], ["updated_at", "2020-04-22 05:37:35.381542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_403512


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_619923


Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.386947"], ["updated_at", "2020-04-22 05:37:35.386947"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.388943"], ["updated_at", "2020-04-22 05:37:35.388943"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.394747"], ["updated_at", "2020-04-22 05:37:35.394747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.394186"], ["updated_at", "2020-04-22 05:37:35.394186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.397148"], ["updated_at", "2020-04-22 05:37:35.397148"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.397421"], ["updated_at", "2020-04-22 05:37:35.397421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_347950


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.416145"], ["updated_at", "2020-04-22 05:37:35.416145"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.418378"], ["updated_at", "2020-04-22 05:37:35.418378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.420290"], ["updated_at", "2020-04-22 05:37:35.420290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_393371


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.436163"], ["updated_at", "2020-04-22 05:37:35.436163"]]
 (0.1ms)  begin transaction

CommentTest: test_436932


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.439528"], ["updated_at", "2020-04-22 05:37:35.439528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.443480"], ["updated_at", "2020-04-22 05:37:35.443480"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.440191"], ["updated_at", "2020-04-22 05:37:35.440191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.446313"], ["updated_at", "2020-04-22 05:37:35.446313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.448682"], ["updated_at", "2020-04-22 05:37:35.448682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (8.7ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_315423


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_670225


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.463597"], ["updated_at", "2020-04-22 05:37:35.463597"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.466552"], ["updated_at", "2020-04-22 05:37:35.466552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.465816"], ["updated_at", "2020-04-22 05:37:35.465816"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.468838"], ["updated_at", "2020-04-22 05:37:35.468838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.470307"], ["updated_at", "2020-04-22 05:37:35.470307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_142119


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.484403"], ["updated_at", "2020-04-22 05:37:35.484403"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.487027"], ["updated_at", "2020-04-22 05:37:35.487027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.489380"], ["updated_at", "2020-04-22 05:37:35.489380"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.495852"], ["updated_at", "2020-04-22 05:37:35.495852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_829349


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.515510"], ["updated_at", "2020-04-22 05:37:35.515510"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.520878"], ["updated_at", "2020-04-22 05:37:35.520878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.524385"], ["updated_at", "2020-04-22 05:37:35.524385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_241412


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.538815"], ["updated_at", "2020-04-22 05:37:35.538815"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.544060"], ["updated_at", "2020-04-22 05:37:35.544060"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.547319"], ["updated_at", "2020-04-22 05:37:35.547319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_723410


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.550760"], ["updated_at", "2020-04-22 05:37:35.550760"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.553209"], ["updated_at", "2020-04-22 05:37:35.553209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_567555


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.556430"], ["updated_at", "2020-04-22 05:37:35.556430"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.559900"], ["updated_at", "2020-04-22 05:37:35.559900"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.563930"], ["updated_at", "2020-04-22 05:37:35.563930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.566155"], ["updated_at", "2020-04-22 05:37:35.566155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_3289



CommentTest: test_119277


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.576312"], ["updated_at", "2020-04-22 05:37:35.576312"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.576312"], ["updated_at", "2020-04-22 05:37:35.576312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.578877"], ["updated_at", "2020-04-22 05:37:35.578877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.578827"], ["updated_at", "2020-04-22 05:37:35.578827"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.580916"], ["updated_at", "2020-04-22 05:37:35.580916"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.580959"], ["updated_at", "2020-04-22 05:37:35.580959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_462472


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.597791"], ["updated_at", "2020-04-22 05:37:35.597791"]]
 (0.2ms)  begin transaction

CommentTest: test_295472


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.602011"], ["updated_at", "2020-04-22 05:37:35.602011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.602014"], ["updated_at", "2020-04-22 05:37:35.602014"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.604070"], ["updated_at", "2020-04-22 05:37:35.604070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.607460"], ["updated_at", "2020-04-22 05:37:35.607460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.610849"], ["updated_at", "2020-04-22 05:37:35.610849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_521590


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_507851


 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.619839"], ["updated_at", "2020-04-22 05:37:35.619839"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.621966"], ["updated_at", "2020-04-22 05:37:35.621966"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.625540"], ["updated_at", "2020-04-22 05:37:35.625540"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.626030"], ["updated_at", "2020-04-22 05:37:35.626030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.628053"], ["updated_at", "2020-04-22 05:37:35.628053"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.628691"], ["updated_at", "2020-04-22 05:37:35.628691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (3.3ms)  begin transaction

CommentTest: test_917564


 (0.2ms)  begin transaction

CommentTest: test_910472


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.643222"], ["updated_at", "2020-04-22 05:37:35.643222"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.644401"], ["updated_at", "2020-04-22 05:37:35.644401"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.648102"], ["updated_at", "2020-04-22 05:37:35.648102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.650387"], ["updated_at", "2020-04-22 05:37:35.650387"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.645924"], ["updated_at", "2020-04-22 05:37:35.645924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.654923"], ["updated_at", "2020-04-22 05:37:35.654923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_173407


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.665162"], ["updated_at", "2020-04-22 05:37:35.665162"]]
 (0.1ms)  begin transaction

CommentTest: test_495756


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.667964"], ["updated_at", "2020-04-22 05:37:35.667964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.668070"], ["updated_at", "2020-04-22 05:37:35.668070"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.671041"], ["updated_at", "2020-04-22 05:37:35.671041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.670852"], ["updated_at", "2020-04-22 05:37:35.670852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.675871"], ["updated_at", "2020-04-22 05:37:35.675871"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_825294


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_126634


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.684663"], ["updated_at", "2020-04-22 05:37:35.684663"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.686511"], ["updated_at", "2020-04-22 05:37:35.686511"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.688056"], ["updated_at", "2020-04-22 05:37:35.688056"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.690943"], ["updated_at", "2020-04-22 05:37:35.690943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.691138"], ["updated_at", "2020-04-22 05:37:35.691138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.693791"], ["updated_at", "2020-04-22 05:37:35.693791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_292451


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.701781"], ["updated_at", "2020-04-22 05:37:35.701781"]]
 (0.5ms)  begin transaction

CommentTest: test_371428


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.709672"], ["updated_at", "2020-04-22 05:37:35.709672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.715076"], ["updated_at", "2020-04-22 05:37:35.715076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.714043"], ["updated_at", "2020-04-22 05:37:35.714043"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.719061"], ["updated_at", "2020-04-22 05:37:35.719061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.721162"], ["updated_at", "2020-04-22 05:37:35.721162"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_753769


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.727912"], ["updated_at", "2020-04-22 05:37:35.727912"]]
 (0.2ms)  begin transaction

CommentTest: test_71680


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.731848"], ["updated_at", "2020-04-22 05:37:35.731848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.735632"], ["updated_at", "2020-04-22 05:37:35.735632"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.735110"], ["updated_at", "2020-04-22 05:37:35.735110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.738316"], ["updated_at", "2020-04-22 05:37:35.738316"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.742509"], ["updated_at", "2020-04-22 05:37:35.742509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_935311


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.747022"], ["updated_at", "2020-04-22 05:37:35.747022"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.749496"], ["updated_at", "2020-04-22 05:37:35.749496"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_944366


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.751870"], ["updated_at", "2020-04-22 05:37:35.751870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (7.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.753440"], ["updated_at", "2020-04-22 05:37:35.753440"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.764832"], ["updated_at", "2020-04-22 05:37:35.764832"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.767170"], ["updated_at", "2020-04-22 05:37:35.767170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_453831


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.770437"], ["updated_at", "2020-04-22 05:37:35.770437"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.775941"], ["updated_at", "2020-04-22 05:37:35.775941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.779876"], ["updated_at", "2020-04-22 05:37:35.779876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_66613


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.783096"], ["updated_at", "2020-04-22 05:37:35.783096"]]
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.787265"], ["updated_at", "2020-04-22 05:37:35.787265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.789947"], ["updated_at", "2020-04-22 05:37:35.789947"]]
 (0.1ms)  begin transaction

CommentTest: test_869210


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.794291"], ["updated_at", "2020-04-22 05:37:35.794291"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.799158"], ["updated_at", "2020-04-22 05:37:35.799158"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_581416


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.801521"], ["updated_at", "2020-04-22 05:37:35.801521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.802727"], ["updated_at", "2020-04-22 05:37:35.802727"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.806095"], ["updated_at", "2020-04-22 05:37:35.806095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.813624"], ["updated_at", "2020-04-22 05:37:35.813624"]]
 (0.1ms)  begin transaction

CommentTest: test_645590


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.816137"], ["updated_at", "2020-04-22 05:37:35.816137"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.819260"], ["updated_at", "2020-04-22 05:37:35.819260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.821793"], ["updated_at", "2020-04-22 05:37:35.821793"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_371031


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.830299"], ["updated_at", "2020-04-22 05:37:35.830299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_215238


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.833264"], ["updated_at", "2020-04-22 05:37:35.833264"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.836421"], ["updated_at", "2020-04-22 05:37:35.836421"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.836112"], ["updated_at", "2020-04-22 05:37:35.836112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.846188"], ["updated_at", "2020-04-22 05:37:35.846188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.849468"], ["updated_at", "2020-04-22 05:37:35.849468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_41021


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.853538"], ["updated_at", "2020-04-22 05:37:35.853538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.861731"], ["updated_at", "2020-04-22 05:37:35.861731"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_191394


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.864312"], ["updated_at", "2020-04-22 05:37:35.864312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.864643"], ["updated_at", "2020-04-22 05:37:35.864643"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.867596"], ["updated_at", "2020-04-22 05:37:35.867596"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.869870"], ["updated_at", "2020-04-22 05:37:35.869870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_911718


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.873723"], ["updated_at", "2020-04-22 05:37:35.873723"]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.879277"], ["updated_at", "2020-04-22 05:37:35.879277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_723878


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.882085"], ["updated_at", "2020-04-22 05:37:35.882085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.882690"], ["updated_at", "2020-04-22 05:37:35.882690"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.885252"], ["updated_at", "2020-04-22 05:37:35.885252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.887284"], ["updated_at", "2020-04-22 05:37:35.887284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_96020


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.900397"], ["updated_at", "2020-04-22 05:37:35.900397"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.903335"], ["updated_at", "2020-04-22 05:37:35.903335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_278156


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.906957"], ["updated_at", "2020-04-22 05:37:35.906957"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.907576"], ["updated_at", "2020-04-22 05:37:35.907576"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.915432"], ["updated_at", "2020-04-22 05:37:35.915432"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.918129"], ["updated_at", "2020-04-22 05:37:35.918129"]]
 (1.2ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_644982


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.931514"], ["updated_at", "2020-04-22 05:37:35.931514"]]
 (0.1ms)  begin transaction

CommentTest: test_569262


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.935725"], ["updated_at", "2020-04-22 05:37:35.935725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.935833"], ["updated_at", "2020-04-22 05:37:35.935833"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.945103"], ["updated_at", "2020-04-22 05:37:35.945103"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.938620"], ["updated_at", "2020-04-22 05:37:35.938620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.948870"], ["updated_at", "2020-04-22 05:37:35.948870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_38339


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.972801"], ["updated_at", "2020-04-22 05:37:35.972801"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:35.983447"], ["updated_at", "2020-04-22 05:37:35.983447"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:35.986062"], ["updated_at", "2020-04-22 05:37:35.986062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_365941


 (0.1ms)  begin transaction

CommentTest: test_275237


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:35.999783"], ["updated_at", "2020-04-22 05:37:35.999783"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.000751"], ["updated_at", "2020-04-22 05:37:36.000751"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.002577"], ["updated_at", "2020-04-22 05:37:36.002577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.003630"], ["updated_at", "2020-04-22 05:37:36.003630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (16.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.004453"], ["updated_at", "2020-04-22 05:37:36.004453"]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.006554"], ["updated_at", "2020-04-22 05:37:36.006554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_690444


 (0.1ms)  begin transaction

CommentTest: test_783249


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.038165"], ["updated_at", "2020-04-22 05:37:36.038165"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.038715"], ["updated_at", "2020-04-22 05:37:36.038715"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.045073"], ["updated_at", "2020-04-22 05:37:36.045073"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.046109"], ["updated_at", "2020-04-22 05:37:36.046109"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.047573"], ["updated_at", "2020-04-22 05:37:36.047573"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.048144"], ["updated_at", "2020-04-22 05:37:36.048144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_228980


 (0.1ms)  begin transaction

CommentTest: test_71619


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.061729"], ["updated_at", "2020-04-22 05:37:36.061729"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.062455"], ["updated_at", "2020-04-22 05:37:36.062455"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.064723"], ["updated_at", "2020-04-22 05:37:36.064723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.065266"], ["updated_at", "2020-04-22 05:37:36.065266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.067080"], ["updated_at", "2020-04-22 05:37:36.067080"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.067231"], ["updated_at", "2020-04-22 05:37:36.067231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_693050


 (0.1ms)  begin transaction

CommentTest: test_341452


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.079181"], ["updated_at", "2020-04-22 05:37:36.079181"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.079295"], ["updated_at", "2020-04-22 05:37:36.079295"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.082092"], ["updated_at", "2020-04-22 05:37:36.082092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.081956"], ["updated_at", "2020-04-22 05:37:36.081956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.083825"], ["updated_at", "2020-04-22 05:37:36.083825"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.084045"], ["updated_at", "2020-04-22 05:37:36.084045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_545915


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_727718


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.099947"], ["updated_at", "2020-04-22 05:37:36.099947"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.102962"], ["updated_at", "2020-04-22 05:37:36.102962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.102166"], ["updated_at", "2020-04-22 05:37:36.102166"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.105217"], ["updated_at", "2020-04-22 05:37:36.105217"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (4.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.105584"], ["updated_at", "2020-04-22 05:37:36.105584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.112485"], ["updated_at", "2020-04-22 05:37:36.112485"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_739873


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.118979"], ["updated_at", "2020-04-22 05:37:36.118979"]]
 (0.1ms)  begin transaction

CommentTest: test_185559


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.122748"], ["updated_at", "2020-04-22 05:37:36.122748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.126611"], ["updated_at", "2020-04-22 05:37:36.126611"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.124773"], ["updated_at", "2020-04-22 05:37:36.124773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.130414"], ["updated_at", "2020-04-22 05:37:36.130414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.132580"], ["updated_at", "2020-04-22 05:37:36.132580"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_740908


 (7.5ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.138273"], ["updated_at", "2020-04-22 05:37:36.138273"]]
 (12.6ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.149148"], ["updated_at", "2020-04-22 05:37:36.149148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.151401"], ["updated_at", "2020-04-22 05:37:36.151401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_905695


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.157521"], ["updated_at", "2020-04-22 05:37:36.157521"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.166305"], ["updated_at", "2020-04-22 05:37:36.166305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.169027"], ["updated_at", "2020-04-22 05:37:36.169027"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_459500


 (0.2ms)  begin transaction

CommentTest: test_225801


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.196713"], ["updated_at", "2020-04-22 05:37:36.196713"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.196528"], ["updated_at", "2020-04-22 05:37:36.196528"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.199810"], ["updated_at", "2020-04-22 05:37:36.199810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.201392"], ["updated_at", "2020-04-22 05:37:36.201392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.203080"], ["updated_at", "2020-04-22 05:37:36.203080"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.206587"], ["updated_at", "2020-04-22 05:37:36.206587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_140871


 (0.3ms)  begin transaction

CommentTest: test_724680


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.230653"], ["updated_at", "2020-04-22 05:37:36.230653"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.232351"], ["updated_at", "2020-04-22 05:37:36.232351"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.233708"], ["updated_at", "2020-04-22 05:37:36.233708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.235763"], ["updated_at", "2020-04-22 05:37:36.235763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.236980"], ["updated_at", "2020-04-22 05:37:36.236980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.249969"], ["updated_at", "2020-04-22 05:37:36.249969"]]
 (0.2ms)  begin transaction

CommentTest: test_145946


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.254246"], ["updated_at", "2020-04-22 05:37:36.254246"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.263417"], ["updated_at", "2020-04-22 05:37:36.263417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.267025"], ["updated_at", "2020-04-22 05:37:36.267025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_967356


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (12.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_891639


 (0.1ms)  SAVEPOINT active_record_1
Course Create (18.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.280619"], ["updated_at", "2020-04-22 05:37:36.280619"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.298940"], ["updated_at", "2020-04-22 05:37:36.298940"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.300969"], ["updated_at", "2020-04-22 05:37:36.300969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.301563"], ["updated_at", "2020-04-22 05:37:36.301563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.303507"], ["updated_at", "2020-04-22 05:37:36.303507"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.303559"], ["updated_at", "2020-04-22 05:37:36.303559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (6.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_164007


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.322832"], ["updated_at", "2020-04-22 05:37:36.322832"]]
 (0.1ms)  begin transaction

CommentTest: test_890778


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.329546"], ["updated_at", "2020-04-22 05:37:36.329546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.330915"], ["updated_at", "2020-04-22 05:37:36.330915"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.332756"], ["updated_at", "2020-04-22 05:37:36.332756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.334065"], ["updated_at", "2020-04-22 05:37:36.334065"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.335963"], ["updated_at", "2020-04-22 05:37:36.335963"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_13023


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.345398"], ["updated_at", "2020-04-22 05:37:36.345398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.349657"], ["updated_at", "2020-04-22 05:37:36.349657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_887913


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.352089"], ["updated_at", "2020-04-22 05:37:36.352089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.353113"], ["updated_at", "2020-04-22 05:37:36.353113"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_805279


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.366222"], ["updated_at", "2020-04-22 05:37:36.366222"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.364173"], ["updated_at", "2020-04-22 05:37:36.364173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.368614"], ["updated_at", "2020-04-22 05:37:36.368614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.370449"], ["updated_at", "2020-04-22 05:37:36.370449"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.370049"], ["updated_at", "2020-04-22 05:37:36.370049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_335183


 (0.1ms)  begin transaction

CommentTest: test_880735


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.384148"], ["updated_at", "2020-04-22 05:37:36.384148"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.384590"], ["updated_at", "2020-04-22 05:37:36.384590"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.386754"], ["updated_at", "2020-04-22 05:37:36.386754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.387340"], ["updated_at", "2020-04-22 05:37:36.387340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.388858"], ["updated_at", "2020-04-22 05:37:36.388858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.389871"], ["updated_at", "2020-04-22 05:37:36.389871"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_67801


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.402484"], ["updated_at", "2020-04-22 05:37:36.402484"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.406183"], ["updated_at", "2020-04-22 05:37:36.406183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_660930


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.411749"], ["updated_at", "2020-04-22 05:37:36.411749"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.411730"], ["updated_at", "2020-04-22 05:37:36.411730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.414036"], ["updated_at", "2020-04-22 05:37:36.414036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.418911"], ["updated_at", "2020-04-22 05:37:36.418911"]]
 (0.1ms)  begin transaction

CommentTest: test_523967


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.421105"], ["updated_at", "2020-04-22 05:37:36.421105"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.430397"], ["updated_at", "2020-04-22 05:37:36.430397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.432840"], ["updated_at", "2020-04-22 05:37:36.432840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_41208


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_34167


 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.446604"], ["updated_at", "2020-04-22 05:37:36.446604"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.451287"], ["updated_at", "2020-04-22 05:37:36.451287"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.453916"], ["updated_at", "2020-04-22 05:37:36.453916"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.454069"], ["updated_at", "2020-04-22 05:37:36.454069"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.456280"], ["updated_at", "2020-04-22 05:37:36.456280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.458619"], ["updated_at", "2020-04-22 05:37:36.458619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_159325


 (0.1ms)  begin transaction

CommentTest: test_389067


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.472297"], ["updated_at", "2020-04-22 05:37:36.472297"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.473355"], ["updated_at", "2020-04-22 05:37:36.473355"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.478982"], ["updated_at", "2020-04-22 05:37:36.478982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.482808"], ["updated_at", "2020-04-22 05:37:36.482808"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.482844"], ["updated_at", "2020-04-22 05:37:36.482844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.485414"], ["updated_at", "2020-04-22 05:37:36.485414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_337848


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.496555"], ["updated_at", "2020-04-22 05:37:36.496555"]]
 (0.1ms)  begin transaction

CommentTest: test_943163


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.499581"], ["updated_at", "2020-04-22 05:37:36.499581"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.502012"], ["updated_at", "2020-04-22 05:37:36.502012"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.501187"], ["updated_at", "2020-04-22 05:37:36.501187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.504481"], ["updated_at", "2020-04-22 05:37:36.504481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (8.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.507258"], ["updated_at", "2020-04-22 05:37:36.507258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_961016


 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.523013"], ["updated_at", "2020-04-22 05:37:36.523013"]]
 (0.1ms)  begin transaction

CommentTest: test_62595


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.530070"], ["updated_at", "2020-04-22 05:37:36.530070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.529286"], ["updated_at", "2020-04-22 05:37:36.529286"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.532587"], ["updated_at", "2020-04-22 05:37:36.532587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.532445"], ["updated_at", "2020-04-22 05:37:36.532445"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.534399"], ["updated_at", "2020-04-22 05:37:36.534399"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_337620

 (0.1ms)  begin transaction

CommentTest: test_737328



 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.547870"], ["updated_at", "2020-04-22 05:37:36.547870"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.547990"], ["updated_at", "2020-04-22 05:37:36.547990"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.550993"], ["updated_at", "2020-04-22 05:37:36.550993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.550633"], ["updated_at", "2020-04-22 05:37:36.550633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.553022"], ["updated_at", "2020-04-22 05:37:36.553022"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.553315"], ["updated_at", "2020-04-22 05:37:36.553315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_460487



CommentTest: test_625926


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.570824"], ["updated_at", "2020-04-22 05:37:36.570824"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.570643"], ["updated_at", "2020-04-22 05:37:36.570643"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.574174"], ["updated_at", "2020-04-22 05:37:36.574174"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.574609"], ["updated_at", "2020-04-22 05:37:36.574609"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.579425"], ["updated_at", "2020-04-22 05:37:36.579425"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.579356"], ["updated_at", "2020-04-22 05:37:36.579356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_356611

 (0.1ms)  begin transaction


CommentTest: test_282834


 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Course Create (5.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.589775"], ["updated_at", "2020-04-22 05:37:36.589775"]]
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.589039"], ["updated_at", "2020-04-22 05:37:36.589039"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.598104"], ["updated_at", "2020-04-22 05:37:36.598104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.599490"], ["updated_at", "2020-04-22 05:37:36.599490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.600260"], ["updated_at", "2020-04-22 05:37:36.600260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.601527"], ["updated_at", "2020-04-22 05:37:36.601527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_300662


 (0.1ms)  begin transaction

CommentTest: test_150201


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.618926"], ["updated_at", "2020-04-22 05:37:36.618926"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.620402"], ["updated_at", "2020-04-22 05:37:36.620402"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.623551"], ["updated_at", "2020-04-22 05:37:36.623551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.627181"], ["updated_at", "2020-04-22 05:37:36.627181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.630906"], ["updated_at", "2020-04-22 05:37:36.630906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.629967"], ["updated_at", "2020-04-22 05:37:36.629967"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_224725


 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.670212"], ["updated_at", "2020-04-22 05:37:36.670212"]]
 (0.1ms)  begin transaction

CommentTest: test_799820


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.683790"], ["updated_at", "2020-04-22 05:37:36.683790"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.684418"], ["updated_at", "2020-04-22 05:37:36.684418"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.686252"], ["updated_at", "2020-04-22 05:37:36.686252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.687025"], ["updated_at", "2020-04-22 05:37:36.687025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.689265"], ["updated_at", "2020-04-22 05:37:36.689265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_198272


 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.701218"], ["updated_at", "2020-04-22 05:37:36.701218"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.704479"], ["updated_at", "2020-04-22 05:37:36.704479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_756182


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.708041"], ["updated_at", "2020-04-22 05:37:36.708041"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.713185"], ["updated_at", "2020-04-22 05:37:36.713185"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.717397"], ["updated_at", "2020-04-22 05:37:36.717397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_683412

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.719846"], ["updated_at", "2020-04-22 05:37:36.719846"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.722412"], ["updated_at", "2020-04-22 05:37:36.722412"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.728112"], ["updated_at", "2020-04-22 05:37:36.728112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.731670"], ["updated_at", "2020-04-22 05:37:36.731670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_262420


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.737290"], ["updated_at", "2020-04-22 05:37:36.737290"]]
 (1.8ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.740958"], ["updated_at", "2020-04-22 05:37:36.740958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_705031


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.746607"], ["updated_at", "2020-04-22 05:37:36.746607"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.746784"], ["updated_at", "2020-04-22 05:37:36.746784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.749178"], ["updated_at", "2020-04-22 05:37:36.749178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.751251"], ["updated_at", "2020-04-22 05:37:36.751251"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_696913


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.758535"], ["updated_at", "2020-04-22 05:37:36.758535"]]
 (0.1ms)  begin transaction

CommentTest: test_285911


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.763579"], ["updated_at", "2020-04-22 05:37:36.763579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.766639"], ["updated_at", "2020-04-22 05:37:36.766639"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.766036"], ["updated_at", "2020-04-22 05:37:36.766036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.769667"], ["updated_at", "2020-04-22 05:37:36.769667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.773529"], ["updated_at", "2020-04-22 05:37:36.773529"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_787924


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.779508"], ["updated_at", "2020-04-22 05:37:36.779508"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_913390


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.782179"], ["updated_at", "2020-04-22 05:37:36.782179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.783480"], ["updated_at", "2020-04-22 05:37:36.783480"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.784187"], ["updated_at", "2020-04-22 05:37:36.784187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.785807"], ["updated_at", "2020-04-22 05:37:36.785807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.787730"], ["updated_at", "2020-04-22 05:37:36.787730"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_934046


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.793175"], ["updated_at", "2020-04-22 05:37:36.793175"]]
 (0.1ms)  begin transaction

CommentTest: test_462988


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.796107"], ["updated_at", "2020-04-22 05:37:36.796107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.796663"], ["updated_at", "2020-04-22 05:37:36.796663"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.798120"], ["updated_at", "2020-04-22 05:37:36.798120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.799603"], ["updated_at", "2020-04-22 05:37:36.799603"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.802254"], ["updated_at", "2020-04-22 05:37:36.802254"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_150216


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.808471"], ["updated_at", "2020-04-22 05:37:36.808471"]]
 (0.1ms)  begin transaction

CommentTest: test_563855


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.811695"], ["updated_at", "2020-04-22 05:37:36.811695"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.812082"], ["updated_at", "2020-04-22 05:37:36.812082"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.813786"], ["updated_at", "2020-04-22 05:37:36.813786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.815143"], ["updated_at", "2020-04-22 05:37:36.815143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.817300"], ["updated_at", "2020-04-22 05:37:36.817300"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_608162


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.823327"], ["updated_at", "2020-04-22 05:37:36.823327"]]
 (0.1ms)  begin transaction

CommentTest: test_895237


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.827421"], ["updated_at", "2020-04-22 05:37:36.827421"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.827415"], ["updated_at", "2020-04-22 05:37:36.827415"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.829314"], ["updated_at", "2020-04-22 05:37:36.829314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.829877"], ["updated_at", "2020-04-22 05:37:36.829877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.831672"], ["updated_at", "2020-04-22 05:37:36.831672"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_597326


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.837425"], ["updated_at", "2020-04-22 05:37:36.837425"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.842758"], ["updated_at", "2020-04-22 05:37:36.842758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_939760


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.846763"], ["updated_at", "2020-04-22 05:37:36.846763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.847799"], ["updated_at", "2020-04-22 05:37:36.847799"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.851562"], ["updated_at", "2020-04-22 05:37:36.851562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.853599"], ["updated_at", "2020-04-22 05:37:36.853599"]]
 (0.1ms)  begin transaction

CommentTest: test_888718


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.856953"], ["updated_at", "2020-04-22 05:37:36.856953"]]
 (3.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.860963"], ["updated_at", "2020-04-22 05:37:36.860963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.863504"], ["updated_at", "2020-04-22 05:37:36.863504"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_453495


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_492504


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.871671"], ["updated_at", "2020-04-22 05:37:36.871671"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.874492"], ["updated_at", "2020-04-22 05:37:36.874492"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.876959"], ["updated_at", "2020-04-22 05:37:36.876959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.877155"], ["updated_at", "2020-04-22 05:37:36.877155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.879478"], ["updated_at", "2020-04-22 05:37:36.879478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.880520"], ["updated_at", "2020-04-22 05:37:36.880520"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_30147


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.889793"], ["updated_at", "2020-04-22 05:37:36.889793"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.893272"], ["updated_at", "2020-04-22 05:37:36.893272"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.3ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.896236"], ["updated_at", "2020-04-22 05:37:36.896236"]]

CommentTest: test_501428


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.898318"], ["updated_at", "2020-04-22 05:37:36.898318"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.900982"], ["updated_at", "2020-04-22 05:37:36.900982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.903119"], ["updated_at", "2020-04-22 05:37:36.903119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_47916


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.907181"], ["updated_at", "2020-04-22 05:37:36.907181"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.910946"], ["updated_at", "2020-04-22 05:37:36.910946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.913336"], ["updated_at", "2020-04-22 05:37:36.913336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_163941


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_876734


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.923177"], ["updated_at", "2020-04-22 05:37:36.923177"]]
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.920364"], ["updated_at", "2020-04-22 05:37:36.920364"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.930010"], ["updated_at", "2020-04-22 05:37:36.930010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.930438"], ["updated_at", "2020-04-22 05:37:36.930438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.932275"], ["updated_at", "2020-04-22 05:37:36.932275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.932829"], ["updated_at", "2020-04-22 05:37:36.932829"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_680382


 (0.7ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.947585"], ["updated_at", "2020-04-22 05:37:36.947585"]]

CommentTest: test_79706


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.950951"], ["updated_at", "2020-04-22 05:37:36.950951"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.950656"], ["updated_at", "2020-04-22 05:37:36.950656"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.953113"], ["updated_at", "2020-04-22 05:37:36.953113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.953444"], ["updated_at", "2020-04-22 05:37:36.953444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.961476"], ["updated_at", "2020-04-22 05:37:36.961476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_759083


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.965037"], ["updated_at", "2020-04-22 05:37:36.965037"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.968805"], ["updated_at", "2020-04-22 05:37:36.968805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_606139


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.971096"], ["updated_at", "2020-04-22 05:37:36.971096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.973337"], ["updated_at", "2020-04-22 05:37:36.973337"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.976169"], ["updated_at", "2020-04-22 05:37:36.976169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.979831"], ["updated_at", "2020-04-22 05:37:36.979831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_456244


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.982766"], ["updated_at", "2020-04-22 05:37:36.982766"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.985777"], ["updated_at", "2020-04-22 05:37:36.985777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_12311


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.987901"], ["updated_at", "2020-04-22 05:37:36.987901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.989408"], ["updated_at", "2020-04-22 05:37:36.989408"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:36.993651"], ["updated_at", "2020-04-22 05:37:36.993651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:36.995806"], ["updated_at", "2020-04-22 05:37:36.995806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_729510


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:36.998426"], ["updated_at", "2020-04-22 05:37:36.998426"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.000945"], ["updated_at", "2020-04-22 05:37:37.000945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_944768


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.003090"], ["updated_at", "2020-04-22 05:37:37.003090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.004730"], ["updated_at", "2020-04-22 05:37:37.004730"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.010536"], ["updated_at", "2020-04-22 05:37:37.010536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_457085


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.015324"], ["updated_at", "2020-04-22 05:37:37.015324"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.015240"], ["updated_at", "2020-04-22 05:37:37.015240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.018338"], ["updated_at", "2020-04-22 05:37:37.018338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.020166"], ["updated_at", "2020-04-22 05:37:37.020166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_62269


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.025204"], ["updated_at", "2020-04-22 05:37:37.025204"]]
 (0.1ms)  begin transaction

CommentTest: test_65007


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.029045"], ["updated_at", "2020-04-22 05:37:37.029045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.032639"], ["updated_at", "2020-04-22 05:37:37.032639"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.032180"], ["updated_at", "2020-04-22 05:37:37.032180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.035502"], ["updated_at", "2020-04-22 05:37:37.035502"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.038084"], ["updated_at", "2020-04-22 05:37:37.038084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_697541


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.043191"], ["updated_at", "2020-04-22 05:37:37.043191"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.045675"], ["updated_at", "2020-04-22 05:37:37.045675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.047900"], ["updated_at", "2020-04-22 05:37:37.047900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_353643


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.050329"], ["updated_at", "2020-04-22 05:37:37.050329"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.052919"], ["updated_at", "2020-04-22 05:37:37.052919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_286383


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.055117"], ["updated_at", "2020-04-22 05:37:37.055117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.058079"], ["updated_at", "2020-04-22 05:37:37.058079"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.062332"], ["updated_at", "2020-04-22 05:37:37.062332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_569331


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.064721"], ["updated_at", "2020-04-22 05:37:37.064721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.066307"], ["updated_at", "2020-04-22 05:37:37.066307"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.068764"], ["updated_at", "2020-04-22 05:37:37.068764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.071135"], ["updated_at", "2020-04-22 05:37:37.071135"]]

CommentTest: test_558359


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.074109"], ["updated_at", "2020-04-22 05:37:37.074109"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.079130"], ["updated_at", "2020-04-22 05:37:37.079130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_320745


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.081470"], ["updated_at", "2020-04-22 05:37:37.081470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.082435"], ["updated_at", "2020-04-22 05:37:37.082435"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.085144"], ["updated_at", "2020-04-22 05:37:37.085144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.087244"], ["updated_at", "2020-04-22 05:37:37.087244"]]
 (0.1ms)  begin transaction

CommentTest: test_798365


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.095603"], ["updated_at", "2020-04-22 05:37:37.095603"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.099414"], ["updated_at", "2020-04-22 05:37:37.099414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_391244


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.101503"], ["updated_at", "2020-04-22 05:37:37.101503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.103312"], ["updated_at", "2020-04-22 05:37:37.103312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.106427"], ["updated_at", "2020-04-22 05:37:37.106427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.108847"], ["updated_at", "2020-04-22 05:37:37.108847"]]
 (1.5ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (3.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_295978


 (2.6ms)  begin transaction

CommentTest: test_321117


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.123010"], ["updated_at", "2020-04-22 05:37:37.123010"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.125638"], ["updated_at", "2020-04-22 05:37:37.125638"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.127339"], ["updated_at", "2020-04-22 05:37:37.127339"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.128564"], ["updated_at", "2020-04-22 05:37:37.128564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.129461"], ["updated_at", "2020-04-22 05:37:37.129461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.131180"], ["updated_at", "2020-04-22 05:37:37.131180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_996557


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_926851


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.141923"], ["updated_at", "2020-04-22 05:37:37.141923"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.146882"], ["updated_at", "2020-04-22 05:37:37.146882"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.147898"], ["updated_at", "2020-04-22 05:37:37.147898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.149870"], ["updated_at", "2020-04-22 05:37:37.149870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.150137"], ["updated_at", "2020-04-22 05:37:37.150137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.151858"], ["updated_at", "2020-04-22 05:37:37.151858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_518315


 (0.3ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_187875


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.162556"], ["updated_at", "2020-04-22 05:37:37.162556"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.167471"], ["updated_at", "2020-04-22 05:37:37.167471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.169778"], ["updated_at", "2020-04-22 05:37:37.169778"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.169561"], ["updated_at", "2020-04-22 05:37:37.169561"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.178905"], ["updated_at", "2020-04-22 05:37:37.178905"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.181324"], ["updated_at", "2020-04-22 05:37:37.181324"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_586495


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.185829"], ["updated_at", "2020-04-22 05:37:37.185829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_527529


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.189677"], ["updated_at", "2020-04-22 05:37:37.189677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.191678"], ["updated_at", "2020-04-22 05:37:37.191678"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.191024"], ["updated_at", "2020-04-22 05:37:37.191024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.195970"], ["updated_at", "2020-04-22 05:37:37.195970"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.198413"], ["updated_at", "2020-04-22 05:37:37.198413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_622510


 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.206412"], ["updated_at", "2020-04-22 05:37:37.206412"]]
 (2.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.211759"], ["updated_at", "2020-04-22 05:37:37.211759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_866425


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.214273"], ["updated_at", "2020-04-22 05:37:37.214273"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.215255"], ["updated_at", "2020-04-22 05:37:37.215255"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.217550"], ["updated_at", "2020-04-22 05:37:37.217550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.219583"], ["updated_at", "2020-04-22 05:37:37.219583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_573136


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.230158"], ["updated_at", "2020-04-22 05:37:37.230158"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.233744"], ["updated_at", "2020-04-22 05:37:37.233744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.236066"], ["updated_at", "2020-04-22 05:37:37.236066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_715340


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.245215"], ["updated_at", "2020-04-22 05:37:37.245215"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.248148"], ["updated_at", "2020-04-22 05:37:37.248148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_495402


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.250624"], ["updated_at", "2020-04-22 05:37:37.250624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.251927"], ["updated_at", "2020-04-22 05:37:37.251927"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.254830"], ["updated_at", "2020-04-22 05:37:37.254830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_932846

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.261303"], ["updated_at", "2020-04-22 05:37:37.261303"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.263309"], ["updated_at", "2020-04-22 05:37:37.263309"]]
 (0.9ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.265909"], ["updated_at", "2020-04-22 05:37:37.265909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.268385"], ["updated_at", "2020-04-22 05:37:37.268385"]]
 (0.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_138542


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.273593"], ["updated_at", "2020-04-22 05:37:37.273593"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_697372


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.277445"], ["updated_at", "2020-04-22 05:37:37.277445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.278397"], ["updated_at", "2020-04-22 05:37:37.278397"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.279941"], ["updated_at", "2020-04-22 05:37:37.279941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.281116"], ["updated_at", "2020-04-22 05:37:37.281116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.283627"], ["updated_at", "2020-04-22 05:37:37.283627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_598936 CommentTest: test_545644



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.292858"], ["updated_at", "2020-04-22 05:37:37.292858"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.293823"], ["updated_at", "2020-04-22 05:37:37.293823"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.295898"], ["updated_at", "2020-04-22 05:37:37.295898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.296397"], ["updated_at", "2020-04-22 05:37:37.296397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.298081"], ["updated_at", "2020-04-22 05:37:37.298081"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.299044"], ["updated_at", "2020-04-22 05:37:37.299044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_632153


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.308062"], ["updated_at", "2020-04-22 05:37:37.308062"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.312476"], ["updated_at", "2020-04-22 05:37:37.312476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.314303"], ["updated_at", "2020-04-22 05:37:37.314303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_12536


 (2.8ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.324552"], ["updated_at", "2020-04-22 05:37:37.324552"]]
Comment Create (13.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.331052"], ["updated_at", "2020-04-22 05:37:37.331052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.333861"], ["updated_at", "2020-04-22 05:37:37.333861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_658031


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (2.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.338361"], ["updated_at", "2020-04-22 05:37:37.338361"]]
 (0.1ms)  begin transaction

CommentTest: test_113170


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.348254"], ["updated_at", "2020-04-22 05:37:37.348254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.348273"], ["updated_at", "2020-04-22 05:37:37.348273"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.350573"], ["updated_at", "2020-04-22 05:37:37.350573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.351928"], ["updated_at", "2020-04-22 05:37:37.351928"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.354940"], ["updated_at", "2020-04-22 05:37:37.354940"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_309982

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.363978"], ["updated_at", "2020-04-22 05:37:37.363978"]]
 (0.1ms)  begin transaction

CommentTest: test_535216


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.367635"], ["updated_at", "2020-04-22 05:37:37.367635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.367924"], ["updated_at", "2020-04-22 05:37:37.367924"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.370138"], ["updated_at", "2020-04-22 05:37:37.370138"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.370910"], ["updated_at", "2020-04-22 05:37:37.370910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.372700"], ["updated_at", "2020-04-22 05:37:37.372700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_612674


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.386042"], ["updated_at", "2020-04-22 05:37:37.386042"]]
 (6.5ms)  begin transaction

CommentTest: test_483445


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.388985"], ["updated_at", "2020-04-22 05:37:37.388985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.391035"], ["updated_at", "2020-04-22 05:37:37.391035"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.389739"], ["updated_at", "2020-04-22 05:37:37.389739"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.395097"], ["updated_at", "2020-04-22 05:37:37.395097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_862398


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.398361"], ["updated_at", "2020-04-22 05:37:37.398361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.400287"], ["updated_at", "2020-04-22 05:37:37.400287"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.403401"], ["updated_at", "2020-04-22 05:37:37.403401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.406013"], ["updated_at", "2020-04-22 05:37:37.406013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  begin transaction

CommentTest: test_511691


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.414126"], ["updated_at", "2020-04-22 05:37:37.414126"]]
 (0.1ms)  begin transaction

CommentTest: test_694000


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.419588"], ["updated_at", "2020-04-22 05:37:37.419588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.421534"], ["updated_at", "2020-04-22 05:37:37.421534"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (8.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.420698"], ["updated_at", "2020-04-22 05:37:37.420698"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.431864"], ["updated_at", "2020-04-22 05:37:37.431864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.434390"], ["updated_at", "2020-04-22 05:37:37.434390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_284476

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.438127"], ["updated_at", "2020-04-22 05:37:37.438127"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.443848"], ["updated_at", "2020-04-22 05:37:37.443848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_799276


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.446535"], ["updated_at", "2020-04-22 05:37:37.446535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.447676"], ["updated_at", "2020-04-22 05:37:37.447676"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.451976"], ["updated_at", "2020-04-22 05:37:37.451976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.453715"], ["updated_at", "2020-04-22 05:37:37.453715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_570454

Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.459228"], ["updated_at", "2020-04-22 05:37:37.459228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.464138"], ["updated_at", "2020-04-22 05:37:37.464138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.467200"], ["updated_at", "2020-04-22 05:37:37.467200"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_428888


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.470270"], ["updated_at", "2020-04-22 05:37:37.470270"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_932089


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.478688"], ["updated_at", "2020-04-22 05:37:37.478688"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.481690"], ["updated_at", "2020-04-22 05:37:37.481690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.485099"], ["updated_at", "2020-04-22 05:37:37.485099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.475156"], ["updated_at", "2020-04-22 05:37:37.475156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.488664"], ["updated_at", "2020-04-22 05:37:37.488664"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_886107


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.498068"], ["updated_at", "2020-04-22 05:37:37.498068"]]
 (0.1ms)  begin transaction

CommentTest: test_604153


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.501132"], ["updated_at", "2020-04-22 05:37:37.501132"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.501340"], ["updated_at", "2020-04-22 05:37:37.501340"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.504217"], ["updated_at", "2020-04-22 05:37:37.504217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.508873"], ["updated_at", "2020-04-22 05:37:37.508873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.504084"], ["updated_at", "2020-04-22 05:37:37.504084"]]
 (3.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_5136


 (2.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.527101"], ["updated_at", "2020-04-22 05:37:37.527101"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.530859"], ["updated_at", "2020-04-22 05:37:37.530859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.533328"], ["updated_at", "2020-04-22 05:37:37.533328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_938335


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.551228"], ["updated_at", "2020-04-22 05:37:37.551228"]]
 (0.1ms)  begin transaction

CommentTest: test_332149


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.554188"], ["updated_at", "2020-04-22 05:37:37.554188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.554987"], ["updated_at", "2020-04-22 05:37:37.554987"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.557112"], ["updated_at", "2020-04-22 05:37:37.557112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.563632"], ["updated_at", "2020-04-22 05:37:37.563632"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.566743"], ["updated_at", "2020-04-22 05:37:37.566743"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (15.0ms)  rollback transaction
 (13.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_560208


 (0.1ms)  begin transaction

CommentTest: test_32958


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.602673"], ["updated_at", "2020-04-22 05:37:37.602673"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.603056"], ["updated_at", "2020-04-22 05:37:37.603056"]]
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.606758"], ["updated_at", "2020-04-22 05:37:37.606758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.607291"], ["updated_at", "2020-04-22 05:37:37.607291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.613823"], ["updated_at", "2020-04-22 05:37:37.613823"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.613537"], ["updated_at", "2020-04-22 05:37:37.613537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_937215


 (0.1ms)  begin transaction

CommentTest: test_289408


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.625491"], ["updated_at", "2020-04-22 05:37:37.625491"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.628128"], ["updated_at", "2020-04-22 05:37:37.628128"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.631482"], ["updated_at", "2020-04-22 05:37:37.631482"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.633939"], ["updated_at", "2020-04-22 05:37:37.633939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.634047"], ["updated_at", "2020-04-22 05:37:37.634047"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.636485"], ["updated_at", "2020-04-22 05:37:37.636485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_782725


 (2.8ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.648665"], ["updated_at", "2020-04-22 05:37:37.648665"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.654071"], ["updated_at", "2020-04-22 05:37:37.654071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_727081


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.658174"], ["updated_at", "2020-04-22 05:37:37.658174"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.664085"], ["updated_at", "2020-04-22 05:37:37.664085"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.667501"], ["updated_at", "2020-04-22 05:37:37.667501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.669900"], ["updated_at", "2020-04-22 05:37:37.669900"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_686267


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.683359"], ["updated_at", "2020-04-22 05:37:37.683359"]]
 (0.1ms)  begin transaction

CommentTest: test_801248


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.686170"], ["updated_at", "2020-04-22 05:37:37.686170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.686821"], ["updated_at", "2020-04-22 05:37:37.686821"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.688119"], ["updated_at", "2020-04-22 05:37:37.688119"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.689652"], ["updated_at", "2020-04-22 05:37:37.689652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.696875"], ["updated_at", "2020-04-22 05:37:37.696875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_116946


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_972774


Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.703018"], ["updated_at", "2020-04-22 05:37:37.703018"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.704751"], ["updated_at", "2020-04-22 05:37:37.704751"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.707481"], ["updated_at", "2020-04-22 05:37:37.707481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.709930"], ["updated_at", "2020-04-22 05:37:37.709930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.713927"], ["updated_at", "2020-04-22 05:37:37.713927"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.713533"], ["updated_at", "2020-04-22 05:37:37.713533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_680738


 (0.2ms)  begin transaction

CommentTest: test_277353


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.734502"], ["updated_at", "2020-04-22 05:37:37.734502"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.734629"], ["updated_at", "2020-04-22 05:37:37.734629"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.737624"], ["updated_at", "2020-04-22 05:37:37.737624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.741087"], ["updated_at", "2020-04-22 05:37:37.741087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.737533"], ["updated_at", "2020-04-22 05:37:37.737533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.748162"], ["updated_at", "2020-04-22 05:37:37.748162"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_225640


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.753589"], ["updated_at", "2020-04-22 05:37:37.753589"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.756533"], ["updated_at", "2020-04-22 05:37:37.756533"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_852973


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.767981"], ["updated_at", "2020-04-22 05:37:37.767981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.6ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.771068"], ["updated_at", "2020-04-22 05:37:37.771068"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_959808


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.782308"], ["updated_at", "2020-04-22 05:37:37.782308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.784879"], ["updated_at", "2020-04-22 05:37:37.784879"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.785340"], ["updated_at", "2020-04-22 05:37:37.785340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.788124"], ["updated_at", "2020-04-22 05:37:37.788124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.791197"], ["updated_at", "2020-04-22 05:37:37.791197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_69530


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_653943


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.804174"], ["updated_at", "2020-04-22 05:37:37.804174"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.807436"], ["updated_at", "2020-04-22 05:37:37.807436"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.806367"], ["updated_at", "2020-04-22 05:37:37.806367"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.814123"], ["updated_at", "2020-04-22 05:37:37.814123"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.814720"], ["updated_at", "2020-04-22 05:37:37.814720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.817113"], ["updated_at", "2020-04-22 05:37:37.817113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_229772


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.825072"], ["updated_at", "2020-04-22 05:37:37.825072"]]
 (0.1ms)  begin transaction

CommentTest: test_237790


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.831217"], ["updated_at", "2020-04-22 05:37:37.831217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.831649"], ["updated_at", "2020-04-22 05:37:37.831649"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.833384"], ["updated_at", "2020-04-22 05:37:37.833384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.834288"], ["updated_at", "2020-04-22 05:37:37.834288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.836175"], ["updated_at", "2020-04-22 05:37:37.836175"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_802295


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.843897"], ["updated_at", "2020-04-22 05:37:37.843897"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.850529"], ["updated_at", "2020-04-22 05:37:37.850529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_15106


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.852497"], ["updated_at", "2020-04-22 05:37:37.852497"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.853463"], ["updated_at", "2020-04-22 05:37:37.853463"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.856402"], ["updated_at", "2020-04-22 05:37:37.856402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_341683


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.864475"], ["updated_at", "2020-04-22 05:37:37.864475"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.866575"], ["updated_at", "2020-04-22 05:37:37.866575"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.870102"], ["updated_at", "2020-04-22 05:37:37.870102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.873926"], ["updated_at", "2020-04-22 05:37:37.873926"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_257816


 (0.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_827491


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.883695"], ["updated_at", "2020-04-22 05:37:37.883695"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.885728"], ["updated_at", "2020-04-22 05:37:37.885728"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.888809"], ["updated_at", "2020-04-22 05:37:37.888809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.886648"], ["updated_at", "2020-04-22 05:37:37.886648"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.894155"], ["updated_at", "2020-04-22 05:37:37.894155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.896982"], ["updated_at", "2020-04-22 05:37:37.896982"]]
 (1.1ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_408387


 (0.1ms)  SAVEPOINT active_record_1
Course Create (6.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.904976"], ["updated_at", "2020-04-22 05:37:37.904976"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.914607"], ["updated_at", "2020-04-22 05:37:37.914607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.916977"], ["updated_at", "2020-04-22 05:37:37.916977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_230955


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.3ms)  rollback transaction
Course Create (9.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.919876"], ["updated_at", "2020-04-22 05:37:37.919876"]]
 (0.1ms)  begin transaction

CommentTest: test_15641


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.932258"], ["updated_at", "2020-04-22 05:37:37.932258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.933008"], ["updated_at", "2020-04-22 05:37:37.933008"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.935167"], ["updated_at", "2020-04-22 05:37:37.935167"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.936227"], ["updated_at", "2020-04-22 05:37:37.936227"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.938181"], ["updated_at", "2020-04-22 05:37:37.938181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_295934


 (0.1ms)  begin transaction

CommentTest: test_540115


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.951105"], ["updated_at", "2020-04-22 05:37:37.951105"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.952143"], ["updated_at", "2020-04-22 05:37:37.952143"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.954149"], ["updated_at", "2020-04-22 05:37:37.954149"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.954230"], ["updated_at", "2020-04-22 05:37:37.954230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.956571"], ["updated_at", "2020-04-22 05:37:37.956571"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.956727"], ["updated_at", "2020-04-22 05:37:37.956727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_719523


 (0.1ms)  begin transaction

CommentTest: test_602527


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.969438"], ["updated_at", "2020-04-22 05:37:37.969438"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.970577"], ["updated_at", "2020-04-22 05:37:37.970577"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.974891"], ["updated_at", "2020-04-22 05:37:37.974891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:37.974468"], ["updated_at", "2020-04-22 05:37:37.974468"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.980061"], ["updated_at", "2020-04-22 05:37:37.980061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:37.981546"], ["updated_at", "2020-04-22 05:37:37.981546"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_622634


 (0.1ms)  begin transaction

CommentTest: test_548111


 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:37.998242"], ["updated_at", "2020-04-22 05:37:37.998242"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.000933"], ["updated_at", "2020-04-22 05:37:38.000933"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.003115"], ["updated_at", "2020-04-22 05:37:38.003115"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.003890"], ["updated_at", "2020-04-22 05:37:38.003890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.006372"], ["updated_at", "2020-04-22 05:37:38.006372"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.005355"], ["updated_at", "2020-04-22 05:37:38.005355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (2.7ms)  begin transaction

CommentTest: test_514821


 (0.1ms)  begin transaction

CommentTest: test_677113


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.029909"], ["updated_at", "2020-04-22 05:37:38.029909"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.031169"], ["updated_at", "2020-04-22 05:37:38.031169"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.035030"], ["updated_at", "2020-04-22 05:37:38.035030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.037461"], ["updated_at", "2020-04-22 05:37:38.037461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.035480"], ["updated_at", "2020-04-22 05:37:38.035480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.046370"], ["updated_at", "2020-04-22 05:37:38.046370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_216121


 (0.2ms)  begin transaction

CommentTest: test_391335


 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.057055"], ["updated_at", "2020-04-22 05:37:38.057055"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.056502"], ["updated_at", "2020-04-22 05:37:38.056502"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.064697"], ["updated_at", "2020-04-22 05:37:38.064697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.066746"], ["updated_at", "2020-04-22 05:37:38.066746"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.066933"], ["updated_at", "2020-04-22 05:37:38.066933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.068567"], ["updated_at", "2020-04-22 05:37:38.068567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (3.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_620479


 (0.1ms)  begin transaction

CommentTest: test_883997


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.082911"], ["updated_at", "2020-04-22 05:37:38.082911"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.082368"], ["updated_at", "2020-04-22 05:37:38.082368"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.085307"], ["updated_at", "2020-04-22 05:37:38.085307"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.085372"], ["updated_at", "2020-04-22 05:37:38.085372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.086868"], ["updated_at", "2020-04-22 05:37:38.086868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.087272"], ["updated_at", "2020-04-22 05:37:38.087272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_273448


 (2.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (8.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.099815"], ["updated_at", "2020-04-22 05:37:38.099815"]]
 (0.3ms)  begin transaction

CommentTest: test_412838


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.114105"], ["updated_at", "2020-04-22 05:37:38.114105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.114672"], ["updated_at", "2020-04-22 05:37:38.114672"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.116745"], ["updated_at", "2020-04-22 05:37:38.116745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.119222"], ["updated_at", "2020-04-22 05:37:38.119222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.121028"], ["updated_at", "2020-04-22 05:37:38.121028"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (3.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_449164


 (0.7ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.137838"], ["updated_at", "2020-04-22 05:37:38.137838"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.142067"], ["updated_at", "2020-04-22 05:37:38.142067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.147098"], ["updated_at", "2020-04-22 05:37:38.147098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_512924


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.155966"], ["updated_at", "2020-04-22 05:37:38.155966"]]
 (0.1ms)  begin transaction

CommentTest: test_109827


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.164301"], ["updated_at", "2020-04-22 05:37:38.164301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.167283"], ["updated_at", "2020-04-22 05:37:38.167283"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.165629"], ["updated_at", "2020-04-22 05:37:38.165629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.172209"], ["updated_at", "2020-04-22 05:37:38.172209"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.183412"], ["updated_at", "2020-04-22 05:37:38.183412"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_672598


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.187789"], ["updated_at", "2020-04-22 05:37:38.187789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_270833


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.191014"], ["updated_at", "2020-04-22 05:37:38.191014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.197146"], ["updated_at", "2020-04-22 05:37:38.197146"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.198260"], ["updated_at", "2020-04-22 05:37:38.198260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.200228"], ["updated_at", "2020-04-22 05:37:38.200228"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.202310"], ["updated_at", "2020-04-22 05:37:38.202310"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_15457


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_537568


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.215412"], ["updated_at", "2020-04-22 05:37:38.215412"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.217489"], ["updated_at", "2020-04-22 05:37:38.217489"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.218407"], ["updated_at", "2020-04-22 05:37:38.218407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.220173"], ["updated_at", "2020-04-22 05:37:38.220173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.220557"], ["updated_at", "2020-04-22 05:37:38.220557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.222734"], ["updated_at", "2020-04-22 05:37:38.222734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_441912


 (1.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.235785"], ["updated_at", "2020-04-22 05:37:38.235785"]]
 (0.1ms)  begin transaction

CommentTest: test_350448


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.239161"], ["updated_at", "2020-04-22 05:37:38.239161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (349.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.239336"], ["updated_at", "2020-04-22 05:37:38.239336"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.247483"], ["updated_at", "2020-04-22 05:37:38.247483"]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.602777"], ["updated_at", "2020-04-22 05:37:38.602777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.632958"], ["updated_at", "2020-04-22 05:37:38.632958"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (58.8ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_460395


 (0.4ms)  SAVEPOINT active_record_1
 (9.6ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_395046


 (1.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.875132"], ["updated_at", "2020-04-22 05:37:38.875132"]]
Course Create (93.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:38.800249"], ["updated_at", "2020-04-22 05:37:38.800249"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.889310"], ["updated_at", "2020-04-22 05:37:38.889310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:38.903384"], ["updated_at", "2020-04-22 05:37:38.903384"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.922966"], ["updated_at", "2020-04-22 05:37:38.922966"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:38.980344"], ["updated_at", "2020-04-22 05:37:38.980344"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (54.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_835063


 (1.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
Course Create (33.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.059157"], ["updated_at", "2020-04-22 05:37:39.059157"]]
Bucket Create (3.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.109471"], ["updated_at", "2020-04-22 05:37:39.109471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_719713


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.130706"], ["updated_at", "2020-04-22 05:37:39.130706"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (18.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.121937"], ["updated_at", "2020-04-22 05:37:39.121937"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.152400"], ["updated_at", "2020-04-22 05:37:39.152400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.217236"], ["updated_at", "2020-04-22 05:37:39.217236"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_575624


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.243308"], ["updated_at", "2020-04-22 05:37:39.243308"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.256416"], ["updated_at", "2020-04-22 05:37:39.256416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (37.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_573339


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.311742"], ["updated_at", "2020-04-22 05:37:39.311742"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.323208"], ["updated_at", "2020-04-22 05:37:39.323208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.298908"], ["updated_at", "2020-04-22 05:37:39.298908"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.348755"], ["updated_at", "2020-04-22 05:37:39.348755"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (41.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (25.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (35.4ms)  RELEASE SAVEPOINT active_record_1
 (12.2ms)  rollback transaction
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_439405


 (9.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_311174


Course Create (22.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.631290"], ["updated_at", "2020-04-22 05:37:39.631290"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.693965"], ["updated_at", "2020-04-22 05:37:39.693965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:39.652511"], ["updated_at", "2020-04-22 05:37:39.652511"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.879623"], ["updated_at", "2020-04-22 05:37:39.879623"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (6.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:39.888680"], ["updated_at", "2020-04-22 05:37:39.888680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:39.916252"], ["updated_at", "2020-04-22 05:37:39.916252"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (12.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_95117


 (0.2ms)  begin transaction

CommentTest: test_338817


 (0.4ms)  SAVEPOINT active_record_1
Course Create (6.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.110309"], ["updated_at", "2020-04-22 05:37:40.110309"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.287960"], ["updated_at", "2020-04-22 05:37:40.287960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.192257"], ["updated_at", "2020-04-22 05:37:40.192257"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.340127"], ["updated_at", "2020-04-22 05:37:40.340127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (16.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:40.389332"], ["updated_at", "2020-04-22 05:37:40.389332"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (132.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:40.296300"], ["updated_at", "2020-04-22 05:37:40.296300"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (17.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (1.3ms)  begin transaction

CommentTest: test_798007


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_959910


 (0.3ms)  SAVEPOINT active_record_1
Course Create (69.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.510960"], ["updated_at", "2020-04-22 05:37:40.510960"]]
Course Create (33.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.553302"], ["updated_at", "2020-04-22 05:37:40.553302"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.605404"], ["updated_at", "2020-04-22 05:37:40.605404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:40.622909"], ["updated_at", "2020-04-22 05:37:40.622909"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.589886"], ["updated_at", "2020-04-22 05:37:40.589886"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:40.730130"], ["updated_at", "2020-04-22 05:37:40.730130"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_842586


 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.815420"], ["updated_at", "2020-04-22 05:37:40.815420"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.835098"], ["updated_at", "2020-04-22 05:37:40.835098"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (176.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_642677


 (0.3ms)  SAVEPOINT active_record_1
Course Create (21.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:40.923369"], ["updated_at", "2020-04-22 05:37:40.923369"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:40.956274"], ["updated_at", "2020-04-22 05:37:40.956274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:41.009088"], ["updated_at", "2020-04-22 05:37:41.009088"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:41.043805"], ["updated_at", "2020-04-22 05:37:41.043805"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_15172


 (10.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:41.156736"], ["updated_at", "2020-04-22 05:37:41.156736"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:41.189546"], ["updated_at", "2020-04-22 05:37:41.189546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_317482


 (0.3ms)  SAVEPOINT active_record_1
Course Create (10.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:41.238957"], ["updated_at", "2020-04-22 05:37:41.238957"]]
Bucket Create (8.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:41.264836"], ["updated_at", "2020-04-22 05:37:41.264836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:41.479898"], ["updated_at", "2020-04-22 05:37:41.479898"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (8.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:41.307868"], ["updated_at", "2020-04-22 05:37:41.307868"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (34.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_41393


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:41.691850"], ["updated_at", "2020-04-22 05:37:41.691850"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (3.6ms)  begin transaction

CommentTest: test_787067


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:41.717519"], ["updated_at", "2020-04-22 05:37:41.717519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (14.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:41.984281"], ["updated_at", "2020-04-22 05:37:41.984281"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:41.995119"], ["updated_at", "2020-04-22 05:37:41.995119"]]
 (7.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (125.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.101267"], ["updated_at", "2020-04-22 05:37:42.101267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_25391


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.253088"], ["updated_at", "2020-04-22 05:37:42.253088"]]
 (8.8ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.265957"], ["updated_at", "2020-04-22 05:37:42.265957"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.280539"], ["updated_at", "2020-04-22 05:37:42.280539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_369685


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.381027"], ["updated_at", "2020-04-22 05:37:42.381027"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.395675"], ["updated_at", "2020-04-22 05:37:42.395675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.402973"], ["updated_at", "2020-04-22 05:37:42.402973"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.420248"], ["updated_at", "2020-04-22 05:37:42.420248"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (51.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_44437


 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.563656"], ["updated_at", "2020-04-22 05:37:42.563656"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.585398"], ["updated_at", "2020-04-22 05:37:42.585398"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_484817


 (0.6ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.592908"], ["updated_at", "2020-04-22 05:37:42.592908"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.611322"], ["updated_at", "2020-04-22 05:37:42.611322"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.765725"], ["updated_at", "2020-04-22 05:37:42.765725"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.835972"], ["updated_at", "2020-04-22 05:37:42.835972"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_951917


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.876046"], ["updated_at", "2020-04-22 05:37:42.876046"]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:42.887593"], ["updated_at", "2020-04-22 05:37:42.887593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_306463


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:42.976933"], ["updated_at", "2020-04-22 05:37:42.976933"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (28.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_880197


 (0.3ms)  SAVEPOINT active_record_1
Course Create (121.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:42.952739"], ["updated_at", "2020-04-22 05:37:42.952739"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:43.078776"], ["updated_at", "2020-04-22 05:37:43.078776"]]
Bucket Create (9.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:43.089571"], ["updated_at", "2020-04-22 05:37:43.089571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:43.123923"], ["updated_at", "2020-04-22 05:37:43.123923"]]
 (2.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_802445


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:43.247156"], ["updated_at", "2020-04-22 05:37:43.247156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:43.204420"], ["updated_at", "2020-04-22 05:37:43.204420"]]
Recording Create (21.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:43.258037"], ["updated_at", "2020-04-22 05:37:43.258037"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:43.394281"], ["updated_at", "2020-04-22 05:37:43.394281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.4ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:43.400722"], ["updated_at", "2020-04-22 05:37:43.400722"]]
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (23.3ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_532636


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (75.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:43.575724"], ["updated_at", "2020-04-22 05:37:43.575724"]]
Comment Create (199.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_68365


Bucket Create (147.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:43.671700"], ["updated_at", "2020-04-22 05:37:43.671700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (3.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:43.848072"], ["updated_at", "2020-04-22 05:37:43.848072"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (133.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:43.837678"], ["updated_at", "2020-04-22 05:37:43.837678"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:43.988317"], ["updated_at", "2020-04-22 05:37:43.988317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:43.995624"], ["updated_at", "2020-04-22 05:37:43.995624"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (15.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_791738


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.041339"], ["updated_at", "2020-04-22 05:37:44.041339"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_806564


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.052005"], ["updated_at", "2020-04-22 05:37:44.052005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.148048"], ["updated_at", "2020-04-22 05:37:44.148048"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.116067"], ["updated_at", "2020-04-22 05:37:44.116067"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.223457"], ["updated_at", "2020-04-22 05:37:44.223457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (27.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_999479


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.286706"], ["updated_at", "2020-04-22 05:37:44.286706"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.279528"], ["updated_at", "2020-04-22 05:37:44.279528"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.334420"], ["updated_at", "2020-04-22 05:37:44.334420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.2ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.355210"], ["updated_at", "2020-04-22 05:37:44.355210"]]
 (5.3ms)  begin transaction

CommentTest: test_937178


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (8.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.376420"], ["updated_at", "2020-04-22 05:37:44.376420"]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (16.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Bucket Create (25.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.413273"], ["updated_at", "2020-04-22 05:37:44.413273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_162921


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.448633"], ["updated_at", "2020-04-22 05:37:44.448633"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (26.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.454438"], ["updated_at", "2020-04-22 05:37:44.454438"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.499030"], ["updated_at", "2020-04-22 05:37:44.499030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_21095


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.525610"], ["updated_at", "2020-04-22 05:37:44.525610"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (17.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.516392"], ["updated_at", "2020-04-22 05:37:44.516392"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.547481"], ["updated_at", "2020-04-22 05:37:44.547481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.4ms)  rollback transaction
Recording Create (4.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.572067"], ["updated_at", "2020-04-22 05:37:44.572067"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_209373


 (2.9ms)  SAVEPOINT active_record_1
Course Create (49.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.618822"], ["updated_at", "2020-04-22 05:37:44.618822"]]
Bucket Load (113.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_613656


Bucket Create (26.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.749412"], ["updated_at", "2020-04-22 05:37:44.749412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.786137"], ["updated_at", "2020-04-22 05:37:44.786137"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (8.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:44.780195"], ["updated_at", "2020-04-22 05:37:44.780195"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:44.861039"], ["updated_at", "2020-04-22 05:37:44.861039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:44.879618"], ["updated_at", "2020-04-22 05:37:44.879618"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (43.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (8.4ms)  RELEASE SAVEPOINT active_record_1
 (22.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_326470


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.032294"], ["updated_at", "2020-04-22 05:37:45.032294"]]
 (3.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (13.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.084196"], ["updated_at", "2020-04-22 05:37:45.084196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (59.3ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.154837"], ["updated_at", "2020-04-22 05:37:45.154837"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_981612


 (0.4ms)  SAVEPOINT active_record_1
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.183353"], ["updated_at", "2020-04-22 05:37:45.183353"]]
Bucket Load (103.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (148.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.202203"], ["updated_at", "2020-04-22 05:37:45.202203"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.379384"], ["updated_at", "2020-04-22 05:37:45.379384"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (8.2ms)  SAVEPOINT active_record_1
Comment Create (5.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_88670


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.450855"], ["updated_at", "2020-04-22 05:37:45.450855"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.453988"], ["updated_at", "2020-04-22 05:37:45.453988"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.457402"], ["updated_at", "2020-04-22 05:37:45.457402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Comment Create (71.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_963206


 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.514153"], ["updated_at", "2020-04-22 05:37:45.514153"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.516714"], ["updated_at", "2020-04-22 05:37:45.516714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.519166"], ["updated_at", "2020-04-22 05:37:45.519166"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_301879


 (0.1ms)  begin transaction

CommentTest: test_429636


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.532166"], ["updated_at", "2020-04-22 05:37:45.532166"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.535103"], ["updated_at", "2020-04-22 05:37:45.535103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.533581"], ["updated_at", "2020-04-22 05:37:45.533581"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.537650"], ["updated_at", "2020-04-22 05:37:45.537650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.548054"], ["updated_at", "2020-04-22 05:37:45.548054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.550450"], ["updated_at", "2020-04-22 05:37:45.550450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_981339


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.586274"], ["updated_at", "2020-04-22 05:37:45.586274"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.593216"], ["updated_at", "2020-04-22 05:37:45.593216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.596282"], ["updated_at", "2020-04-22 05:37:45.596282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_265536


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.618087"], ["updated_at", "2020-04-22 05:37:45.618087"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.620430"], ["updated_at", "2020-04-22 05:37:45.620430"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_264565


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.627321"], ["updated_at", "2020-04-22 05:37:45.627321"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.624453"], ["updated_at", "2020-04-22 05:37:45.624453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.634344"], ["updated_at", "2020-04-22 05:37:45.634344"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.638864"], ["updated_at", "2020-04-22 05:37:45.638864"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.6ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_178681


Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.660754"], ["updated_at", "2020-04-22 05:37:45.660754"]]
 (0.1ms)  begin transaction

CommentTest: test_996469


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.664545"], ["updated_at", "2020-04-22 05:37:45.664545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.665695"], ["updated_at", "2020-04-22 05:37:45.665695"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.667720"], ["updated_at", "2020-04-22 05:37:45.667720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.669016"], ["updated_at", "2020-04-22 05:37:45.669016"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.671578"], ["updated_at", "2020-04-22 05:37:45.671578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_265794


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (14.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_255654


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.796256"], ["updated_at", "2020-04-22 05:37:45.796256"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.801871"], ["updated_at", "2020-04-22 05:37:45.801871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.804152"], ["updated_at", "2020-04-22 05:37:45.804152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.689059"], ["updated_at", "2020-04-22 05:37:45.689059"]]
 (0.1ms)  begin transaction

CommentTest: test_875499


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.819744"], ["updated_at", "2020-04-22 05:37:45.819744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.820771"], ["updated_at", "2020-04-22 05:37:45.820771"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.824226"], ["updated_at", "2020-04-22 05:37:45.824226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.821862"], ["updated_at", "2020-04-22 05:37:45.821862"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.826568"], ["updated_at", "2020-04-22 05:37:45.826568"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_547033

 (0.1ms)  begin transaction

CommentTest: test_918404



 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.836987"], ["updated_at", "2020-04-22 05:37:45.836987"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.837414"], ["updated_at", "2020-04-22 05:37:45.837414"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.842219"], ["updated_at", "2020-04-22 05:37:45.842219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.842858"], ["updated_at", "2020-04-22 05:37:45.842858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.846180"], ["updated_at", "2020-04-22 05:37:45.846180"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.846547"], ["updated_at", "2020-04-22 05:37:45.846547"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_745215


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.862558"], ["updated_at", "2020-04-22 05:37:45.862558"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.866563"], ["updated_at", "2020-04-22 05:37:45.866563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.870270"], ["updated_at", "2020-04-22 05:37:45.870270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_489940


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.895285"], ["updated_at", "2020-04-22 05:37:45.895285"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.898104"], ["updated_at", "2020-04-22 05:37:45.898104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.901108"], ["updated_at", "2020-04-22 05:37:45.901108"]]

CommentTest: test_806426


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.902939"], ["updated_at", "2020-04-22 05:37:45.902939"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.905849"], ["updated_at", "2020-04-22 05:37:45.905849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_956542


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.910379"], ["updated_at", "2020-04-22 05:37:45.910379"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.911792"], ["updated_at", "2020-04-22 05:37:45.911792"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.914280"], ["updated_at", "2020-04-22 05:37:45.914280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.916394"], ["updated_at", "2020-04-22 05:37:45.916394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_872698


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.925491"], ["updated_at", "2020-04-22 05:37:45.925491"]]
 (6.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.929274"], ["updated_at", "2020-04-22 05:37:45.929274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.932089"], ["updated_at", "2020-04-22 05:37:45.932089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_803150


Comment Create (38.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.975291"], ["updated_at", "2020-04-22 05:37:45.975291"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.978483"], ["updated_at", "2020-04-22 05:37:45.978483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.980566"], ["updated_at", "2020-04-22 05:37:45.980566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (2.1ms)  begin transaction

CommentTest: test_354480


 (0.1ms)  begin transaction

CommentTest: test_370425


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.993614"], ["updated_at", "2020-04-22 05:37:45.993614"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:45.994897"], ["updated_at", "2020-04-22 05:37:45.994897"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.996902"], ["updated_at", "2020-04-22 05:37:45.996902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:45.997906"], ["updated_at", "2020-04-22 05:37:45.997906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.999006"], ["updated_at", "2020-04-22 05:37:45.999006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:45.999993"], ["updated_at", "2020-04-22 05:37:45.999993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_922458


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.021083"], ["updated_at", "2020-04-22 05:37:46.021083"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.032912"], ["updated_at", "2020-04-22 05:37:46.032912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.034926"], ["updated_at", "2020-04-22 05:37:46.034926"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (34.1ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_888975


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.070392"], ["updated_at", "2020-04-22 05:37:46.070392"]]
Bucket Create (4.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.073385"], ["updated_at", "2020-04-22 05:37:46.073385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.098735"], ["updated_at", "2020-04-22 05:37:46.098735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_799537


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.101079"], ["updated_at", "2020-04-22 05:37:46.101079"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.103626"], ["updated_at", "2020-04-22 05:37:46.103626"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.105810"], ["updated_at", "2020-04-22 05:37:46.105810"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_657806


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.110142"], ["updated_at", "2020-04-22 05:37:46.110142"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.112873"], ["updated_at", "2020-04-22 05:37:46.112873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.115258"], ["updated_at", "2020-04-22 05:37:46.115258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_724923


 (0.1ms)  begin transaction

CommentTest: test_769683


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.125994"], ["updated_at", "2020-04-22 05:37:46.125994"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.127255"], ["updated_at", "2020-04-22 05:37:46.127255"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.128878"], ["updated_at", "2020-04-22 05:37:46.128878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.129757"], ["updated_at", "2020-04-22 05:37:46.129757"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.130525"], ["updated_at", "2020-04-22 05:37:46.130525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.131899"], ["updated_at", "2020-04-22 05:37:46.131899"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (27.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_137431


Comment Create (34.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.169925"], ["updated_at", "2020-04-22 05:37:46.169925"]]
 (0.5ms)  begin transaction

CommentTest: test_945636


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.175425"], ["updated_at", "2020-04-22 05:37:46.175425"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.178077"], ["updated_at", "2020-04-22 05:37:46.178077"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.177488"], ["updated_at", "2020-04-22 05:37:46.177488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.180419"], ["updated_at", "2020-04-22 05:37:46.180419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.182580"], ["updated_at", "2020-04-22 05:37:46.182580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_756988


 (0.1ms)  begin transaction

CommentTest: test_975293


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.203130"], ["updated_at", "2020-04-22 05:37:46.203130"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.204319"], ["updated_at", "2020-04-22 05:37:46.204319"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.209197"], ["updated_at", "2020-04-22 05:37:46.209197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.205932"], ["updated_at", "2020-04-22 05:37:46.205932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.213168"], ["updated_at", "2020-04-22 05:37:46.213168"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.216583"], ["updated_at", "2020-04-22 05:37:46.216583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_423414


 (0.7ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.224880"], ["updated_at", "2020-04-22 05:37:46.224880"]]
 (0.1ms)  begin transaction

CommentTest: test_657626


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.227976"], ["updated_at", "2020-04-22 05:37:46.227976"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.228642"], ["updated_at", "2020-04-22 05:37:46.228642"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.230247"], ["updated_at", "2020-04-22 05:37:46.230247"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.231560"], ["updated_at", "2020-04-22 05:37:46.231560"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.233207"], ["updated_at", "2020-04-22 05:37:46.233207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_920938


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.238513"], ["updated_at", "2020-04-22 05:37:46.238513"]]

CommentTest: test_333074


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.241761"], ["updated_at", "2020-04-22 05:37:46.241761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.242079"], ["updated_at", "2020-04-22 05:37:46.242079"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.244772"], ["updated_at", "2020-04-22 05:37:46.244772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.246055"], ["updated_at", "2020-04-22 05:37:46.246055"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.248925"], ["updated_at", "2020-04-22 05:37:46.248925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_418700


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.257631"], ["updated_at", "2020-04-22 05:37:46.257631"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.261530"], ["updated_at", "2020-04-22 05:37:46.261530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.263858"], ["updated_at", "2020-04-22 05:37:46.263858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_235108


 (2.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.272677"], ["updated_at", "2020-04-22 05:37:46.272677"]]
 (0.1ms)  begin transaction

CommentTest: test_995348


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.276378"], ["updated_at", "2020-04-22 05:37:46.276378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.276474"], ["updated_at", "2020-04-22 05:37:46.276474"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.278744"], ["updated_at", "2020-04-22 05:37:46.278744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.279648"], ["updated_at", "2020-04-22 05:37:46.279648"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.282354"], ["updated_at", "2020-04-22 05:37:46.282354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_906225


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.289622"], ["updated_at", "2020-04-22 05:37:46.289622"]]
 (0.1ms)  begin transaction

CommentTest: test_400109


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.299465"], ["updated_at", "2020-04-22 05:37:46.299465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.300768"], ["updated_at", "2020-04-22 05:37:46.300768"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.301755"], ["updated_at", "2020-04-22 05:37:46.301755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.306532"], ["updated_at", "2020-04-22 05:37:46.306532"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.311250"], ["updated_at", "2020-04-22 05:37:46.311250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_284946


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.316839"], ["updated_at", "2020-04-22 05:37:46.316839"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.320039"], ["updated_at", "2020-04-22 05:37:46.320039"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_596033


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.323273"], ["updated_at", "2020-04-22 05:37:46.323273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.327950"], ["updated_at", "2020-04-22 05:37:46.327950"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.330862"], ["updated_at", "2020-04-22 05:37:46.330862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.333147"], ["updated_at", "2020-04-22 05:37:46.333147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_574893


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.336861"], ["updated_at", "2020-04-22 05:37:46.336861"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_360883


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.344819"], ["updated_at", "2020-04-22 05:37:46.344819"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.347153"], ["updated_at", "2020-04-22 05:37:46.347153"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.349361"], ["updated_at", "2020-04-22 05:37:46.349361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.350560"], ["updated_at", "2020-04-22 05:37:46.350560"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.352931"], ["updated_at", "2020-04-22 05:37:46.352931"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_295572


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.367609"], ["updated_at", "2020-04-22 05:37:46.367609"]]
 (0.1ms)  begin transaction

CommentTest: test_808858


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.370482"], ["updated_at", "2020-04-22 05:37:46.370482"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.371934"], ["updated_at", "2020-04-22 05:37:46.371934"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.372982"], ["updated_at", "2020-04-22 05:37:46.372982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.375708"], ["updated_at", "2020-04-22 05:37:46.375708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.378136"], ["updated_at", "2020-04-22 05:37:46.378136"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_909289


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.383088"], ["updated_at", "2020-04-22 05:37:46.383088"]]
 (0.0ms)  begin transaction

CommentTest: test_464280


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.385559"], ["updated_at", "2020-04-22 05:37:46.385559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.385269"], ["updated_at", "2020-04-22 05:37:46.385269"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.387636"], ["updated_at", "2020-04-22 05:37:46.387636"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.387720"], ["updated_at", "2020-04-22 05:37:46.387720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.389748"], ["updated_at", "2020-04-22 05:37:46.389748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_872234


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_527578


Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.404446"], ["updated_at", "2020-04-22 05:37:46.404446"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.406822"], ["updated_at", "2020-04-22 05:37:46.406822"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.411380"], ["updated_at", "2020-04-22 05:37:46.411380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.417025"], ["updated_at", "2020-04-22 05:37:46.417025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.417364"], ["updated_at", "2020-04-22 05:37:46.417364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.420057"], ["updated_at", "2020-04-22 05:37:46.420057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.7ms)  rollback transaction

CommentTest: test_166729


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_397986


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.433110"], ["updated_at", "2020-04-22 05:37:46.433110"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.434910"], ["updated_at", "2020-04-22 05:37:46.434910"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.436220"], ["updated_at", "2020-04-22 05:37:46.436220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.437929"], ["updated_at", "2020-04-22 05:37:46.437929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.438373"], ["updated_at", "2020-04-22 05:37:46.438373"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.442430"], ["updated_at", "2020-04-22 05:37:46.442430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_898565


 (0.1ms)  begin transaction

CommentTest: test_155245


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.454321"], ["updated_at", "2020-04-22 05:37:46.454321"]]
Course Create (4.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.455582"], ["updated_at", "2020-04-22 05:37:46.455582"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.460884"], ["updated_at", "2020-04-22 05:37:46.460884"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.462740"], ["updated_at", "2020-04-22 05:37:46.462740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.463259"], ["updated_at", "2020-04-22 05:37:46.463259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.465240"], ["updated_at", "2020-04-22 05:37:46.465240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_183786


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_126318


Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.474865"], ["updated_at", "2020-04-22 05:37:46.474865"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.477785"], ["updated_at", "2020-04-22 05:37:46.477785"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.479584"], ["updated_at", "2020-04-22 05:37:46.479584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.481349"], ["updated_at", "2020-04-22 05:37:46.481349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.484087"], ["updated_at", "2020-04-22 05:37:46.484087"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.483676"], ["updated_at", "2020-04-22 05:37:46.483676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_616546


 (0.1ms)  begin transaction

CommentTest: test_668829


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.494508"], ["updated_at", "2020-04-22 05:37:46.494508"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.497528"], ["updated_at", "2020-04-22 05:37:46.497528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.494943"], ["updated_at", "2020-04-22 05:37:46.494943"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.499622"], ["updated_at", "2020-04-22 05:37:46.499622"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.499701"], ["updated_at", "2020-04-22 05:37:46.499701"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.501916"], ["updated_at", "2020-04-22 05:37:46.501916"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_234485


 (0.2ms)  begin transaction

CommentTest: test_622435


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.510810"], ["updated_at", "2020-04-22 05:37:46.510810"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.512459"], ["updated_at", "2020-04-22 05:37:46.512459"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.515020"], ["updated_at", "2020-04-22 05:37:46.515020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.517515"], ["updated_at", "2020-04-22 05:37:46.517515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.517087"], ["updated_at", "2020-04-22 05:37:46.517087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.520176"], ["updated_at", "2020-04-22 05:37:46.520176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (11.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_963277


 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.538892"], ["updated_at", "2020-04-22 05:37:46.538892"]]

CommentTest: test_955645


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.545562"], ["updated_at", "2020-04-22 05:37:46.545562"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.546049"], ["updated_at", "2020-04-22 05:37:46.546049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.549955"], ["updated_at", "2020-04-22 05:37:46.549955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.550832"], ["updated_at", "2020-04-22 05:37:46.550832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.552076"], ["updated_at", "2020-04-22 05:37:46.552076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_573881


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.566879"], ["updated_at", "2020-04-22 05:37:46.566879"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.569550"], ["updated_at", "2020-04-22 05:37:46.569550"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.585691"], ["updated_at", "2020-04-22 05:37:46.585691"]]
 (0.1ms)  begin transaction

CommentTest: test_688822


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.588117"], ["updated_at", "2020-04-22 05:37:46.588117"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.597865"], ["updated_at", "2020-04-22 05:37:46.597865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.599912"], ["updated_at", "2020-04-22 05:37:46.599912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_288614


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.603476"], ["updated_at", "2020-04-22 05:37:46.603476"]]
 (0.1ms)  begin transaction

CommentTest: test_350609


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.617476"], ["updated_at", "2020-04-22 05:37:46.617476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.621397"], ["updated_at", "2020-04-22 05:37:46.621397"]]
Recording Create (5.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.622491"], ["updated_at", "2020-04-22 05:37:46.622491"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.629208"], ["updated_at", "2020-04-22 05:37:46.629208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.632624"], ["updated_at", "2020-04-22 05:37:46.632624"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_304203


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.658755"], ["updated_at", "2020-04-22 05:37:46.658755"]]
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.669950"], ["updated_at", "2020-04-22 05:37:46.669950"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_340153


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.672619"], ["updated_at", "2020-04-22 05:37:46.672619"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.673349"], ["updated_at", "2020-04-22 05:37:46.673349"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.683040"], ["updated_at", "2020-04-22 05:37:46.683040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.685237"], ["updated_at", "2020-04-22 05:37:46.685237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_553607


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.6ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.689701"], ["updated_at", "2020-04-22 05:37:46.689701"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.697678"], ["updated_at", "2020-04-22 05:37:46.697678"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.700492"], ["updated_at", "2020-04-22 05:37:46.700492"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_355418


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.705804"], ["updated_at", "2020-04-22 05:37:46.705804"]]
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.713552"], ["updated_at", "2020-04-22 05:37:46.713552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_464293


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.715985"], ["updated_at", "2020-04-22 05:37:46.715985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.718395"], ["updated_at", "2020-04-22 05:37:46.718395"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.728402"], ["updated_at", "2020-04-22 05:37:46.728402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_929523


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.732398"], ["updated_at", "2020-04-22 05:37:46.732398"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.732723"], ["updated_at", "2020-04-22 05:37:46.732723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.734705"], ["updated_at", "2020-04-22 05:37:46.734705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.736619"], ["updated_at", "2020-04-22 05:37:46.736619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_445969


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.751406"], ["updated_at", "2020-04-22 05:37:46.751406"]]
 (0.1ms)  begin transaction

CommentTest: test_21559


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.754138"], ["updated_at", "2020-04-22 05:37:46.754138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.756476"], ["updated_at", "2020-04-22 05:37:46.756476"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.755315"], ["updated_at", "2020-04-22 05:37:46.755315"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.764166"], ["updated_at", "2020-04-22 05:37:46.764166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.766495"], ["updated_at", "2020-04-22 05:37:46.766495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_996900


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.770538"], ["updated_at", "2020-04-22 05:37:46.770538"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.773681"], ["updated_at", "2020-04-22 05:37:46.773681"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_738954


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.779418"], ["updated_at", "2020-04-22 05:37:46.779418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.782076"], ["updated_at", "2020-04-22 05:37:46.782076"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.785281"], ["updated_at", "2020-04-22 05:37:46.785281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_929129


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.787606"], ["updated_at", "2020-04-22 05:37:46.787606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.790001"], ["updated_at", "2020-04-22 05:37:46.790001"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.797114"], ["updated_at", "2020-04-22 05:37:46.797114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.799746"], ["updated_at", "2020-04-22 05:37:46.799746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_112453


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.804279"], ["updated_at", "2020-04-22 05:37:46.804279"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.812647"], ["updated_at", "2020-04-22 05:37:46.812647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.815523"], ["updated_at", "2020-04-22 05:37:46.815523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_312662


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_836130


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.819248"], ["updated_at", "2020-04-22 05:37:46.819248"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.830998"], ["updated_at", "2020-04-22 05:37:46.830998"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.833925"], ["updated_at", "2020-04-22 05:37:46.833925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.835614"], ["updated_at", "2020-04-22 05:37:46.835614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.836979"], ["updated_at", "2020-04-22 05:37:46.836979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.845603"], ["updated_at", "2020-04-22 05:37:46.845603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_244519


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.852951"], ["updated_at", "2020-04-22 05:37:46.852951"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.856013"], ["updated_at", "2020-04-22 05:37:46.856013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_237423


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.862619"], ["updated_at", "2020-04-22 05:37:46.862619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.863914"], ["updated_at", "2020-04-22 05:37:46.863914"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.866975"], ["updated_at", "2020-04-22 05:37:46.866975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.869274"], ["updated_at", "2020-04-22 05:37:46.869274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (9.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_290030


 (0.1ms)  begin transaction

CommentTest: test_30532


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.900710"], ["updated_at", "2020-04-22 05:37:46.900710"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.902299"], ["updated_at", "2020-04-22 05:37:46.902299"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.903863"], ["updated_at", "2020-04-22 05:37:46.903863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.906586"], ["updated_at", "2020-04-22 05:37:46.906586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.905361"], ["updated_at", "2020-04-22 05:37:46.905361"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.917051"], ["updated_at", "2020-04-22 05:37:46.917051"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.8ms)  rollback transaction
 (6.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_982837


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_570690


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.934563"], ["updated_at", "2020-04-22 05:37:46.934563"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.936650"], ["updated_at", "2020-04-22 05:37:46.936650"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.943443"], ["updated_at", "2020-04-22 05:37:46.943443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (6.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.937372"], ["updated_at", "2020-04-22 05:37:46.937372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.950093"], ["updated_at", "2020-04-22 05:37:46.950093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.952500"], ["updated_at", "2020-04-22 05:37:46.952500"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_247660


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.966492"], ["updated_at", "2020-04-22 05:37:46.966492"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.972484"], ["updated_at", "2020-04-22 05:37:46.972484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_412043


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.979410"], ["updated_at", "2020-04-22 05:37:46.979410"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.980521"], ["updated_at", "2020-04-22 05:37:46.980521"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.983726"], ["updated_at", "2020-04-22 05:37:46.983726"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.986096"], ["updated_at", "2020-04-22 05:37:46.986096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_642957


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:46.988731"], ["updated_at", "2020-04-22 05:37:46.988731"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:46.996661"], ["updated_at", "2020-04-22 05:37:46.996661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_770505


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:46.999579"], ["updated_at", "2020-04-22 05:37:46.999579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.000507"], ["updated_at", "2020-04-22 05:37:47.000507"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.002983"], ["updated_at", "2020-04-22 05:37:47.002983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.004985"], ["updated_at", "2020-04-22 05:37:47.004985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  begin transaction

CommentTest: test_277512


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.013052"], ["updated_at", "2020-04-22 05:37:47.013052"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.018989"], ["updated_at", "2020-04-22 05:37:47.018989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.021412"], ["updated_at", "2020-04-22 05:37:47.021412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (16.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_900036


 (13.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.049733"], ["updated_at", "2020-04-22 05:37:47.049733"]]
 (0.1ms)  begin transaction

CommentTest: test_736616


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.052170"], ["updated_at", "2020-04-22 05:37:47.052170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.053482"], ["updated_at", "2020-04-22 05:37:47.053482"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.054810"], ["updated_at", "2020-04-22 05:37:47.054810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.058271"], ["updated_at", "2020-04-22 05:37:47.058271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.065964"], ["updated_at", "2020-04-22 05:37:47.065964"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_282039


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.072893"], ["updated_at", "2020-04-22 05:37:47.072893"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.081136"], ["updated_at", "2020-04-22 05:37:47.081136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_496833


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.084044"], ["updated_at", "2020-04-22 05:37:47.084044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.085366"], ["updated_at", "2020-04-22 05:37:47.085366"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_742392


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.096111"], ["updated_at", "2020-04-22 05:37:47.096111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.097303"], ["updated_at", "2020-04-22 05:37:47.097303"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.098640"], ["updated_at", "2020-04-22 05:37:47.098640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.100150"], ["updated_at", "2020-04-22 05:37:47.100150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.102304"], ["updated_at", "2020-04-22 05:37:47.102304"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_215053


 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.111085"], ["updated_at", "2020-04-22 05:37:47.111085"]]
 (0.1ms)  begin transaction

CommentTest: test_379828


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.116008"], ["updated_at", "2020-04-22 05:37:47.116008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.116945"], ["updated_at", "2020-04-22 05:37:47.116945"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.118879"], ["updated_at", "2020-04-22 05:37:47.118879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.119856"], ["updated_at", "2020-04-22 05:37:47.119856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.122060"], ["updated_at", "2020-04-22 05:37:47.122060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_554194


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.132385"], ["updated_at", "2020-04-22 05:37:47.132385"]]
 (2.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.135236"], ["updated_at", "2020-04-22 05:37:47.135236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_677563


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.137318"], ["updated_at", "2020-04-22 05:37:47.137318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.138813"], ["updated_at", "2020-04-22 05:37:47.138813"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.147097"], ["updated_at", "2020-04-22 05:37:47.147097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.150801"], ["updated_at", "2020-04-22 05:37:47.150801"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_378528


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.163463"], ["updated_at", "2020-04-22 05:37:47.163463"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.170735"], ["updated_at", "2020-04-22 05:37:47.170735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.174359"], ["updated_at", "2020-04-22 05:37:47.174359"]]
 (8.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
 (0.6ms)  rollback transaction

CommentTest: test_885938


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.185798"], ["updated_at", "2020-04-22 05:37:47.185798"]]

CommentTest: test_390235


 (3.5ms)  SAVEPOINT active_record_1
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.189773"], ["updated_at", "2020-04-22 05:37:47.189773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.190206"], ["updated_at", "2020-04-22 05:37:47.190206"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.198195"], ["updated_at", "2020-04-22 05:37:47.198195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.200483"], ["updated_at", "2020-04-22 05:37:47.200483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.202491"], ["updated_at", "2020-04-22 05:37:47.202491"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_257768


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.207274"], ["updated_at", "2020-04-22 05:37:47.207274"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.215260"], ["updated_at", "2020-04-22 05:37:47.215260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.217277"], ["updated_at", "2020-04-22 05:37:47.217277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_253211

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.220789"], ["updated_at", "2020-04-22 05:37:47.220789"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.224046"], ["updated_at", "2020-04-22 05:37:47.224046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_642505


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.230671"], ["updated_at", "2020-04-22 05:37:47.230671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.232973"], ["updated_at", "2020-04-22 05:37:47.232973"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.235600"], ["updated_at", "2020-04-22 05:37:47.235600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.237791"], ["updated_at", "2020-04-22 05:37:47.237791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_265144


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.248867"], ["updated_at", "2020-04-22 05:37:47.248867"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_232772


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.252124"], ["updated_at", "2020-04-22 05:37:47.252124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.254858"], ["updated_at", "2020-04-22 05:37:47.254858"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.254450"], ["updated_at", "2020-04-22 05:37:47.254450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.257834"], ["updated_at", "2020-04-22 05:37:47.257834"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.264687"], ["updated_at", "2020-04-22 05:37:47.264687"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_306213


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.268959"], ["updated_at", "2020-04-22 05:37:47.268959"]]
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.271521"], ["updated_at", "2020-04-22 05:37:47.271521"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.280276"], ["updated_at", "2020-04-22 05:37:47.280276"]]

CommentTest: test_155913


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.284209"], ["updated_at", "2020-04-22 05:37:47.284209"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.287400"], ["updated_at", "2020-04-22 05:37:47.287400"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.289903"], ["updated_at", "2020-04-22 05:37:47.289903"]]
 (0.4ms)  begin transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_658066


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.298975"], ["updated_at", "2020-04-22 05:37:47.298975"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.301579"], ["updated_at", "2020-04-22 05:37:47.301579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.303767"], ["updated_at", "2020-04-22 05:37:47.303767"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_956454


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.312499"], ["updated_at", "2020-04-22 05:37:47.312499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.315501"], ["updated_at", "2020-04-22 05:37:47.315501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_29896


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.318423"], ["updated_at", "2020-04-22 05:37:47.318423"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.318301"], ["updated_at", "2020-04-22 05:37:47.318301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.321277"], ["updated_at", "2020-04-22 05:37:47.321277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.323997"], ["updated_at", "2020-04-22 05:37:47.323997"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (6.6ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_978209


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.336033"], ["updated_at", "2020-04-22 05:37:47.336033"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_172748


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.341490"], ["updated_at", "2020-04-22 05:37:47.341490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.347627"], ["updated_at", "2020-04-22 05:37:47.347627"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.347290"], ["updated_at", "2020-04-22 05:37:47.347290"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.350362"], ["updated_at", "2020-04-22 05:37:47.350362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.352593"], ["updated_at", "2020-04-22 05:37:47.352593"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_133689


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.357096"], ["updated_at", "2020-04-22 05:37:47.357096"]]
 (8.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.373698"], ["updated_at", "2020-04-22 05:37:47.373698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_104932


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.382821"], ["updated_at", "2020-04-22 05:37:47.382821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.384217"], ["updated_at", "2020-04-22 05:37:47.384217"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.387141"], ["updated_at", "2020-04-22 05:37:47.387141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.389622"], ["updated_at", "2020-04-22 05:37:47.389622"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_205615


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.400782"], ["updated_at", "2020-04-22 05:37:47.400782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.403835"], ["updated_at", "2020-04-22 05:37:47.403835"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_969418


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.406562"], ["updated_at", "2020-04-22 05:37:47.406562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.416091"], ["updated_at", "2020-04-22 05:37:47.416091"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.419624"], ["updated_at", "2020-04-22 05:37:47.419624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_256163


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.421761"], ["updated_at", "2020-04-22 05:37:47.421761"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.423397"], ["updated_at", "2020-04-22 05:37:47.423397"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.430683"], ["updated_at", "2020-04-22 05:37:47.430683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.432893"], ["updated_at", "2020-04-22 05:37:47.432893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_738648


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.435980"], ["updated_at", "2020-04-22 05:37:47.435980"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.438301"], ["updated_at", "2020-04-22 05:37:47.438301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.440783"], ["updated_at", "2020-04-22 05:37:47.440783"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_605492


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.451593"], ["updated_at", "2020-04-22 05:37:47.451593"]]
 (0.1ms)  begin transaction

CommentTest: test_815772


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.454571"], ["updated_at", "2020-04-22 05:37:47.454571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.455204"], ["updated_at", "2020-04-22 05:37:47.455204"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.457570"], ["updated_at", "2020-04-22 05:37:47.457570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.458300"], ["updated_at", "2020-04-22 05:37:47.458300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.463720"], ["updated_at", "2020-04-22 05:37:47.463720"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_678485


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.469972"], ["updated_at", "2020-04-22 05:37:47.469972"]]
 (0.1ms)  begin transaction

CommentTest: test_550186


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.473240"], ["updated_at", "2020-04-22 05:37:47.473240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.474606"], ["updated_at", "2020-04-22 05:37:47.474606"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.476896"], ["updated_at", "2020-04-22 05:37:47.476896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.480912"], ["updated_at", "2020-04-22 05:37:47.480912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.487820"], ["updated_at", "2020-04-22 05:37:47.487820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_726912


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.498335"], ["updated_at", "2020-04-22 05:37:47.498335"]]
 (2.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.502986"], ["updated_at", "2020-04-22 05:37:47.502986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_963822


 (1.5ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.504958"], ["updated_at", "2020-04-22 05:37:47.504958"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.505762"], ["updated_at", "2020-04-22 05:37:47.505762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.515455"], ["updated_at", "2020-04-22 05:37:47.515455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.517697"], ["updated_at", "2020-04-22 05:37:47.517697"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_467856


 (13.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.521491"], ["updated_at", "2020-04-22 05:37:47.521491"]]
 (3.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.545743"], ["updated_at", "2020-04-22 05:37:47.545743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_399645


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.548083"], ["updated_at", "2020-04-22 05:37:47.548083"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.548214"], ["updated_at", "2020-04-22 05:37:47.548214"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.551861"], ["updated_at", "2020-04-22 05:37:47.551861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.554110"], ["updated_at", "2020-04-22 05:37:47.554110"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_332310


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.558985"], ["updated_at", "2020-04-22 05:37:47.558985"]]
 (1.1ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.561938"], ["updated_at", "2020-04-22 05:37:47.561938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_581110


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.563876"], ["updated_at", "2020-04-22 05:37:47.563876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.564373"], ["updated_at", "2020-04-22 05:37:47.564373"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.566872"], ["updated_at", "2020-04-22 05:37:47.566872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.569122"], ["updated_at", "2020-04-22 05:37:47.569122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_290448


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.574098"], ["updated_at", "2020-04-22 05:37:47.574098"]]
 (2.4ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.580080"], ["updated_at", "2020-04-22 05:37:47.580080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_839783


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.582541"], ["updated_at", "2020-04-22 05:37:47.582541"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.583333"], ["updated_at", "2020-04-22 05:37:47.583333"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.586351"], ["updated_at", "2020-04-22 05:37:47.586351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.588693"], ["updated_at", "2020-04-22 05:37:47.588693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_409648


 (1.4ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.592929"], ["updated_at", "2020-04-22 05:37:47.592929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.597035"], ["updated_at", "2020-04-22 05:37:47.597035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_556867


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.598972"], ["updated_at", "2020-04-22 05:37:47.598972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.600078"], ["updated_at", "2020-04-22 05:37:47.600078"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.603068"], ["updated_at", "2020-04-22 05:37:47.603068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.605207"], ["updated_at", "2020-04-22 05:37:47.605207"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_75973


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.609647"], ["updated_at", "2020-04-22 05:37:47.609647"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.613747"], ["updated_at", "2020-04-22 05:37:47.613747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.615948"], ["updated_at", "2020-04-22 05:37:47.615948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_251430


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.619721"], ["updated_at", "2020-04-22 05:37:47.619721"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_715313


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.624630"], ["updated_at", "2020-04-22 05:37:47.624630"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.623712"], ["updated_at", "2020-04-22 05:37:47.623712"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.628511"], ["updated_at", "2020-04-22 05:37:47.628511"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.628416"], ["updated_at", "2020-04-22 05:37:47.628416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.630400"], ["updated_at", "2020-04-22 05:37:47.630400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_791885


 (0.3ms)  begin transaction

CommentTest: test_633383


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.638519"], ["updated_at", "2020-04-22 05:37:47.638519"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.639802"], ["updated_at", "2020-04-22 05:37:47.639802"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.642462"], ["updated_at", "2020-04-22 05:37:47.642462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.644045"], ["updated_at", "2020-04-22 05:37:47.644045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.644695"], ["updated_at", "2020-04-22 05:37:47.644695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.646795"], ["updated_at", "2020-04-22 05:37:47.646795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_256552


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.653247"], ["updated_at", "2020-04-22 05:37:47.653247"]]
 (0.1ms)  begin transaction

CommentTest: test_466018


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.656247"], ["updated_at", "2020-04-22 05:37:47.656247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.656721"], ["updated_at", "2020-04-22 05:37:47.656721"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.658607"], ["updated_at", "2020-04-22 05:37:47.658607"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.659954"], ["updated_at", "2020-04-22 05:37:47.659954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.662224"], ["updated_at", "2020-04-22 05:37:47.662224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_70994


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_996004


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.670765"], ["updated_at", "2020-04-22 05:37:47.670765"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.673934"], ["updated_at", "2020-04-22 05:37:47.673934"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.674416"], ["updated_at", "2020-04-22 05:37:47.674416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.676726"], ["updated_at", "2020-04-22 05:37:47.676726"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.677169"], ["updated_at", "2020-04-22 05:37:47.677169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.681003"], ["updated_at", "2020-04-22 05:37:47.681003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_326431


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.687767"], ["updated_at", "2020-04-22 05:37:47.687767"]]
 (1.8ms)  begin transaction

CommentTest: test_250517


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.692338"], ["updated_at", "2020-04-22 05:37:47.692338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.692312"], ["updated_at", "2020-04-22 05:37:47.692312"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.696241"], ["updated_at", "2020-04-22 05:37:47.696241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.695944"], ["updated_at", "2020-04-22 05:37:47.695944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.698186"], ["updated_at", "2020-04-22 05:37:47.698186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_91585


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.704544"], ["updated_at", "2020-04-22 05:37:47.704544"]]
 (0.1ms)  begin transaction

CommentTest: test_613781


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.708788"], ["updated_at", "2020-04-22 05:37:47.708788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.708711"], ["updated_at", "2020-04-22 05:37:47.708711"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.712046"], ["updated_at", "2020-04-22 05:37:47.712046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.714011"], ["updated_at", "2020-04-22 05:37:47.714011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.716737"], ["updated_at", "2020-04-22 05:37:47.716737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_292906


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.724773"], ["updated_at", "2020-04-22 05:37:47.724773"]]
 (0.1ms)  begin transaction

CommentTest: test_152317


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.727899"], ["updated_at", "2020-04-22 05:37:47.727899"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.730194"], ["updated_at", "2020-04-22 05:37:47.730194"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.729695"], ["updated_at", "2020-04-22 05:37:47.729695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.733194"], ["updated_at", "2020-04-22 05:37:47.733194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.735807"], ["updated_at", "2020-04-22 05:37:47.735807"]]
 (1.2ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_982963


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.748890"], ["updated_at", "2020-04-22 05:37:47.748890"]]
 (0.1ms)  begin transaction

CommentTest: test_858152


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.751853"], ["updated_at", "2020-04-22 05:37:47.751853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.754197"], ["updated_at", "2020-04-22 05:37:47.754197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.753673"], ["updated_at", "2020-04-22 05:37:47.753673"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.757689"], ["updated_at", "2020-04-22 05:37:47.757689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_960195


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.766134"], ["updated_at", "2020-04-22 05:37:47.766134"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.765931"], ["updated_at", "2020-04-22 05:37:47.765931"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.768838"], ["updated_at", "2020-04-22 05:37:47.768838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.771317"], ["updated_at", "2020-04-22 05:37:47.771317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_915297


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.780680"], ["updated_at", "2020-04-22 05:37:47.780680"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.784238"], ["updated_at", "2020-04-22 05:37:47.784238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.787235"], ["updated_at", "2020-04-22 05:37:47.787235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_832126


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.795400"], ["updated_at", "2020-04-22 05:37:47.795400"]]
 (0.1ms)  begin transaction

CommentTest: test_362208


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.799030"], ["updated_at", "2020-04-22 05:37:47.799030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.799120"], ["updated_at", "2020-04-22 05:37:47.799120"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.800493"], ["updated_at", "2020-04-22 05:37:47.800493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.801700"], ["updated_at", "2020-04-22 05:37:47.801700"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.803243"], ["updated_at", "2020-04-22 05:37:47.803243"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (3.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.2ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_480538


CommentTest: test_643146


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.816062"], ["updated_at", "2020-04-22 05:37:47.816062"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.816069"], ["updated_at", "2020-04-22 05:37:47.816069"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.818855"], ["updated_at", "2020-04-22 05:37:47.818855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.818901"], ["updated_at", "2020-04-22 05:37:47.818901"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.820871"], ["updated_at", "2020-04-22 05:37:47.820871"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.821234"], ["updated_at", "2020-04-22 05:37:47.821234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_597952


 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_374705


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.832501"], ["updated_at", "2020-04-22 05:37:47.832501"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.834696"], ["updated_at", "2020-04-22 05:37:47.834696"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.835219"], ["updated_at", "2020-04-22 05:37:47.835219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.836408"], ["updated_at", "2020-04-22 05:37:47.836408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.837162"], ["updated_at", "2020-04-22 05:37:47.837162"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.837621"], ["updated_at", "2020-04-22 05:37:47.837621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (0.5ms)  rollback transaction

CommentTest: test_958207


 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_362901


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.847077"], ["updated_at", "2020-04-22 05:37:47.847077"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.848548"], ["updated_at", "2020-04-22 05:37:47.848548"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.849652"], ["updated_at", "2020-04-22 05:37:47.849652"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.852134"], ["updated_at", "2020-04-22 05:37:47.852134"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.852723"], ["updated_at", "2020-04-22 05:37:47.852723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.854684"], ["updated_at", "2020-04-22 05:37:47.854684"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_131227


 (0.2ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_952311


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.869486"], ["updated_at", "2020-04-22 05:37:47.869486"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.873090"], ["updated_at", "2020-04-22 05:37:47.873090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.871267"], ["updated_at", "2020-04-22 05:37:47.871267"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.875393"], ["updated_at", "2020-04-22 05:37:47.875393"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.875289"], ["updated_at", "2020-04-22 05:37:47.875289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.882495"], ["updated_at", "2020-04-22 05:37:47.882495"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_419393


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (4.8ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.890073"], ["updated_at", "2020-04-22 05:37:47.890073"]]
 (0.1ms)  begin transaction

CommentTest: test_685003


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.896565"], ["updated_at", "2020-04-22 05:37:47.896565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.899072"], ["updated_at", "2020-04-22 05:37:47.899072"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.897879"], ["updated_at", "2020-04-22 05:37:47.897879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.901486"], ["updated_at", "2020-04-22 05:37:47.901486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.904277"], ["updated_at", "2020-04-22 05:37:47.904277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_83623


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.908414"], ["updated_at", "2020-04-22 05:37:47.908414"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.913817"], ["updated_at", "2020-04-22 05:37:47.913817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.917651"], ["updated_at", "2020-04-22 05:37:47.917651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_806188


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.922297"], ["updated_at", "2020-04-22 05:37:47.922297"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.925844"], ["updated_at", "2020-04-22 05:37:47.925844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_785240


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.929592"], ["updated_at", "2020-04-22 05:37:47.929592"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.930710"], ["updated_at", "2020-04-22 05:37:47.930710"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.933735"], ["updated_at", "2020-04-22 05:37:47.933735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.936264"], ["updated_at", "2020-04-22 05:37:47.936264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_3651


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.941193"], ["updated_at", "2020-04-22 05:37:47.941193"]]
 (0.1ms)  begin transaction

CommentTest: test_712060


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.949670"], ["updated_at", "2020-04-22 05:37:47.949670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.950232"], ["updated_at", "2020-04-22 05:37:47.950232"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.953509"], ["updated_at", "2020-04-22 05:37:47.953509"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.953781"], ["updated_at", "2020-04-22 05:37:47.953781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.955813"], ["updated_at", "2020-04-22 05:37:47.955813"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_243651



CommentTest: test_804071


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.971203"], ["updated_at", "2020-04-22 05:37:47.971203"]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.971010"], ["updated_at", "2020-04-22 05:37:47.971010"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.976114"], ["updated_at", "2020-04-22 05:37:47.976114"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.975386"], ["updated_at", "2020-04-22 05:37:47.975386"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.979694"], ["updated_at", "2020-04-22 05:37:47.979694"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.980086"], ["updated_at", "2020-04-22 05:37:47.980086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_664015


 (0.1ms)  begin transaction

CommentTest: test_161925


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.989517"], ["updated_at", "2020-04-22 05:37:47.989517"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.992152"], ["updated_at", "2020-04-22 05:37:47.992152"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:47.994977"], ["updated_at", "2020-04-22 05:37:47.994977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:47.991084"], ["updated_at", "2020-04-22 05:37:47.991084"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:47.998704"], ["updated_at", "2020-04-22 05:37:47.998704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.001165"], ["updated_at", "2020-04-22 05:37:48.001165"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_818372


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.007745"], ["updated_at", "2020-04-22 05:37:48.007745"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.012756"], ["updated_at", "2020-04-22 05:37:48.012756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_412059


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.015418"], ["updated_at", "2020-04-22 05:37:48.015418"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.018281"], ["updated_at", "2020-04-22 05:37:48.018281"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.022075"], ["updated_at", "2020-04-22 05:37:48.022075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.025262"], ["updated_at", "2020-04-22 05:37:48.025262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_728833


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.029043"], ["updated_at", "2020-04-22 05:37:48.029043"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.034241"], ["updated_at", "2020-04-22 05:37:48.034241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_242353


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.036143"], ["updated_at", "2020-04-22 05:37:48.036143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.037586"], ["updated_at", "2020-04-22 05:37:48.037586"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.041512"], ["updated_at", "2020-04-22 05:37:48.041512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.045515"], ["updated_at", "2020-04-22 05:37:48.045515"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_819030


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.049364"], ["updated_at", "2020-04-22 05:37:48.049364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.052747"], ["updated_at", "2020-04-22 05:37:48.052747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.056462"], ["updated_at", "2020-04-22 05:37:48.056462"]]

CommentTest: test_752542

 (0.1ms)  RELEASE SAVEPOINT active_record_1

Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.061695"], ["updated_at", "2020-04-22 05:37:48.061695"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.066452"], ["updated_at", "2020-04-22 05:37:48.066452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_144448


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.068836"], ["updated_at", "2020-04-22 05:37:48.068836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.068838"], ["updated_at", "2020-04-22 05:37:48.068838"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.071919"], ["updated_at", "2020-04-22 05:37:48.071919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.074537"], ["updated_at", "2020-04-22 05:37:48.074537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_225748


 (0.1ms)  begin transaction

CommentTest: test_733656


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.086521"], ["updated_at", "2020-04-22 05:37:48.086521"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.086802"], ["updated_at", "2020-04-22 05:37:48.086802"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.094208"], ["updated_at", "2020-04-22 05:37:48.094208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.095351"], ["updated_at", "2020-04-22 05:37:48.095351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.096562"], ["updated_at", "2020-04-22 05:37:48.096562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.097821"], ["updated_at", "2020-04-22 05:37:48.097821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_934054


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_918470


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.105228"], ["updated_at", "2020-04-22 05:37:48.105228"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.107376"], ["updated_at", "2020-04-22 05:37:48.107376"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.109074"], ["updated_at", "2020-04-22 05:37:48.109074"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.114189"], ["updated_at", "2020-04-22 05:37:48.114189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.116670"], ["updated_at", "2020-04-22 05:37:48.116670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.117845"], ["updated_at", "2020-04-22 05:37:48.117845"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  begin transaction

CommentTest: test_422190


 (3.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.129782"], ["updated_at", "2020-04-22 05:37:48.129782"]]
 (0.1ms)  begin transaction

CommentTest: test_351327


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.132996"], ["updated_at", "2020-04-22 05:37:48.132996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.133233"], ["updated_at", "2020-04-22 05:37:48.133233"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.135184"], ["updated_at", "2020-04-22 05:37:48.135184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.136188"], ["updated_at", "2020-04-22 05:37:48.136188"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.138874"], ["updated_at", "2020-04-22 05:37:48.138874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_65339


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.151668"], ["updated_at", "2020-04-22 05:37:48.151668"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.154082"], ["updated_at", "2020-04-22 05:37:48.154082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_168363


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.156469"], ["updated_at", "2020-04-22 05:37:48.156469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.160248"], ["updated_at", "2020-04-22 05:37:48.160248"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_518953


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.166435"], ["updated_at", "2020-04-22 05:37:48.166435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.170933"], ["updated_at", "2020-04-22 05:37:48.170933"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.174063"], ["updated_at", "2020-04-22 05:37:48.174063"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.174896"], ["updated_at", "2020-04-22 05:37:48.174896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.177328"], ["updated_at", "2020-04-22 05:37:48.177328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_880707


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.187730"], ["updated_at", "2020-04-22 05:37:48.187730"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.193003"], ["updated_at", "2020-04-22 05:37:48.193003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.196521"], ["updated_at", "2020-04-22 05:37:48.196521"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_252341


 (2.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_378224


Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.357987"], ["updated_at", "2020-04-22 05:37:48.357987"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.365773"], ["updated_at", "2020-04-22 05:37:48.365773"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.367514"], ["updated_at", "2020-04-22 05:37:48.367514"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.365368"], ["updated_at", "2020-04-22 05:37:48.365368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.369077"], ["updated_at", "2020-04-22 05:37:48.369077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.370994"], ["updated_at", "2020-04-22 05:37:48.370994"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_681489


 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.376563"], ["updated_at", "2020-04-22 05:37:48.376563"]]
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.382743"], ["updated_at", "2020-04-22 05:37:48.382743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_37513


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.385312"], ["updated_at", "2020-04-22 05:37:48.385312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.385178"], ["updated_at", "2020-04-22 05:37:48.385178"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.388061"], ["updated_at", "2020-04-22 05:37:48.388061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.2ms)  begin transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.390088"], ["updated_at", "2020-04-22 05:37:48.390088"]]

CommentTest: test_206890


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.396539"], ["updated_at", "2020-04-22 05:37:48.396539"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.400321"], ["updated_at", "2020-04-22 05:37:48.400321"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.401817"], ["updated_at", "2020-04-22 05:37:48.401817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_54633


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_720761


Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.407674"], ["updated_at", "2020-04-22 05:37:48.407674"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.416841"], ["updated_at", "2020-04-22 05:37:48.416841"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.417861"], ["updated_at", "2020-04-22 05:37:48.417861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.419694"], ["updated_at", "2020-04-22 05:37:48.419694"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.419687"], ["updated_at", "2020-04-22 05:37:48.419687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.421992"], ["updated_at", "2020-04-22 05:37:48.421992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_522906



CommentTest: test_331817


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.438708"], ["updated_at", "2020-04-22 05:37:48.438708"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.442205"], ["updated_at", "2020-04-22 05:37:48.442205"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.447041"], ["updated_at", "2020-04-22 05:37:48.447041"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.438704"], ["updated_at", "2020-04-22 05:37:48.438704"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.452910"], ["updated_at", "2020-04-22 05:37:48.452910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.455479"], ["updated_at", "2020-04-22 05:37:48.455479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  begin transaction

CommentTest: test_334848


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.464050"], ["updated_at", "2020-04-22 05:37:48.464050"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.467482"], ["updated_at", "2020-04-22 05:37:48.467482"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_197269


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.470311"], ["updated_at", "2020-04-22 05:37:48.470311"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.471569"], ["updated_at", "2020-04-22 05:37:48.471569"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.478828"], ["updated_at", "2020-04-22 05:37:48.478828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.482505"], ["updated_at", "2020-04-22 05:37:48.482505"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_769986


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.484440"], ["updated_at", "2020-04-22 05:37:48.484440"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.486364"], ["updated_at", "2020-04-22 05:37:48.486364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.488095"], ["updated_at", "2020-04-22 05:37:48.488095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_364473


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.492042"], ["updated_at", "2020-04-22 05:37:48.492042"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.499874"], ["updated_at", "2020-04-22 05:37:48.499874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.502243"], ["updated_at", "2020-04-22 05:37:48.502243"]]
 (0.1ms)  begin transaction

CommentTest: test_515698


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.503924"], ["updated_at", "2020-04-22 05:37:48.503924"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.507077"], ["updated_at", "2020-04-22 05:37:48.507077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.5ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.518254"], ["updated_at", "2020-04-22 05:37:48.518254"]]
 (274.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_204846


 (1.4ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.829659"], ["updated_at", "2020-04-22 05:37:48.829659"]]
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_836533


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:48.864362"], ["updated_at", "2020-04-22 05:37:48.864362"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:48.873763"], ["updated_at", "2020-04-22 05:37:48.873763"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  SAVEPOINT active_record_1
Course Create (7.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:48.903802"], ["updated_at", "2020-04-22 05:37:48.903802"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.003156"], ["updated_at", "2020-04-22 05:37:49.003156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.015479"], ["updated_at", "2020-04-22 05:37:49.015479"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_549486


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.084252"], ["updated_at", "2020-04-22 05:37:49.084252"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.094532"], ["updated_at", "2020-04-22 05:37:49.094532"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (5.1ms)  begin transaction

CommentTest: test_993383


 (6.0ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.122950"], ["updated_at", "2020-04-22 05:37:49.122950"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.147334"], ["updated_at", "2020-04-22 05:37:49.147334"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.239687"], ["updated_at", "2020-04-22 05:37:49.239687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_245265


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.304486"], ["updated_at", "2020-04-22 05:37:49.304486"]]
Recording Create (9.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.277399"], ["updated_at", "2020-04-22 05:37:49.277399"]]
 (11.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.483351"], ["updated_at", "2020-04-22 05:37:49.483351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (114.5ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_775098


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (8.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.492123"], ["updated_at", "2020-04-22 05:37:49.492123"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (46.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.529763"], ["updated_at", "2020-04-22 05:37:49.529763"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.592308"], ["updated_at", "2020-04-22 05:37:49.592308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.3ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.604499"], ["updated_at", "2020-04-22 05:37:49.604499"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction

CommentTest: test_947970


 (0.5ms)  SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.666786"], ["updated_at", "2020-04-22 05:37:49.666786"]]
Bucket Create (7.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.683538"], ["updated_at", "2020-04-22 05:37:49.683538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (13.8ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.697619"], ["updated_at", "2020-04-22 05:37:49.697619"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_783371


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.759815"], ["updated_at", "2020-04-22 05:37:49.759815"]]
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.837910"], ["updated_at", "2020-04-22 05:37:49.837910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (11.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_251776


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (49.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.862737"], ["updated_at", "2020-04-22 05:37:49.862737"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (45.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:49.884159"], ["updated_at", "2020-04-22 05:37:49.884159"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:49.938831"], ["updated_at", "2020-04-22 05:37:49.938831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:49.954486"], ["updated_at", "2020-04-22 05:37:49.954486"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_154629


 (0.3ms)  begin transaction

CommentTest: test_861944


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.056025"], ["updated_at", "2020-04-22 05:37:50.056025"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.044142"], ["updated_at", "2020-04-22 05:37:50.044142"]]
Bucket Create (4.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.071147"], ["updated_at", "2020-04-22 05:37:50.071147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.075138"], ["updated_at", "2020-04-22 05:37:50.075138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.140632"], ["updated_at", "2020-04-22 05:37:50.140632"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.243598"], ["updated_at", "2020-04-22 05:37:50.243598"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (29.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (5.9ms)  rollback transaction
 (13.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_514268


 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_859602


 (0.3ms)  SAVEPOINT active_record_1
Course Create (15.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.320950"], ["updated_at", "2020-04-22 05:37:50.320950"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.354799"], ["updated_at", "2020-04-22 05:37:50.354799"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.299187"], ["updated_at", "2020-04-22 05:37:50.299187"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.396810"], ["updated_at", "2020-04-22 05:37:50.396810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.417258"], ["updated_at", "2020-04-22 05:37:50.417258"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.439308"], ["updated_at", "2020-04-22 05:37:50.439308"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (6.7ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_715317


 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_194981


Course Create (15.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.601146"], ["updated_at", "2020-04-22 05:37:50.601146"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.622768"], ["updated_at", "2020-04-22 05:37:50.622768"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.634043"], ["updated_at", "2020-04-22 05:37:50.634043"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.628143"], ["updated_at", "2020-04-22 05:37:50.628143"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.705092"], ["updated_at", "2020-04-22 05:37:50.705092"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (7.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.786524"], ["updated_at", "2020-04-22 05:37:50.786524"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (17.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  begin transaction

CommentTest: test_266679


 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (8.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_759916


 (0.4ms)  SAVEPOINT active_record_1
Course Create (9.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.901514"], ["updated_at", "2020-04-22 05:37:50.901514"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.924829"], ["updated_at", "2020-04-22 05:37:50.924829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (58.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:50.880508"], ["updated_at", "2020-04-22 05:37:50.880508"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:50.976466"], ["updated_at", "2020-04-22 05:37:50.976466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.044824"], ["updated_at", "2020-04-22 05:37:51.044824"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (164.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:50.938166"], ["updated_at", "2020-04-22 05:37:50.938166"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_911178


 (2.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_997277


 (134.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.166086"], ["updated_at", "2020-04-22 05:37:51.166086"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.143953"], ["updated_at", "2020-04-22 05:37:51.143953"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.334148"], ["updated_at", "2020-04-22 05:37:51.334148"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.348364"], ["updated_at", "2020-04-22 05:37:51.348364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.350772"], ["updated_at", "2020-04-22 05:37:51.350772"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.356719"], ["updated_at", "2020-04-22 05:37:51.356719"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (5.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_76882


 (0.3ms)  begin transaction

CommentTest: test_268793


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.449867"], ["updated_at", "2020-04-22 05:37:51.449867"]]
Course Create (72.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.445987"], ["updated_at", "2020-04-22 05:37:51.445987"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.534385"], ["updated_at", "2020-04-22 05:37:51.534385"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.576791"], ["updated_at", "2020-04-22 05:37:51.576791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.595470"], ["updated_at", "2020-04-22 05:37:51.595470"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.588387"], ["updated_at", "2020-04-22 05:37:51.588387"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (26.7ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (23.9ms)  rollback transaction
 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_902197


 (0.3ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_302577


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.745788"], ["updated_at", "2020-04-22 05:37:51.745788"]]
Course Create (28.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:51.737669"], ["updated_at", "2020-04-22 05:37:51.737669"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.842554"], ["updated_at", "2020-04-22 05:37:51.842554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:51.761190"], ["updated_at", "2020-04-22 05:37:51.761190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (13.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.852548"], ["updated_at", "2020-04-22 05:37:51.852548"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:51.894986"], ["updated_at", "2020-04-22 05:37:51.894986"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  rollback transaction
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_330852


 (0.3ms)  begin transaction

CommentTest: test_529774


 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.021498"], ["updated_at", "2020-04-22 05:37:52.021498"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.039097"], ["updated_at", "2020-04-22 05:37:52.039097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.034895"], ["updated_at", "2020-04-22 05:37:52.034895"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.056054"], ["updated_at", "2020-04-22 05:37:52.056054"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.127944"], ["updated_at", "2020-04-22 05:37:52.127944"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.157456"], ["updated_at", "2020-04-22 05:37:52.157456"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (7.8ms)  rollback transaction
 (9.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_56129


 (0.3ms)  SAVEPOINT active_record_1
 (2.0ms)  begin transaction

CommentTest: test_871310


 (0.3ms)  SAVEPOINT active_record_1
Course Create (90.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.231143"], ["updated_at", "2020-04-22 05:37:52.231143"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.350785"], ["updated_at", "2020-04-22 05:37:52.350785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.270305"], ["updated_at", "2020-04-22 05:37:52.270305"]]
Bucket Create (32.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.364177"], ["updated_at", "2020-04-22 05:37:52.364177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.401252"], ["updated_at", "2020-04-22 05:37:52.401252"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.409082"], ["updated_at", "2020-04-22 05:37:52.409082"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_913080


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.470611"], ["updated_at", "2020-04-22 05:37:52.470611"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_580332


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.513257"], ["updated_at", "2020-04-22 05:37:52.513257"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.532038"], ["updated_at", "2020-04-22 05:37:52.532038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.552747"], ["updated_at", "2020-04-22 05:37:52.552747"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.581933"], ["updated_at", "2020-04-22 05:37:52.581933"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.598305"], ["updated_at", "2020-04-22 05:37:52.598305"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (68.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_536723


 (39.1ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.768360"], ["updated_at", "2020-04-22 05:37:52.768360"]]
 (3.2ms)  begin transaction

CommentTest: test_101747


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.793883"], ["updated_at", "2020-04-22 05:37:52.793883"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.803009"], ["updated_at", "2020-04-22 05:37:52.803009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.813143"], ["updated_at", "2020-04-22 05:37:52.813143"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_767100


Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:52.782102"], ["updated_at", "2020-04-22 05:37:52.782102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:52.902006"], ["updated_at", "2020-04-22 05:37:52.902006"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (16.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:52.857670"], ["updated_at", "2020-04-22 05:37:52.857670"]]
 (18.1ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.014939"], ["updated_at", "2020-04-22 05:37:53.014939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_895791


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.025369"], ["updated_at", "2020-04-22 05:37:53.025369"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.032441"], ["updated_at", "2020-04-22 05:37:53.032441"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.047881"], ["updated_at", "2020-04-22 05:37:53.047881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_80385


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.067102"], ["updated_at", "2020-04-22 05:37:53.067102"]]
Recording Create (41.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.056600"], ["updated_at", "2020-04-22 05:37:53.056600"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.148644"], ["updated_at", "2020-04-22 05:37:53.148644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.156786"], ["updated_at", "2020-04-22 05:37:53.156786"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_379770


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.209458"], ["updated_at", "2020-04-22 05:37:53.209458"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.218474"], ["updated_at", "2020-04-22 05:37:53.218474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.231785"], ["updated_at", "2020-04-22 05:37:53.231785"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
 (1.1ms)  begin transaction

CommentTest: test_684514


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.266608"], ["updated_at", "2020-04-22 05:37:53.266608"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.278405"], ["updated_at", "2020-04-22 05:37:53.278405"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (37.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_915050


 (0.6ms)  SAVEPOINT active_record_1
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.320000"], ["updated_at", "2020-04-22 05:37:53.320000"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.336444"], ["updated_at", "2020-04-22 05:37:53.336444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.380383"], ["updated_at", "2020-04-22 05:37:53.380383"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_100522


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (10.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.396408"], ["updated_at", "2020-04-22 05:37:53.396408"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (19.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (75.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.425027"], ["updated_at", "2020-04-22 05:37:53.425027"]]
 (9.6ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_882882


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.526723"], ["updated_at", "2020-04-22 05:37:53.526723"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.512110"], ["updated_at", "2020-04-22 05:37:53.512110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.536516"], ["updated_at", "2020-04-22 05:37:53.536516"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.541779"], ["updated_at", "2020-04-22 05:37:53.541779"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.618673"], ["updated_at", "2020-04-22 05:37:53.618673"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_600671


 (0.9ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.648292"], ["updated_at", "2020-04-22 05:37:53.648292"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (24.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_181483


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.742176"], ["updated_at", "2020-04-22 05:37:53.742176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.753240"], ["updated_at", "2020-04-22 05:37:53.753240"]]
Course Create (42.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.730842"], ["updated_at", "2020-04-22 05:37:53.730842"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.794549"], ["updated_at", "2020-04-22 05:37:53.794549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.837323"], ["updated_at", "2020-04-22 05:37:53.837323"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_238406


 (2.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.910680"], ["updated_at", "2020-04-22 05:37:53.910680"]]
 (10.6ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.922040"], ["updated_at", "2020-04-22 05:37:53.922040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.932529"], ["updated_at", "2020-04-22 05:37:53.932529"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_463115


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:53.955251"], ["updated_at", "2020-04-22 05:37:53.955251"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:53.967694"], ["updated_at", "2020-04-22 05:37:53.967694"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:53.981286"], ["updated_at", "2020-04-22 05:37:53.981286"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (10.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (26.0ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction


CommentTest: test_37597 CommentTest: test_905468



 (0.7ms)  SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Course Create (14.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.163444"], ["updated_at", "2020-04-22 05:37:54.163444"]]
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.166804"], ["updated_at", "2020-04-22 05:37:54.166804"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.190924"], ["updated_at", "2020-04-22 05:37:54.190924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.191419"], ["updated_at", "2020-04-22 05:37:54.191419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.197658"], ["updated_at", "2020-04-22 05:37:54.197658"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (10.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.233211"], ["updated_at", "2020-04-22 05:37:54.233211"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (12.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_202368


 (0.6ms)  SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (3.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_692855


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.344444"], ["updated_at", "2020-04-22 05:37:54.344444"]]
Course Create (52.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.295847"], ["updated_at", "2020-04-22 05:37:54.295847"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.357824"], ["updated_at", "2020-04-22 05:37:54.357824"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.398883"], ["updated_at", "2020-04-22 05:37:54.398883"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (77.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.357534"], ["updated_at", "2020-04-22 05:37:54.357534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.442069"], ["updated_at", "2020-04-22 05:37:54.442069"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (46.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.8ms)  rollback transaction
 (11.4ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_567456


 (1.8ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_313078


Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.541139"], ["updated_at", "2020-04-22 05:37:54.541139"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.553355"], ["updated_at", "2020-04-22 05:37:54.553355"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.551785"], ["updated_at", "2020-04-22 05:37:54.551785"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.560617"], ["updated_at", "2020-04-22 05:37:54.560617"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.563779"], ["updated_at", "2020-04-22 05:37:54.563779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.575329"], ["updated_at", "2020-04-22 05:37:54.575329"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (163.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.3ms)  rollback transaction
 (8.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_571515


 (0.1ms)  begin transaction

CommentTest: test_41512


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.755495"], ["updated_at", "2020-04-22 05:37:54.755495"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.758668"], ["updated_at", "2020-04-22 05:37:54.758668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.756369"], ["updated_at", "2020-04-22 05:37:54.756369"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.760641"], ["updated_at", "2020-04-22 05:37:54.760641"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.760956"], ["updated_at", "2020-04-22 05:37:54.760956"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.765117"], ["updated_at", "2020-04-22 05:37:54.765117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (14.0ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_281278



CommentTest: test_487872


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.797770"], ["updated_at", "2020-04-22 05:37:54.797770"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.797847"], ["updated_at", "2020-04-22 05:37:54.797847"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.800464"], ["updated_at", "2020-04-22 05:37:54.800464"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.800817"], ["updated_at", "2020-04-22 05:37:54.800817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.802982"], ["updated_at", "2020-04-22 05:37:54.802982"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.803046"], ["updated_at", "2020-04-22 05:37:54.803046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_808231


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.814621"], ["updated_at", "2020-04-22 05:37:54.814621"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.820178"], ["updated_at", "2020-04-22 05:37:54.820178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.824685"], ["updated_at", "2020-04-22 05:37:54.824685"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_232653


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.840313"], ["updated_at", "2020-04-22 05:37:54.840313"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.848404"], ["updated_at", "2020-04-22 05:37:54.848404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.851651"], ["updated_at", "2020-04-22 05:37:54.851651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_380138


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.868735"], ["updated_at", "2020-04-22 05:37:54.868735"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.872299"], ["updated_at", "2020-04-22 05:37:54.872299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_397999


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.874775"], ["updated_at", "2020-04-22 05:37:54.874775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.877499"], ["updated_at", "2020-04-22 05:37:54.877499"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.881175"], ["updated_at", "2020-04-22 05:37:54.881175"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_34552


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.883660"], ["updated_at", "2020-04-22 05:37:54.883660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.883093"], ["updated_at", "2020-04-22 05:37:54.883093"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.888004"], ["updated_at", "2020-04-22 05:37:54.888004"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_388371

Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.890204"], ["updated_at", "2020-04-22 05:37:54.890204"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.892735"], ["updated_at", "2020-04-22 05:37:54.892735"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.897545"], ["updated_at", "2020-04-22 05:37:54.897545"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_495897


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.899406"], ["updated_at", "2020-04-22 05:37:54.899406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.900962"], ["updated_at", "2020-04-22 05:37:54.900962"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.904078"], ["updated_at", "2020-04-22 05:37:54.904078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.906097"], ["updated_at", "2020-04-22 05:37:54.906097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_562321


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.912203"], ["updated_at", "2020-04-22 05:37:54.912203"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.916538"], ["updated_at", "2020-04-22 05:37:54.916538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_154734


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.918643"], ["updated_at", "2020-04-22 05:37:54.918643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.920631"], ["updated_at", "2020-04-22 05:37:54.920631"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.925424"], ["updated_at", "2020-04-22 05:37:54.925424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_346570


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.928237"], ["updated_at", "2020-04-22 05:37:54.928237"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.929141"], ["updated_at", "2020-04-22 05:37:54.929141"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.932141"], ["updated_at", "2020-04-22 05:37:54.932141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.935620"], ["updated_at", "2020-04-22 05:37:54.935620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_344250


 (2.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.945752"], ["updated_at", "2020-04-22 05:37:54.945752"]]
 (0.1ms)  begin transaction

CommentTest: test_871792


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.949112"], ["updated_at", "2020-04-22 05:37:54.949112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.949427"], ["updated_at", "2020-04-22 05:37:54.949427"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.951436"], ["updated_at", "2020-04-22 05:37:54.951436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.952208"], ["updated_at", "2020-04-22 05:37:54.952208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.954722"], ["updated_at", "2020-04-22 05:37:54.954722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_583110


 (0.1ms)  begin transaction

CommentTest: test_141784


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.963877"], ["updated_at", "2020-04-22 05:37:54.963877"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.967544"], ["updated_at", "2020-04-22 05:37:54.967544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.964572"], ["updated_at", "2020-04-22 05:37:54.964572"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.970488"], ["updated_at", "2020-04-22 05:37:54.970488"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.971881"], ["updated_at", "2020-04-22 05:37:54.971881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.973907"], ["updated_at", "2020-04-22 05:37:54.973907"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_580905


 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_292338


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.983191"], ["updated_at", "2020-04-22 05:37:54.983191"]]
 (8.8ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.986570"], ["updated_at", "2020-04-22 05:37:54.986570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:54.985842"], ["updated_at", "2020-04-22 05:37:54.985842"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:54.997993"], ["updated_at", "2020-04-22 05:37:54.997993"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.000345"], ["updated_at", "2020-04-22 05:37:55.000345"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.9ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (11.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:54.996634"], ["updated_at", "2020-04-22 05:37:54.996634"]]
 (0.6ms)  rollback transaction
 (2.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_766510


Bucket Load (17.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (48.7ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.098685"], ["updated_at", "2020-04-22 05:37:55.098685"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.102179"], ["updated_at", "2020-04-22 05:37:55.102179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  begin transaction

CommentTest: test_779696


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.109234"], ["updated_at", "2020-04-22 05:37:55.109234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (18.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.109175"], ["updated_at", "2020-04-22 05:37:55.109175"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.132580"], ["updated_at", "2020-04-22 05:37:55.132580"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.134801"], ["updated_at", "2020-04-22 05:37:55.134801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_190251


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.160603"], ["updated_at", "2020-04-22 05:37:55.160603"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.163088"], ["updated_at", "2020-04-22 05:37:55.163088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.164830"], ["updated_at", "2020-04-22 05:37:55.164830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_362153


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.180381"], ["updated_at", "2020-04-22 05:37:55.180381"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.183530"], ["updated_at", "2020-04-22 05:37:55.183530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.185847"], ["updated_at", "2020-04-22 05:37:55.185847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (63.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_301473


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.212623"], ["updated_at", "2020-04-22 05:37:55.212623"]]
 (0.1ms)  begin transaction

CommentTest: test_526962


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.216805"], ["updated_at", "2020-04-22 05:37:55.216805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.219029"], ["updated_at", "2020-04-22 05:37:55.219029"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.218789"], ["updated_at", "2020-04-22 05:37:55.218789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.221811"], ["updated_at", "2020-04-22 05:37:55.221811"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.226092"], ["updated_at", "2020-04-22 05:37:55.226092"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_543877


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.237413"], ["updated_at", "2020-04-22 05:37:55.237413"]]
 (0.1ms)  begin transaction

CommentTest: test_173032


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.241967"], ["updated_at", "2020-04-22 05:37:55.241967"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.244960"], ["updated_at", "2020-04-22 05:37:55.244960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.247013"], ["updated_at", "2020-04-22 05:37:55.247013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_399615


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.264027"], ["updated_at", "2020-04-22 05:37:55.264027"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.267317"], ["updated_at", "2020-04-22 05:37:55.267317"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.270017"], ["updated_at", "2020-04-22 05:37:55.270017"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.271332"], ["updated_at", "2020-04-22 05:37:55.271332"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.277786"], ["updated_at", "2020-04-22 05:37:55.277786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_260551


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.286086"], ["updated_at", "2020-04-22 05:37:55.286086"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.289140"], ["updated_at", "2020-04-22 05:37:55.289140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_4420


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.293586"], ["updated_at", "2020-04-22 05:37:55.293586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.294713"], ["updated_at", "2020-04-22 05:37:55.294713"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.299186"], ["updated_at", "2020-04-22 05:37:55.299186"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.301514"], ["updated_at", "2020-04-22 05:37:55.301514"]]
 (0.2ms)  begin transaction

CommentTest: test_964669


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.304666"], ["updated_at", "2020-04-22 05:37:55.304666"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.309568"], ["updated_at", "2020-04-22 05:37:55.309568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.311901"], ["updated_at", "2020-04-22 05:37:55.311901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_522961


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.321204"], ["updated_at", "2020-04-22 05:37:55.321204"]]
 (0.1ms)  begin transaction

CommentTest: test_47747


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.324983"], ["updated_at", "2020-04-22 05:37:55.324983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.327048"], ["updated_at", "2020-04-22 05:37:55.327048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.326777"], ["updated_at", "2020-04-22 05:37:55.326777"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.329452"], ["updated_at", "2020-04-22 05:37:55.329452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.331861"], ["updated_at", "2020-04-22 05:37:55.331861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_433400


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.335747"], ["updated_at", "2020-04-22 05:37:55.335747"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.342349"], ["updated_at", "2020-04-22 05:37:55.342349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.345481"], ["updated_at", "2020-04-22 05:37:55.345481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_460824


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.360717"], ["updated_at", "2020-04-22 05:37:55.360717"]]
 (3.0ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_179062


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.375438"], ["updated_at", "2020-04-22 05:37:55.375438"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.381897"], ["updated_at", "2020-04-22 05:37:55.381897"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.387240"], ["updated_at", "2020-04-22 05:37:55.387240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_723910


Bucket Create (40.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.363845"], ["updated_at", "2020-04-22 05:37:55.363845"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.402392"], ["updated_at", "2020-04-22 05:37:55.402392"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.409744"], ["updated_at", "2020-04-22 05:37:55.409744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.409526"], ["updated_at", "2020-04-22 05:37:55.409526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.411956"], ["updated_at", "2020-04-22 05:37:55.411956"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_248055


CommentTest: test_986577


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.420905"], ["updated_at", "2020-04-22 05:37:55.420905"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.420564"], ["updated_at", "2020-04-22 05:37:55.420564"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.423636"], ["updated_at", "2020-04-22 05:37:55.423636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.423620"], ["updated_at", "2020-04-22 05:37:55.423620"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.429623"], ["updated_at", "2020-04-22 05:37:55.429623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.431140"], ["updated_at", "2020-04-22 05:37:55.431140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_16083


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.437979"], ["updated_at", "2020-04-22 05:37:55.437979"]]
 (0.1ms)  begin transaction

CommentTest: test_212965


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.441859"], ["updated_at", "2020-04-22 05:37:55.441859"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.444387"], ["updated_at", "2020-04-22 05:37:55.444387"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.444054"], ["updated_at", "2020-04-22 05:37:55.444054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.447402"], ["updated_at", "2020-04-22 05:37:55.447402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.449563"], ["updated_at", "2020-04-22 05:37:55.449563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_252077


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.455628"], ["updated_at", "2020-04-22 05:37:55.455628"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.459528"], ["updated_at", "2020-04-22 05:37:55.459528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_484538


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.461478"], ["updated_at", "2020-04-22 05:37:55.461478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.463358"], ["updated_at", "2020-04-22 05:37:55.463358"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.466909"], ["updated_at", "2020-04-22 05:37:55.466909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.469131"], ["updated_at", "2020-04-22 05:37:55.469131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_917366


 (0.1ms)  begin transaction

CommentTest: test_921411


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.529587"], ["updated_at", "2020-04-22 05:37:55.529587"]]
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.528933"], ["updated_at", "2020-04-22 05:37:55.528933"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.537867"], ["updated_at", "2020-04-22 05:37:55.537867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.537867"], ["updated_at", "2020-04-22 05:37:55.537867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.544580"], ["updated_at", "2020-04-22 05:37:55.544580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.540043"], ["updated_at", "2020-04-22 05:37:55.540043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_682771


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.558053"], ["updated_at", "2020-04-22 05:37:55.558053"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.562177"], ["updated_at", "2020-04-22 05:37:55.562177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.564026"], ["updated_at", "2020-04-22 05:37:55.564026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_758147


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.575118"], ["updated_at", "2020-04-22 05:37:55.575118"]]
 (0.1ms)  begin transaction

CommentTest: test_267991


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.577869"], ["updated_at", "2020-04-22 05:37:55.577869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.577779"], ["updated_at", "2020-04-22 05:37:55.577779"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.580442"], ["updated_at", "2020-04-22 05:37:55.580442"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.580831"], ["updated_at", "2020-04-22 05:37:55.580831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.585251"], ["updated_at", "2020-04-22 05:37:55.585251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_218903


 (5.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_850715


Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.596892"], ["updated_at", "2020-04-22 05:37:55.596892"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.599888"], ["updated_at", "2020-04-22 05:37:55.599888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.599315"], ["updated_at", "2020-04-22 05:37:55.599315"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.601642"], ["updated_at", "2020-04-22 05:37:55.601642"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.601910"], ["updated_at", "2020-04-22 05:37:55.601910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.604500"], ["updated_at", "2020-04-22 05:37:55.604500"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_835372


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.611301"], ["updated_at", "2020-04-22 05:37:55.611301"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_103623


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.614669"], ["updated_at", "2020-04-22 05:37:55.614669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.616834"], ["updated_at", "2020-04-22 05:37:55.616834"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.618851"], ["updated_at", "2020-04-22 05:37:55.618851"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.619220"], ["updated_at", "2020-04-22 05:37:55.619220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.622074"], ["updated_at", "2020-04-22 05:37:55.622074"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_355086


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.641587"], ["updated_at", "2020-04-22 05:37:55.641587"]]
 (24.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.651146"], ["updated_at", "2020-04-22 05:37:55.651146"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.653567"], ["updated_at", "2020-04-22 05:37:55.653567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_752269


 (0.1ms)  begin transaction

CommentTest: test_924423


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.665106"], ["updated_at", "2020-04-22 05:37:55.665106"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.668998"], ["updated_at", "2020-04-22 05:37:55.668998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.671066"], ["updated_at", "2020-04-22 05:37:55.671066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.664059"], ["updated_at", "2020-04-22 05:37:55.664059"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.679151"], ["updated_at", "2020-04-22 05:37:55.679151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.682765"], ["updated_at", "2020-04-22 05:37:55.682765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (7.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_948595


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.702171"], ["updated_at", "2020-04-22 05:37:55.702171"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.713750"], ["updated_at", "2020-04-22 05:37:55.713750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.720735"], ["updated_at", "2020-04-22 05:37:55.720735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (1.5ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_376818



CommentTest: test_641393


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.788852"], ["updated_at", "2020-04-22 05:37:55.788852"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.788734"], ["updated_at", "2020-04-22 05:37:55.788734"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.793630"], ["updated_at", "2020-04-22 05:37:55.793630"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.795740"], ["updated_at", "2020-04-22 05:37:55.795740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.797111"], ["updated_at", "2020-04-22 05:37:55.797111"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_825387


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.799290"], ["updated_at", "2020-04-22 05:37:55.799290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.804850"], ["updated_at", "2020-04-22 05:37:55.804850"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.810479"], ["updated_at", "2020-04-22 05:37:55.810479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.814858"], ["updated_at", "2020-04-22 05:37:55.814858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_725473


 (0.1ms)  begin transaction

CommentTest: test_886282


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.825603"], ["updated_at", "2020-04-22 05:37:55.825603"]]
 (1.5ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.828242"], ["updated_at", "2020-04-22 05:37:55.828242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.824079"], ["updated_at", "2020-04-22 05:37:55.824079"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.831479"], ["updated_at", "2020-04-22 05:37:55.831479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.831210"], ["updated_at", "2020-04-22 05:37:55.831210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.833721"], ["updated_at", "2020-04-22 05:37:55.833721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_852365


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.851156"], ["updated_at", "2020-04-22 05:37:55.851156"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.854071"], ["updated_at", "2020-04-22 05:37:55.854071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.856308"], ["updated_at", "2020-04-22 05:37:55.856308"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (13.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.5ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.5ms)  begin transaction

CommentTest: test_871209


 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_884844


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.890845"], ["updated_at", "2020-04-22 05:37:55.890845"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.897514"], ["updated_at", "2020-04-22 05:37:55.897514"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.900375"], ["updated_at", "2020-04-22 05:37:55.900375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.899159"], ["updated_at", "2020-04-22 05:37:55.899159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.902592"], ["updated_at", "2020-04-22 05:37:55.902592"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.902884"], ["updated_at", "2020-04-22 05:37:55.902884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_836266


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.913243"], ["updated_at", "2020-04-22 05:37:55.913243"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.918005"], ["updated_at", "2020-04-22 05:37:55.918005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.920383"], ["updated_at", "2020-04-22 05:37:55.920383"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_293400


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.930656"], ["updated_at", "2020-04-22 05:37:55.930656"]]
 (2.0ms)  begin transaction

CommentTest: test_499376


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.934886"], ["updated_at", "2020-04-22 05:37:55.934886"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.933664"], ["updated_at", "2020-04-22 05:37:55.933664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.937933"], ["updated_at", "2020-04-22 05:37:55.937933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.938346"], ["updated_at", "2020-04-22 05:37:55.938346"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.940277"], ["updated_at", "2020-04-22 05:37:55.940277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_288208


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.952782"], ["updated_at", "2020-04-22 05:37:55.952782"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.955943"], ["updated_at", "2020-04-22 05:37:55.955943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.960161"], ["updated_at", "2020-04-22 05:37:55.960161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_762733


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:55.994819"], ["updated_at", "2020-04-22 05:37:55.994819"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:55.997289"], ["updated_at", "2020-04-22 05:37:55.997289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:55.999427"], ["updated_at", "2020-04-22 05:37:55.999427"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_557966


 (0.1ms)  begin transaction

CommentTest: test_133129


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.011661"], ["updated_at", "2020-04-22 05:37:56.011661"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.007695"], ["updated_at", "2020-04-22 05:37:56.007695"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.014443"], ["updated_at", "2020-04-22 05:37:56.014443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.015224"], ["updated_at", "2020-04-22 05:37:56.015224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.017044"], ["updated_at", "2020-04-22 05:37:56.017044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.016879"], ["updated_at", "2020-04-22 05:37:56.016879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_290476


 (0.1ms)  begin transaction

CommentTest: test_969698


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.028125"], ["updated_at", "2020-04-22 05:37:56.028125"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.029953"], ["updated_at", "2020-04-22 05:37:56.029953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.029617"], ["updated_at", "2020-04-22 05:37:56.029617"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.031843"], ["updated_at", "2020-04-22 05:37:56.031843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.032212"], ["updated_at", "2020-04-22 05:37:56.032212"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.034115"], ["updated_at", "2020-04-22 05:37:56.034115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_614980


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.040606"], ["updated_at", "2020-04-22 05:37:56.040606"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.044810"], ["updated_at", "2020-04-22 05:37:56.044810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.048546"], ["updated_at", "2020-04-22 05:37:56.048546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_563158


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.065518"], ["updated_at", "2020-04-22 05:37:56.065518"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.068534"], ["updated_at", "2020-04-22 05:37:56.068534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.071401"], ["updated_at", "2020-04-22 05:37:56.071401"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_642983


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.077830"], ["updated_at", "2020-04-22 05:37:56.077830"]]
 (0.1ms)  begin transaction

CommentTest: test_663923


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.082526"], ["updated_at", "2020-04-22 05:37:56.082526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.082189"], ["updated_at", "2020-04-22 05:37:56.082189"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.084962"], ["updated_at", "2020-04-22 05:37:56.084962"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.084526"], ["updated_at", "2020-04-22 05:37:56.084526"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.087339"], ["updated_at", "2020-04-22 05:37:56.087339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_35824


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.115701"], ["updated_at", "2020-04-22 05:37:56.115701"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.118439"], ["updated_at", "2020-04-22 05:37:56.118439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.120454"], ["updated_at", "2020-04-22 05:37:56.120454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (28.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_736763


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.132485"], ["updated_at", "2020-04-22 05:37:56.132485"]]
 (0.1ms)  begin transaction

CommentTest: test_765402


Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.138781"], ["updated_at", "2020-04-22 05:37:56.138781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.144967"], ["updated_at", "2020-04-22 05:37:56.144967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.139353"], ["updated_at", "2020-04-22 05:37:56.139353"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_851143


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.156212"], ["updated_at", "2020-04-22 05:37:56.156212"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.163369"], ["updated_at", "2020-04-22 05:37:56.163369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.165839"], ["updated_at", "2020-04-22 05:37:56.165839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_842528


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.181744"], ["updated_at", "2020-04-22 05:37:56.181744"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.185277"], ["updated_at", "2020-04-22 05:37:56.185277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.188995"], ["updated_at", "2020-04-22 05:37:56.188995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.148103"], ["updated_at", "2020-04-22 05:37:56.148103"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.197735"], ["updated_at", "2020-04-22 05:37:56.197735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (10.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_304964


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.221796"], ["updated_at", "2020-04-22 05:37:56.221796"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.228180"], ["updated_at", "2020-04-22 05:37:56.228180"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.230411"], ["updated_at", "2020-04-22 05:37:56.230411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_150424


 (0.1ms)  begin transaction

CommentTest: test_402447


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.244647"], ["updated_at", "2020-04-22 05:37:56.244647"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.247117"], ["updated_at", "2020-04-22 05:37:56.247117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.245037"], ["updated_at", "2020-04-22 05:37:56.245037"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.249501"], ["updated_at", "2020-04-22 05:37:56.249501"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.249401"], ["updated_at", "2020-04-22 05:37:56.249401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.252003"], ["updated_at", "2020-04-22 05:37:56.252003"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_933475


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.261786"], ["updated_at", "2020-04-22 05:37:56.261786"]]
 (0.1ms)  begin transaction

CommentTest: test_367044


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.265654"], ["updated_at", "2020-04-22 05:37:56.265654"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.265622"], ["updated_at", "2020-04-22 05:37:56.265622"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.268229"], ["updated_at", "2020-04-22 05:37:56.268229"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.270127"], ["updated_at", "2020-04-22 05:37:56.270127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.272809"], ["updated_at", "2020-04-22 05:37:56.272809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_755924

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.287018"], ["updated_at", "2020-04-22 05:37:56.287018"]]
 (1.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.290112"], ["updated_at", "2020-04-22 05:37:56.290112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_689649


Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.293775"], ["updated_at", "2020-04-22 05:37:56.293775"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.295846"], ["updated_at", "2020-04-22 05:37:56.295846"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.300014"], ["updated_at", "2020-04-22 05:37:56.300014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.302296"], ["updated_at", "2020-04-22 05:37:56.302296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_940686


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.315138"], ["updated_at", "2020-04-22 05:37:56.315138"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.320891"], ["updated_at", "2020-04-22 05:37:56.320891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.328483"], ["updated_at", "2020-04-22 05:37:56.328483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_499907


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.337221"], ["updated_at", "2020-04-22 05:37:56.337221"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.343232"], ["updated_at", "2020-04-22 05:37:56.343232"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.346098"], ["updated_at", "2020-04-22 05:37:56.346098"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_467564


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.361879"], ["updated_at", "2020-04-22 05:37:56.361879"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.364812"], ["updated_at", "2020-04-22 05:37:56.364812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.366871"], ["updated_at", "2020-04-22 05:37:56.366871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (9.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_550012


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.377063"], ["updated_at", "2020-04-22 05:37:56.377063"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.380436"], ["updated_at", "2020-04-22 05:37:56.380436"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.382779"], ["updated_at", "2020-04-22 05:37:56.382779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_560711


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_191645


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.395712"], ["updated_at", "2020-04-22 05:37:56.395712"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.389748"], ["updated_at", "2020-04-22 05:37:56.389748"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.402592"], ["updated_at", "2020-04-22 05:37:56.402592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.407291"], ["updated_at", "2020-04-22 05:37:56.407291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.407068"], ["updated_at", "2020-04-22 05:37:56.407068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.414739"], ["updated_at", "2020-04-22 05:37:56.414739"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_696941


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.418551"], ["updated_at", "2020-04-22 05:37:56.418551"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.421090"], ["updated_at", "2020-04-22 05:37:56.421090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.427485"], ["updated_at", "2020-04-22 05:37:56.427485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_118386


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.431426"], ["updated_at", "2020-04-22 05:37:56.431426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_935049


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.435201"], ["updated_at", "2020-04-22 05:37:56.435201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.437556"], ["updated_at", "2020-04-22 05:37:56.437556"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.437180"], ["updated_at", "2020-04-22 05:37:56.437180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.440018"], ["updated_at", "2020-04-22 05:37:56.440018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.442486"], ["updated_at", "2020-04-22 05:37:56.442486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.4ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_918034


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.449566"], ["updated_at", "2020-04-22 05:37:56.449566"]]
 (0.1ms)  begin transaction

CommentTest: test_659335


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.451860"], ["updated_at", "2020-04-22 05:37:56.451860"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.454327"], ["updated_at", "2020-04-22 05:37:56.454327"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.454373"], ["updated_at", "2020-04-22 05:37:56.454373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.457570"], ["updated_at", "2020-04-22 05:37:56.457570"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.460513"], ["updated_at", "2020-04-22 05:37:56.460513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_903810


 (0.6ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_22815


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.468142"], ["updated_at", "2020-04-22 05:37:56.468142"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.471073"], ["updated_at", "2020-04-22 05:37:56.471073"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.471658"], ["updated_at", "2020-04-22 05:37:56.471658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.474254"], ["updated_at", "2020-04-22 05:37:56.474254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.474345"], ["updated_at", "2020-04-22 05:37:56.474345"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.477065"], ["updated_at", "2020-04-22 05:37:56.477065"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_153671


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.487612"], ["updated_at", "2020-04-22 05:37:56.487612"]]
 (4.3ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.492922"], ["updated_at", "2020-04-22 05:37:56.492922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_288012


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.495469"], ["updated_at", "2020-04-22 05:37:56.495469"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.495630"], ["updated_at", "2020-04-22 05:37:56.495630"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.498375"], ["updated_at", "2020-04-22 05:37:56.498375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_83856


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.501078"], ["updated_at", "2020-04-22 05:37:56.501078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.503072"], ["updated_at", "2020-04-22 05:37:56.503072"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.505998"], ["updated_at", "2020-04-22 05:37:56.505998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.509550"], ["updated_at", "2020-04-22 05:37:56.509550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_295587


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.516515"], ["updated_at", "2020-04-22 05:37:56.516515"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.519058"], ["updated_at", "2020-04-22 05:37:56.519058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_635452


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.521728"], ["updated_at", "2020-04-22 05:37:56.521728"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.523623"], ["updated_at", "2020-04-22 05:37:56.523623"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.530051"], ["updated_at", "2020-04-22 05:37:56.530051"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.532404"], ["updated_at", "2020-04-22 05:37:56.532404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_158933


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.536115"], ["updated_at", "2020-04-22 05:37:56.536115"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.539213"], ["updated_at", "2020-04-22 05:37:56.539213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.543521"], ["updated_at", "2020-04-22 05:37:56.543521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_229188


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.548307"], ["updated_at", "2020-04-22 05:37:56.548307"]]
 (0.2ms)  begin transaction

CommentTest: test_970164


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.552091"], ["updated_at", "2020-04-22 05:37:56.552091"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.553428"], ["updated_at", "2020-04-22 05:37:56.553428"]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.557649"], ["updated_at", "2020-04-22 05:37:56.557649"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.562909"], ["updated_at", "2020-04-22 05:37:56.562909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (7.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.554322"], ["updated_at", "2020-04-22 05:37:56.554322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_161666


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.572220"], ["updated_at", "2020-04-22 05:37:56.572220"]]
 (0.1ms)  begin transaction

CommentTest: test_3459


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.575531"], ["updated_at", "2020-04-22 05:37:56.575531"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.578141"], ["updated_at", "2020-04-22 05:37:56.578141"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.578824"], ["updated_at", "2020-04-22 05:37:56.578824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.581581"], ["updated_at", "2020-04-22 05:37:56.581581"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.584040"], ["updated_at", "2020-04-22 05:37:56.584040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_552423


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.588885"], ["updated_at", "2020-04-22 05:37:56.588885"]]
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.595244"], ["updated_at", "2020-04-22 05:37:56.595244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_575276


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.598150"], ["updated_at", "2020-04-22 05:37:56.598150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.600481"], ["updated_at", "2020-04-22 05:37:56.600481"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.603018"], ["updated_at", "2020-04-22 05:37:56.603018"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.605376"], ["updated_at", "2020-04-22 05:37:56.605376"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_264754


 (0.1ms)  begin transaction

CommentTest: test_927606


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.613914"], ["updated_at", "2020-04-22 05:37:56.613914"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.615632"], ["updated_at", "2020-04-22 05:37:56.615632"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.619638"], ["updated_at", "2020-04-22 05:37:56.619638"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.620040"], ["updated_at", "2020-04-22 05:37:56.620040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.622358"], ["updated_at", "2020-04-22 05:37:56.622358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.626041"], ["updated_at", "2020-04-22 05:37:56.626041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_563256


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_964146


Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.632359"], ["updated_at", "2020-04-22 05:37:56.632359"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.636448"], ["updated_at", "2020-04-22 05:37:56.636448"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.638978"], ["updated_at", "2020-04-22 05:37:56.638978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (17.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.637297"], ["updated_at", "2020-04-22 05:37:56.637297"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.657817"], ["updated_at", "2020-04-22 05:37:56.657817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_516313


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.663383"], ["updated_at", "2020-04-22 05:37:56.663383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.665334"], ["updated_at", "2020-04-22 05:37:56.665334"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.668493"], ["updated_at", "2020-04-22 05:37:56.668493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.670625"], ["updated_at", "2020-04-22 05:37:56.670625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_819390


 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_794410


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.691783"], ["updated_at", "2020-04-22 05:37:56.691783"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.695473"], ["updated_at", "2020-04-22 05:37:56.695473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.688820"], ["updated_at", "2020-04-22 05:37:56.688820"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.697679"], ["updated_at", "2020-04-22 05:37:56.697679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.700370"], ["updated_at", "2020-04-22 05:37:56.700370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.702637"], ["updated_at", "2020-04-22 05:37:56.702637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_134670


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.709192"], ["updated_at", "2020-04-22 05:37:56.709192"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.712572"], ["updated_at", "2020-04-22 05:37:56.712572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.715046"], ["updated_at", "2020-04-22 05:37:56.715046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  begin transaction

CommentTest: test_983427


 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_644364


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.726840"], ["updated_at", "2020-04-22 05:37:56.726840"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.731049"], ["updated_at", "2020-04-22 05:37:56.731049"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.733238"], ["updated_at", "2020-04-22 05:37:56.733238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.724266"], ["updated_at", "2020-04-22 05:37:56.724266"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.736612"], ["updated_at", "2020-04-22 05:37:56.736612"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_2450


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.739885"], ["updated_at", "2020-04-22 05:37:56.739885"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.743514"], ["updated_at", "2020-04-22 05:37:56.743514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.747290"], ["updated_at", "2020-04-22 05:37:56.747290"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.749430"], ["updated_at", "2020-04-22 05:37:56.749430"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_96086


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_945014


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.759600"], ["updated_at", "2020-04-22 05:37:56.759600"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.762636"], ["updated_at", "2020-04-22 05:37:56.762636"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.762515"], ["updated_at", "2020-04-22 05:37:56.762515"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.764594"], ["updated_at", "2020-04-22 05:37:56.764594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.766344"], ["updated_at", "2020-04-22 05:37:56.766344"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.770271"], ["updated_at", "2020-04-22 05:37:56.770271"]]
 (0.9ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_855884


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.774580"], ["updated_at", "2020-04-22 05:37:56.774580"]]
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_936153


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.778082"], ["updated_at", "2020-04-22 05:37:56.778082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.779798"], ["updated_at", "2020-04-22 05:37:56.779798"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.779650"], ["updated_at", "2020-04-22 05:37:56.779650"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.782258"], ["updated_at", "2020-04-22 05:37:56.782258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_838351


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.785377"], ["updated_at", "2020-04-22 05:37:56.785377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.786766"], ["updated_at", "2020-04-22 05:37:56.786766"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.789395"], ["updated_at", "2020-04-22 05:37:56.789395"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_843507


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.792264"], ["updated_at", "2020-04-22 05:37:56.792264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.793771"], ["updated_at", "2020-04-22 05:37:56.793771"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.795977"], ["updated_at", "2020-04-22 05:37:56.795977"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.798921"], ["updated_at", "2020-04-22 05:37:56.798921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_319956


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.801997"], ["updated_at", "2020-04-22 05:37:56.801997"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.805646"], ["updated_at", "2020-04-22 05:37:56.805646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (7.5ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.813112"], ["updated_at", "2020-04-22 05:37:56.813112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_892239


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.819723"], ["updated_at", "2020-04-22 05:37:56.819723"]]
 (0.1ms)  begin transaction

CommentTest: test_435895


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.824503"], ["updated_at", "2020-04-22 05:37:56.824503"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.824067"], ["updated_at", "2020-04-22 05:37:56.824067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.828476"], ["updated_at", "2020-04-22 05:37:56.828476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.829091"], ["updated_at", "2020-04-22 05:37:56.829091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.831463"], ["updated_at", "2020-04-22 05:37:56.831463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_341805


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.843155"], ["updated_at", "2020-04-22 05:37:56.843155"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.852675"], ["updated_at", "2020-04-22 05:37:56.852675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_519016


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.856327"], ["updated_at", "2020-04-22 05:37:56.856327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.857334"], ["updated_at", "2020-04-22 05:37:56.857334"]]
 (0.1ms)  begin transaction

CommentTest: test_57831


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.866224"], ["updated_at", "2020-04-22 05:37:56.866224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.867441"], ["updated_at", "2020-04-22 05:37:56.867441"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.868418"], ["updated_at", "2020-04-22 05:37:56.868418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.869927"], ["updated_at", "2020-04-22 05:37:56.869927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.871992"], ["updated_at", "2020-04-22 05:37:56.871992"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_674028


 (0.1ms)  begin transaction

CommentTest: test_822218


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.883667"], ["updated_at", "2020-04-22 05:37:56.883667"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.884811"], ["updated_at", "2020-04-22 05:37:56.884811"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.886633"], ["updated_at", "2020-04-22 05:37:56.886633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.887408"], ["updated_at", "2020-04-22 05:37:56.887408"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.889066"], ["updated_at", "2020-04-22 05:37:56.889066"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.889943"], ["updated_at", "2020-04-22 05:37:56.889943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_403939


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.904730"], ["updated_at", "2020-04-22 05:37:56.904730"]]

CommentTest: test_977376


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.907828"], ["updated_at", "2020-04-22 05:37:56.907828"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.911394"], ["updated_at", "2020-04-22 05:37:56.911394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (6.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.907838"], ["updated_at", "2020-04-22 05:37:56.907838"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.918867"], ["updated_at", "2020-04-22 05:37:56.918867"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_843422


 (0.1ms)  SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.922033"], ["updated_at", "2020-04-22 05:37:56.922033"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.921816"], ["updated_at", "2020-04-22 05:37:56.921816"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.929416"], ["updated_at", "2020-04-22 05:37:56.929416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.931739"], ["updated_at", "2020-04-22 05:37:56.931739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_942214


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.937793"], ["updated_at", "2020-04-22 05:37:56.937793"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.940927"], ["updated_at", "2020-04-22 05:37:56.940927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.944150"], ["updated_at", "2020-04-22 05:37:56.944150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_533523


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.950192"], ["updated_at", "2020-04-22 05:37:56.950192"]]
 (0.1ms)  begin transaction

CommentTest: test_522979


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.952912"], ["updated_at", "2020-04-22 05:37:56.952912"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.954900"], ["updated_at", "2020-04-22 05:37:56.954900"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.953645"], ["updated_at", "2020-04-22 05:37:56.953645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.958722"], ["updated_at", "2020-04-22 05:37:56.958722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.961607"], ["updated_at", "2020-04-22 05:37:56.961607"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_584349


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.966423"], ["updated_at", "2020-04-22 05:37:56.966423"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_968715


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.969856"], ["updated_at", "2020-04-22 05:37:56.969856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.971480"], ["updated_at", "2020-04-22 05:37:56.971480"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.972190"], ["updated_at", "2020-04-22 05:37:56.972190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.976452"], ["updated_at", "2020-04-22 05:37:56.976452"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.979338"], ["updated_at", "2020-04-22 05:37:56.979338"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_661317


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.985379"], ["updated_at", "2020-04-22 05:37:56.985379"]]
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.987629"], ["updated_at", "2020-04-22 05:37:56.987629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.0ms)  begin transaction

CommentTest: test_473911


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:56.989549"], ["updated_at", "2020-04-22 05:37:56.989549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:56.989620"], ["updated_at", "2020-04-22 05:37:56.989620"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:56.997846"], ["updated_at", "2020-04-22 05:37:56.997846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.000154"], ["updated_at", "2020-04-22 05:37:57.000154"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_797087


 (4.5ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.005448"], ["updated_at", "2020-04-22 05:37:57.005448"]]
 (0.1ms)  begin transaction

CommentTest: test_437487


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.015153"], ["updated_at", "2020-04-22 05:37:57.015153"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.015237"], ["updated_at", "2020-04-22 05:37:57.015237"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.017565"], ["updated_at", "2020-04-22 05:37:57.017565"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.017925"], ["updated_at", "2020-04-22 05:37:57.017925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.019567"], ["updated_at", "2020-04-22 05:37:57.019567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  begin transaction

CommentTest: test_486971



CommentTest: test_865700


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.035058"], ["updated_at", "2020-04-22 05:37:57.035058"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.035027"], ["updated_at", "2020-04-22 05:37:57.035027"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.037771"], ["updated_at", "2020-04-22 05:37:57.037771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.038023"], ["updated_at", "2020-04-22 05:37:57.038023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.040152"], ["updated_at", "2020-04-22 05:37:57.040152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.042902"], ["updated_at", "2020-04-22 05:37:57.042902"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction
 (0.5ms)  rollback transaction

CommentTest: test_689955


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_595895


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.050768"], ["updated_at", "2020-04-22 05:37:57.050768"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.052418"], ["updated_at", "2020-04-22 05:37:57.052418"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.053682"], ["updated_at", "2020-04-22 05:37:57.053682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.055601"], ["updated_at", "2020-04-22 05:37:57.055601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.055677"], ["updated_at", "2020-04-22 05:37:57.055677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_44620


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.058907"], ["updated_at", "2020-04-22 05:37:57.058907"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.065489"], ["updated_at", "2020-04-22 05:37:57.065489"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.068528"], ["updated_at", "2020-04-22 05:37:57.068528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.070350"], ["updated_at", "2020-04-22 05:37:57.070350"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_359541


Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.075383"], ["updated_at", "2020-04-22 05:37:57.075383"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.078501"], ["updated_at", "2020-04-22 05:37:57.078501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_609814


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.080615"], ["updated_at", "2020-04-22 05:37:57.080615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.080615"], ["updated_at", "2020-04-22 05:37:57.080615"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.083721"], ["updated_at", "2020-04-22 05:37:57.083721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.085863"], ["updated_at", "2020-04-22 05:37:57.085863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_504259


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.089174"], ["updated_at", "2020-04-22 05:37:57.089174"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.093336"], ["updated_at", "2020-04-22 05:37:57.093336"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.096073"], ["updated_at", "2020-04-22 05:37:57.096073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_864387


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.099422"], ["updated_at", "2020-04-22 05:37:57.099422"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.102373"], ["updated_at", "2020-04-22 05:37:57.102373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_276216


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.104679"], ["updated_at", "2020-04-22 05:37:57.104679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.106605"], ["updated_at", "2020-04-22 05:37:57.106605"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.111347"], ["updated_at", "2020-04-22 05:37:57.111347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.114077"], ["updated_at", "2020-04-22 05:37:57.114077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_27693


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.117775"], ["updated_at", "2020-04-22 05:37:57.117775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.121104"], ["updated_at", "2020-04-22 05:37:57.121104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.124750"], ["updated_at", "2020-04-22 05:37:57.124750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_441996


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.129367"], ["updated_at", "2020-04-22 05:37:57.129367"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.134315"], ["updated_at", "2020-04-22 05:37:57.134315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.141236"], ["updated_at", "2020-04-22 05:37:57.141236"]]

CommentTest: test_475739


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.146537"], ["updated_at", "2020-04-22 05:37:57.146537"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.149262"], ["updated_at", "2020-04-22 05:37:57.149262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.151321"], ["updated_at", "2020-04-22 05:37:57.151321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_320221


 (0.1ms)  SAVEPOINT active_record_1
 (11.0ms)  rollback transaction
Course Create (7.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.163639"], ["updated_at", "2020-04-22 05:37:57.163639"]]
 (0.1ms)  begin transaction

CommentTest: test_22220


Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.175994"], ["updated_at", "2020-04-22 05:37:57.175994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.184056"], ["updated_at", "2020-04-22 05:37:57.184056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.183955"], ["updated_at", "2020-04-22 05:37:57.183955"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.187303"], ["updated_at", "2020-04-22 05:37:57.187303"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.191267"], ["updated_at", "2020-04-22 05:37:57.191267"]]
 (1.7ms)  begin transaction

 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_470954


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.196817"], ["updated_at", "2020-04-22 05:37:57.196817"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.200083"], ["updated_at", "2020-04-22 05:37:57.200083"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_798829


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.202080"], ["updated_at", "2020-04-22 05:37:57.202080"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.204083"], ["updated_at", "2020-04-22 05:37:57.204083"]]
 (1.0ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.210528"], ["updated_at", "2020-04-22 05:37:57.210528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_651416


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.213625"], ["updated_at", "2020-04-22 05:37:57.213625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.213832"], ["updated_at", "2020-04-22 05:37:57.213832"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.217783"], ["updated_at", "2020-04-22 05:37:57.217783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.219625"], ["updated_at", "2020-04-22 05:37:57.219625"]]
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_835821


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.224126"], ["updated_at", "2020-04-22 05:37:57.224126"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.227178"], ["updated_at", "2020-04-22 05:37:57.227178"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_434754


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.234146"], ["updated_at", "2020-04-22 05:37:57.234146"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.234688"], ["updated_at", "2020-04-22 05:37:57.234688"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.237529"], ["updated_at", "2020-04-22 05:37:57.237529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.239934"], ["updated_at", "2020-04-22 05:37:57.239934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_689125


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.254666"], ["updated_at", "2020-04-22 05:37:57.254666"]]
 (0.1ms)  begin transaction

CommentTest: test_390068


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (9.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.259713"], ["updated_at", "2020-04-22 05:37:57.259713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.273111"], ["updated_at", "2020-04-22 05:37:57.273111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.269311"], ["updated_at", "2020-04-22 05:37:57.269311"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.286959"], ["updated_at", "2020-04-22 05:37:57.286959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.5ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.289278"], ["updated_at", "2020-04-22 05:37:57.289278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_936653


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.298308"], ["updated_at", "2020-04-22 05:37:57.298308"]]
Bucket Create (15.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.303882"], ["updated_at", "2020-04-22 05:37:57.303882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (19.6ms)  SAVEPOINT active_record_1
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.325767"], ["updated_at", "2020-04-22 05:37:57.325767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.0ms)  rollback transaction
 (10.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_854209


 (0.1ms)  begin transaction

CommentTest: test_529266


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.354090"], ["updated_at", "2020-04-22 05:37:57.354090"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.354245"], ["updated_at", "2020-04-22 05:37:57.354245"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.360618"], ["updated_at", "2020-04-22 05:37:57.360618"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.360629"], ["updated_at", "2020-04-22 05:37:57.360629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.363937"], ["updated_at", "2020-04-22 05:37:57.363937"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.364055"], ["updated_at", "2020-04-22 05:37:57.364055"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_206731


 (0.1ms)  begin transaction

CommentTest: test_362252


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.378323"], ["updated_at", "2020-04-22 05:37:57.378323"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.379141"], ["updated_at", "2020-04-22 05:37:57.379141"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.380890"], ["updated_at", "2020-04-22 05:37:57.380890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.381261"], ["updated_at", "2020-04-22 05:37:57.381261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.383359"], ["updated_at", "2020-04-22 05:37:57.383359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.383963"], ["updated_at", "2020-04-22 05:37:57.383963"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_347987



CommentTest: test_95752


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.394602"], ["updated_at", "2020-04-22 05:37:57.394602"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.393394"], ["updated_at", "2020-04-22 05:37:57.393394"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.397230"], ["updated_at", "2020-04-22 05:37:57.397230"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.397426"], ["updated_at", "2020-04-22 05:37:57.397426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.398717"], ["updated_at", "2020-04-22 05:37:57.398717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.399239"], ["updated_at", "2020-04-22 05:37:57.399239"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_33849


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.409768"], ["updated_at", "2020-04-22 05:37:57.409768"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.414170"], ["updated_at", "2020-04-22 05:37:57.414170"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.416534"], ["updated_at", "2020-04-22 05:37:57.416534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_494595


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_309323


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.442358"], ["updated_at", "2020-04-22 05:37:57.442358"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.422125"], ["updated_at", "2020-04-22 05:37:57.422125"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.445690"], ["updated_at", "2020-04-22 05:37:57.445690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.446969"], ["updated_at", "2020-04-22 05:37:57.446969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.448302"], ["updated_at", "2020-04-22 05:37:57.448302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.449561"], ["updated_at", "2020-04-22 05:37:57.449561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_561699


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_640184


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.465900"], ["updated_at", "2020-04-22 05:37:57.465900"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.471143"], ["updated_at", "2020-04-22 05:37:57.471143"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.471748"], ["updated_at", "2020-04-22 05:37:57.471748"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.476335"], ["updated_at", "2020-04-22 05:37:57.476335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.478893"], ["updated_at", "2020-04-22 05:37:57.478893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.487028"], ["updated_at", "2020-04-22 05:37:57.487028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_698592


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.491940"], ["updated_at", "2020-04-22 05:37:57.491940"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.495821"], ["updated_at", "2020-04-22 05:37:57.495821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.497965"], ["updated_at", "2020-04-22 05:37:57.497965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_129528


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.501933"], ["updated_at", "2020-04-22 05:37:57.501933"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.504633"], ["updated_at", "2020-04-22 05:37:57.504633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.506965"], ["updated_at", "2020-04-22 05:37:57.506965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_24724


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.510922"], ["updated_at", "2020-04-22 05:37:57.510922"]]
 (0.1ms)  begin transaction

CommentTest: test_22504


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.519267"], ["updated_at", "2020-04-22 05:37:57.519267"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.519137"], ["updated_at", "2020-04-22 05:37:57.519137"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.521844"], ["updated_at", "2020-04-22 05:37:57.521844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.522930"], ["updated_at", "2020-04-22 05:37:57.522930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.525204"], ["updated_at", "2020-04-22 05:37:57.525204"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_543199


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.534462"], ["updated_at", "2020-04-22 05:37:57.534462"]]
 (0.1ms)  begin transaction

CommentTest: test_226702


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.537889"], ["updated_at", "2020-04-22 05:37:57.537889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.540243"], ["updated_at", "2020-04-22 05:37:57.540243"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.537988"], ["updated_at", "2020-04-22 05:37:57.537988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.543892"], ["updated_at", "2020-04-22 05:37:57.543892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.546194"], ["updated_at", "2020-04-22 05:37:57.546194"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_240324


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.551783"], ["updated_at", "2020-04-22 05:37:57.551783"]]
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.554523"], ["updated_at", "2020-04-22 05:37:57.554523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_67980


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.556846"], ["updated_at", "2020-04-22 05:37:57.556846"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.557484"], ["updated_at", "2020-04-22 05:37:57.557484"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.560177"], ["updated_at", "2020-04-22 05:37:57.560177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.562739"], ["updated_at", "2020-04-22 05:37:57.562739"]]
 (0.1ms)  begin transaction

CommentTest: test_231420


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.565592"], ["updated_at", "2020-04-22 05:37:57.565592"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.568136"], ["updated_at", "2020-04-22 05:37:57.568136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.570110"], ["updated_at", "2020-04-22 05:37:57.570110"]]
 (0.4ms)  begin transaction

CommentTest: test_167276


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.572712"], ["updated_at", "2020-04-22 05:37:57.572712"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.575742"], ["updated_at", "2020-04-22 05:37:57.575742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.578453"], ["updated_at", "2020-04-22 05:37:57.578453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_914299


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.583523"], ["updated_at", "2020-04-22 05:37:57.583523"]]
 (0.1ms)  begin transaction

CommentTest: test_990607


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.586422"], ["updated_at", "2020-04-22 05:37:57.586422"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.587594"], ["updated_at", "2020-04-22 05:37:57.587594"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.588609"], ["updated_at", "2020-04-22 05:37:57.588609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.590942"], ["updated_at", "2020-04-22 05:37:57.590942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.593114"], ["updated_at", "2020-04-22 05:37:57.593114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_646984


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_658343


Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.619675"], ["updated_at", "2020-04-22 05:37:57.619675"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.627911"], ["updated_at", "2020-04-22 05:37:57.627911"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.628850"], ["updated_at", "2020-04-22 05:37:57.628850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.632382"], ["updated_at", "2020-04-22 05:37:57.632382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.634789"], ["updated_at", "2020-04-22 05:37:57.634789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.634732"], ["updated_at", "2020-04-22 05:37:57.634732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_269105


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.647289"], ["updated_at", "2020-04-22 05:37:57.647289"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_359114


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.650660"], ["updated_at", "2020-04-22 05:37:57.650660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.653090"], ["updated_at", "2020-04-22 05:37:57.653090"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.652036"], ["updated_at", "2020-04-22 05:37:57.652036"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.659038"], ["updated_at", "2020-04-22 05:37:57.659038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.661949"], ["updated_at", "2020-04-22 05:37:57.661949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_358033


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.665224"], ["updated_at", "2020-04-22 05:37:57.665224"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.668020"], ["updated_at", "2020-04-22 05:37:57.668020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_173760


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.669978"], ["updated_at", "2020-04-22 05:37:57.669978"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.672113"], ["updated_at", "2020-04-22 05:37:57.672113"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.677438"], ["updated_at", "2020-04-22 05:37:57.677438"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.680316"], ["updated_at", "2020-04-22 05:37:57.680316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_511540


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.687418"], ["updated_at", "2020-04-22 05:37:57.687418"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.691020"], ["updated_at", "2020-04-22 05:37:57.691020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.693337"], ["updated_at", "2020-04-22 05:37:57.693337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_643052


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.697269"], ["updated_at", "2020-04-22 05:37:57.697269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.700490"], ["updated_at", "2020-04-22 05:37:57.700490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_673790


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.702520"], ["updated_at", "2020-04-22 05:37:57.702520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.703208"], ["updated_at", "2020-04-22 05:37:57.703208"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.711534"], ["updated_at", "2020-04-22 05:37:57.711534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_818898


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.717419"], ["updated_at", "2020-04-22 05:37:57.717419"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.718150"], ["updated_at", "2020-04-22 05:37:57.718150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.720350"], ["updated_at", "2020-04-22 05:37:57.720350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.723890"], ["updated_at", "2020-04-22 05:37:57.723890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (5.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_534187


 (0.1ms)  begin transaction

CommentTest: test_932183


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.738360"], ["updated_at", "2020-04-22 05:37:57.738360"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.745996"], ["updated_at", "2020-04-22 05:37:57.745996"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.738534"], ["updated_at", "2020-04-22 05:37:57.738534"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.747822"], ["updated_at", "2020-04-22 05:37:57.747822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.748779"], ["updated_at", "2020-04-22 05:37:57.748779"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.752047"], ["updated_at", "2020-04-22 05:37:57.752047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_740554


 (0.1ms)  begin transaction

CommentTest: test_991489


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.767746"], ["updated_at", "2020-04-22 05:37:57.767746"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.766375"], ["updated_at", "2020-04-22 05:37:57.766375"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.772061"], ["updated_at", "2020-04-22 05:37:57.772061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.773607"], ["updated_at", "2020-04-22 05:37:57.773607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.774403"], ["updated_at", "2020-04-22 05:37:57.774403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.778272"], ["updated_at", "2020-04-22 05:37:57.778272"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_78575 CommentTest: test_549802



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.787516"], ["updated_at", "2020-04-22 05:37:57.787516"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.787623"], ["updated_at", "2020-04-22 05:37:57.787623"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.790462"], ["updated_at", "2020-04-22 05:37:57.790462"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.791202"], ["updated_at", "2020-04-22 05:37:57.791202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.793788"], ["updated_at", "2020-04-22 05:37:57.793788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.794552"], ["updated_at", "2020-04-22 05:37:57.794552"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_246482


 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_97774


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.803249"], ["updated_at", "2020-04-22 05:37:57.803249"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.806238"], ["updated_at", "2020-04-22 05:37:57.806238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.805617"], ["updated_at", "2020-04-22 05:37:57.805617"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.808340"], ["updated_at", "2020-04-22 05:37:57.808340"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.808705"], ["updated_at", "2020-04-22 05:37:57.808705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.810766"], ["updated_at", "2020-04-22 05:37:57.810766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_159036


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.824447"], ["updated_at", "2020-04-22 05:37:57.824447"]]
 (0.1ms)  begin transaction

CommentTest: test_736192


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.828242"], ["updated_at", "2020-04-22 05:37:57.828242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.828769"], ["updated_at", "2020-04-22 05:37:57.828769"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.830207"], ["updated_at", "2020-04-22 05:37:57.830207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.831865"], ["updated_at", "2020-04-22 05:37:57.831865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.834208"], ["updated_at", "2020-04-22 05:37:57.834208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_998432


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.843855"], ["updated_at", "2020-04-22 05:37:57.843855"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.846275"], ["updated_at", "2020-04-22 05:37:57.846275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.848493"], ["updated_at", "2020-04-22 05:37:57.848493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_438805


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.858937"], ["updated_at", "2020-04-22 05:37:57.858937"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.865561"], ["updated_at", "2020-04-22 05:37:57.865561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.868112"], ["updated_at", "2020-04-22 05:37:57.868112"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_57693


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.870648"], ["updated_at", "2020-04-22 05:37:57.870648"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.874099"], ["updated_at", "2020-04-22 05:37:57.874099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_585949


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.876773"], ["updated_at", "2020-04-22 05:37:57.876773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.877744"], ["updated_at", "2020-04-22 05:37:57.877744"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.880530"], ["updated_at", "2020-04-22 05:37:57.880530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.882327"], ["updated_at", "2020-04-22 05:37:57.882327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_236632


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.887276"], ["updated_at", "2020-04-22 05:37:57.887276"]]
 (0.1ms)  begin transaction

CommentTest: test_384770


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.891364"], ["updated_at", "2020-04-22 05:37:57.891364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.891679"], ["updated_at", "2020-04-22 05:37:57.891679"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.895221"], ["updated_at", "2020-04-22 05:37:57.895221"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.898301"], ["updated_at", "2020-04-22 05:37:57.898301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.897009"], ["updated_at", "2020-04-22 05:37:57.897009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_494615


 (0.1ms)  begin transaction

CommentTest: test_621024


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.908228"], ["updated_at", "2020-04-22 05:37:57.908228"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.909121"], ["updated_at", "2020-04-22 05:37:57.909121"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.911722"], ["updated_at", "2020-04-22 05:37:57.911722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.912008"], ["updated_at", "2020-04-22 05:37:57.912008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.913871"], ["updated_at", "2020-04-22 05:37:57.913871"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.913833"], ["updated_at", "2020-04-22 05:37:57.913833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_986524


 (0.1ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_635899


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.927913"], ["updated_at", "2020-04-22 05:37:57.927913"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.930985"], ["updated_at", "2020-04-22 05:37:57.930985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.930359"], ["updated_at", "2020-04-22 05:37:57.930359"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.933977"], ["updated_at", "2020-04-22 05:37:57.933977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.934967"], ["updated_at", "2020-04-22 05:37:57.934967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.937597"], ["updated_at", "2020-04-22 05:37:57.937597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_737266


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.947101"], ["updated_at", "2020-04-22 05:37:57.947101"]]
 (0.1ms)  begin transaction

CommentTest: test_581262


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.949608"], ["updated_at", "2020-04-22 05:37:57.949608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.949919"], ["updated_at", "2020-04-22 05:37:57.949919"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.951468"], ["updated_at", "2020-04-22 05:37:57.951468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.952371"], ["updated_at", "2020-04-22 05:37:57.952371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.954177"], ["updated_at", "2020-04-22 05:37:57.954177"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_829911


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.962171"], ["updated_at", "2020-04-22 05:37:57.962171"]]
 (0.1ms)  begin transaction

CommentTest: test_488914


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.965870"], ["updated_at", "2020-04-22 05:37:57.965870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.965991"], ["updated_at", "2020-04-22 05:37:57.965991"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.969126"], ["updated_at", "2020-04-22 05:37:57.969126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.969729"], ["updated_at", "2020-04-22 05:37:57.969729"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.971828"], ["updated_at", "2020-04-22 05:37:57.971828"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_723482


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.979762"], ["updated_at", "2020-04-22 05:37:57.979762"]]
 (0.1ms)  begin transaction

CommentTest: test_138627


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.982557"], ["updated_at", "2020-04-22 05:37:57.982557"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.983344"], ["updated_at", "2020-04-22 05:37:57.983344"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.984854"], ["updated_at", "2020-04-22 05:37:57.984854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:57.986401"], ["updated_at", "2020-04-22 05:37:57.986401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:57.988927"], ["updated_at", "2020-04-22 05:37:57.988927"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_541504


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:57.997213"], ["updated_at", "2020-04-22 05:37:57.997213"]]
 (0.1ms)  begin transaction

CommentTest: test_728791


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.000075"], ["updated_at", "2020-04-22 05:37:58.000075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.000557"], ["updated_at", "2020-04-22 05:37:58.000557"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.002231"], ["updated_at", "2020-04-22 05:37:58.002231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.003314"], ["updated_at", "2020-04-22 05:37:58.003314"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.009313"], ["updated_at", "2020-04-22 05:37:58.009313"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_74542


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.018118"], ["updated_at", "2020-04-22 05:37:58.018118"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_435922


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.020954"], ["updated_at", "2020-04-22 05:37:58.020954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.022676"], ["updated_at", "2020-04-22 05:37:58.022676"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.023891"], ["updated_at", "2020-04-22 05:37:58.023891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.025839"], ["updated_at", "2020-04-22 05:37:58.025839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.028943"], ["updated_at", "2020-04-22 05:37:58.028943"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_624114


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.034460"], ["updated_at", "2020-04-22 05:37:58.034460"]]
 (0.1ms)  begin transaction

CommentTest: test_34722


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.037110"], ["updated_at", "2020-04-22 05:37:58.037110"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.039138"], ["updated_at", "2020-04-22 05:37:58.039138"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.038672"], ["updated_at", "2020-04-22 05:37:58.038672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.044361"], ["updated_at", "2020-04-22 05:37:58.044361"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.046757"], ["updated_at", "2020-04-22 05:37:58.046757"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_329841


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.051043"], ["updated_at", "2020-04-22 05:37:58.051043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.054331"], ["updated_at", "2020-04-22 05:37:58.054331"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_260665


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.056737"], ["updated_at", "2020-04-22 05:37:58.056737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.058772"], ["updated_at", "2020-04-22 05:37:58.058772"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.063872"], ["updated_at", "2020-04-22 05:37:58.063872"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.065890"], ["updated_at", "2020-04-22 05:37:58.065890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_13316


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.070974"], ["updated_at", "2020-04-22 05:37:58.070974"]]
 (0.1ms)  begin transaction

CommentTest: test_1282


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.074223"], ["updated_at", "2020-04-22 05:37:58.074223"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.076073"], ["updated_at", "2020-04-22 05:37:58.076073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.075690"], ["updated_at", "2020-04-22 05:37:58.075690"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.080848"], ["updated_at", "2020-04-22 05:37:58.080848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.083566"], ["updated_at", "2020-04-22 05:37:58.083566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_526634


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.086625"], ["updated_at", "2020-04-22 05:37:58.086625"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.089475"], ["updated_at", "2020-04-22 05:37:58.089475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.093043"], ["updated_at", "2020-04-22 05:37:58.093043"]]
 (0.1ms)  begin transaction

CommentTest: test_315987


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.096041"], ["updated_at", "2020-04-22 05:37:58.096041"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.099610"], ["updated_at", "2020-04-22 05:37:58.099610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_307056


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.102291"], ["updated_at", "2020-04-22 05:37:58.102291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.103437"], ["updated_at", "2020-04-22 05:37:58.103437"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.106583"], ["updated_at", "2020-04-22 05:37:58.106583"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.108577"], ["updated_at", "2020-04-22 05:37:58.108577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_932742


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_892748


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.117669"], ["updated_at", "2020-04-22 05:37:58.117669"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.122238"], ["updated_at", "2020-04-22 05:37:58.122238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.125979"], ["updated_at", "2020-04-22 05:37:58.125979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.121886"], ["updated_at", "2020-04-22 05:37:58.121886"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.129883"], ["updated_at", "2020-04-22 05:37:58.129883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.132160"], ["updated_at", "2020-04-22 05:37:58.132160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (1.7ms)  rollback transaction

CommentTest: test_202897


 (0.1ms)  begin transaction

CommentTest: test_473662


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.147893"], ["updated_at", "2020-04-22 05:37:58.147893"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.145803"], ["updated_at", "2020-04-22 05:37:58.145803"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.151166"], ["updated_at", "2020-04-22 05:37:58.151166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.151100"], ["updated_at", "2020-04-22 05:37:58.151100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.153399"], ["updated_at", "2020-04-22 05:37:58.153399"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.153894"], ["updated_at", "2020-04-22 05:37:58.153894"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_682110


 (0.1ms)  begin transaction

CommentTest: test_400083


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.170247"], ["updated_at", "2020-04-22 05:37:58.170247"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.170448"], ["updated_at", "2020-04-22 05:37:58.170448"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.173142"], ["updated_at", "2020-04-22 05:37:58.173142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.179734"], ["updated_at", "2020-04-22 05:37:58.179734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.180206"], ["updated_at", "2020-04-22 05:37:58.180206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.182797"], ["updated_at", "2020-04-22 05:37:58.182797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_9274


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.188949"], ["updated_at", "2020-04-22 05:37:58.188949"]]
 (0.1ms)  begin transaction

CommentTest: test_629388


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.192486"], ["updated_at", "2020-04-22 05:37:58.192486"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.195620"], ["updated_at", "2020-04-22 05:37:58.195620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.195988"], ["updated_at", "2020-04-22 05:37:58.195988"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.200607"], ["updated_at", "2020-04-22 05:37:58.200607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_356583


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.205166"], ["updated_at", "2020-04-22 05:37:58.205166"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.205593"], ["updated_at", "2020-04-22 05:37:58.205593"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.211136"], ["updated_at", "2020-04-22 05:37:58.211136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.213652"], ["updated_at", "2020-04-22 05:37:58.213652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_877644


 (0.1ms)  begin transaction

CommentTest: test_458007


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.225366"], ["updated_at", "2020-04-22 05:37:58.225366"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.229838"], ["updated_at", "2020-04-22 05:37:58.229838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.232253"], ["updated_at", "2020-04-22 05:37:58.232253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.233955"], ["updated_at", "2020-04-22 05:37:58.233955"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.237312"], ["updated_at", "2020-04-22 05:37:58.237312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.240177"], ["updated_at", "2020-04-22 05:37:58.240177"]]

CommentTest: test_325899


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.242613"], ["updated_at", "2020-04-22 05:37:58.242613"]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_420170


Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.249673"], ["updated_at", "2020-04-22 05:37:58.249673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.251449"], ["updated_at", "2020-04-22 05:37:58.251449"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.253142"], ["updated_at", "2020-04-22 05:37:58.253142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.254007"], ["updated_at", "2020-04-22 05:37:58.254007"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.256059"], ["updated_at", "2020-04-22 05:37:58.256059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_477769


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_571880


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.268921"], ["updated_at", "2020-04-22 05:37:58.268921"]]
 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.271497"], ["updated_at", "2020-04-22 05:37:58.271497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.270924"], ["updated_at", "2020-04-22 05:37:58.270924"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.274202"], ["updated_at", "2020-04-22 05:37:58.274202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.275092"], ["updated_at", "2020-04-22 05:37:58.275092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.279503"], ["updated_at", "2020-04-22 05:37:58.279503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_176847


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.285265"], ["updated_at", "2020-04-22 05:37:58.285265"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.289215"], ["updated_at", "2020-04-22 05:37:58.289215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_355425


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.292214"], ["updated_at", "2020-04-22 05:37:58.292214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.294012"], ["updated_at", "2020-04-22 05:37:58.294012"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.297058"], ["updated_at", "2020-04-22 05:37:58.297058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.299766"], ["updated_at", "2020-04-22 05:37:58.299766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_958534


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.302934"], ["updated_at", "2020-04-22 05:37:58.302934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.307724"], ["updated_at", "2020-04-22 05:37:58.307724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_228415


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.310057"], ["updated_at", "2020-04-22 05:37:58.310057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.310078"], ["updated_at", "2020-04-22 05:37:58.310078"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.314584"], ["updated_at", "2020-04-22 05:37:58.314584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.317163"], ["updated_at", "2020-04-22 05:37:58.317163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_20374


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.321582"], ["updated_at", "2020-04-22 05:37:58.321582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.324539"], ["updated_at", "2020-04-22 05:37:58.324539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.5ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.328230"], ["updated_at", "2020-04-22 05:37:58.328230"]]

CommentTest: test_791701


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.330188"], ["updated_at", "2020-04-22 05:37:58.330188"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.332554"], ["updated_at", "2020-04-22 05:37:58.332554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_344579


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.335867"], ["updated_at", "2020-04-22 05:37:58.335867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.336965"], ["updated_at", "2020-04-22 05:37:58.336965"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.339763"], ["updated_at", "2020-04-22 05:37:58.339763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.342730"], ["updated_at", "2020-04-22 05:37:58.342730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (5.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_137704 CommentTest: test_41308



 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.354750"], ["updated_at", "2020-04-22 05:37:58.354750"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.357946"], ["updated_at", "2020-04-22 05:37:58.357946"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.360462"], ["updated_at", "2020-04-22 05:37:58.360462"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.354202"], ["updated_at", "2020-04-22 05:37:58.354202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.363794"], ["updated_at", "2020-04-22 05:37:58.363794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.365983"], ["updated_at", "2020-04-22 05:37:58.365983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_946974


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.375307"], ["updated_at", "2020-04-22 05:37:58.375307"]]
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_753706


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.378179"], ["updated_at", "2020-04-22 05:37:58.378179"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.380044"], ["updated_at", "2020-04-22 05:37:58.380044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.379920"], ["updated_at", "2020-04-22 05:37:58.379920"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.384921"], ["updated_at", "2020-04-22 05:37:58.384921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_343250


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.387489"], ["updated_at", "2020-04-22 05:37:58.387489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.390352"], ["updated_at", "2020-04-22 05:37:58.390352"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.394460"], ["updated_at", "2020-04-22 05:37:58.394460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.396749"], ["updated_at", "2020-04-22 05:37:58.396749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_933054


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.403714"], ["updated_at", "2020-04-22 05:37:58.403714"]]
 (0.1ms)  begin transaction

CommentTest: test_138932


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.413363"], ["updated_at", "2020-04-22 05:37:58.413363"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.410219"], ["updated_at", "2020-04-22 05:37:58.410219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.416151"], ["updated_at", "2020-04-22 05:37:58.416151"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.417188"], ["updated_at", "2020-04-22 05:37:58.417188"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.418280"], ["updated_at", "2020-04-22 05:37:58.418280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (7.9ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_871127


 (0.1ms)  begin transaction

CommentTest: test_187703


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.435365"], ["updated_at", "2020-04-22 05:37:58.435365"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.436773"], ["updated_at", "2020-04-22 05:37:58.436773"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.438740"], ["updated_at", "2020-04-22 05:37:58.438740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.441124"], ["updated_at", "2020-04-22 05:37:58.441124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.440902"], ["updated_at", "2020-04-22 05:37:58.440902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.446379"], ["updated_at", "2020-04-22 05:37:58.446379"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_565347


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.452073"], ["updated_at", "2020-04-22 05:37:58.452073"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.455332"], ["updated_at", "2020-04-22 05:37:58.455332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.460071"], ["updated_at", "2020-04-22 05:37:58.460071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_159244


 (1.0ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_580097


Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.468971"], ["updated_at", "2020-04-22 05:37:58.468971"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.472153"], ["updated_at", "2020-04-22 05:37:58.472153"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.472635"], ["updated_at", "2020-04-22 05:37:58.472635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.477110"], ["updated_at", "2020-04-22 05:37:58.477110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.477173"], ["updated_at", "2020-04-22 05:37:58.477173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.482005"], ["updated_at", "2020-04-22 05:37:58.482005"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.3ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (3.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_733771


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.494706"], ["updated_at", "2020-04-22 05:37:58.494706"]]
 (0.1ms)  begin transaction

CommentTest: test_681235


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.500328"], ["updated_at", "2020-04-22 05:37:58.500328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.500475"], ["updated_at", "2020-04-22 05:37:58.500475"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.502347"], ["updated_at", "2020-04-22 05:37:58.502347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.502973"], ["updated_at", "2020-04-22 05:37:58.502973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.506053"], ["updated_at", "2020-04-22 05:37:58.506053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_613043


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.522050"], ["updated_at", "2020-04-22 05:37:58.522050"]]
 (3.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.528538"], ["updated_at", "2020-04-22 05:37:58.528538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_134224


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.532158"], ["updated_at", "2020-04-22 05:37:58.532158"]]
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.532549"], ["updated_at", "2020-04-22 05:37:58.532549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.534661"], ["updated_at", "2020-04-22 05:37:58.534661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.536147"], ["updated_at", "2020-04-22 05:37:58.536147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_609560


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.543423"], ["updated_at", "2020-04-22 05:37:58.543423"]]
 (0.1ms)  begin transaction

CommentTest: test_243214


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.545781"], ["updated_at", "2020-04-22 05:37:58.545781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.546276"], ["updated_at", "2020-04-22 05:37:58.546276"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.547930"], ["updated_at", "2020-04-22 05:37:58.547930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.548825"], ["updated_at", "2020-04-22 05:37:58.548825"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.550781"], ["updated_at", "2020-04-22 05:37:58.550781"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_407966


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.556138"], ["updated_at", "2020-04-22 05:37:58.556138"]]
 (0.1ms)  begin transaction

CommentTest: test_665982


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.559562"], ["updated_at", "2020-04-22 05:37:58.559562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.561096"], ["updated_at", "2020-04-22 05:37:58.561096"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.564073"], ["updated_at", "2020-04-22 05:37:58.564073"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.564472"], ["updated_at", "2020-04-22 05:37:58.564472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.566300"], ["updated_at", "2020-04-22 05:37:58.566300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_113490


 (0.1ms)  begin transaction

CommentTest: test_317588


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.575405"], ["updated_at", "2020-04-22 05:37:58.575405"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.575824"], ["updated_at", "2020-04-22 05:37:58.575824"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.579217"], ["updated_at", "2020-04-22 05:37:58.579217"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.581290"], ["updated_at", "2020-04-22 05:37:58.581290"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.580848"], ["updated_at", "2020-04-22 05:37:58.580848"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.584596"], ["updated_at", "2020-04-22 05:37:58.584596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_594734

Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.592587"], ["updated_at", "2020-04-22 05:37:58.592587"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.595851"], ["updated_at", "2020-04-22 05:37:58.595851"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_165480


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.598565"], ["updated_at", "2020-04-22 05:37:58.598565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.599751"], ["updated_at", "2020-04-22 05:37:58.599751"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.603374"], ["updated_at", "2020-04-22 05:37:58.603374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.607163"], ["updated_at", "2020-04-22 05:37:58.607163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_265742


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.611227"], ["updated_at", "2020-04-22 05:37:58.611227"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.616099"], ["updated_at", "2020-04-22 05:37:58.616099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.618594"], ["updated_at", "2020-04-22 05:37:58.618594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_605414


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.622188"], ["updated_at", "2020-04-22 05:37:58.622188"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.629028"], ["updated_at", "2020-04-22 05:37:58.629028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.631125"], ["updated_at", "2020-04-22 05:37:58.631125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_161400


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.636136"], ["updated_at", "2020-04-22 05:37:58.636136"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_555521


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.659392"], ["updated_at", "2020-04-22 05:37:58.659392"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.664591"], ["updated_at", "2020-04-22 05:37:58.664591"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.660077"], ["updated_at", "2020-04-22 05:37:58.660077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.667826"], ["updated_at", "2020-04-22 05:37:58.667826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.671121"], ["updated_at", "2020-04-22 05:37:58.671121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_916630


 (1.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.689444"], ["updated_at", "2020-04-22 05:37:58.689444"]]
 (0.1ms)  begin transaction

CommentTest: test_303511


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.692495"], ["updated_at", "2020-04-22 05:37:58.692495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.694875"], ["updated_at", "2020-04-22 05:37:58.694875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.693953"], ["updated_at", "2020-04-22 05:37:58.693953"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.699738"], ["updated_at", "2020-04-22 05:37:58.699738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_932944


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.705198"], ["updated_at", "2020-04-22 05:37:58.705198"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.703193"], ["updated_at", "2020-04-22 05:37:58.703193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.709364"], ["updated_at", "2020-04-22 05:37:58.709364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.712132"], ["updated_at", "2020-04-22 05:37:58.712132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_110268


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.722177"], ["updated_at", "2020-04-22 05:37:58.722177"]]
 (0.1ms)  begin transaction

CommentTest: test_146222


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.725727"], ["updated_at", "2020-04-22 05:37:58.725727"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.728004"], ["updated_at", "2020-04-22 05:37:58.728004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.726879"], ["updated_at", "2020-04-22 05:37:58.726879"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.736085"], ["updated_at", "2020-04-22 05:37:58.736085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_619385


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.739874"], ["updated_at", "2020-04-22 05:37:58.739874"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.738868"], ["updated_at", "2020-04-22 05:37:58.738868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.742367"], ["updated_at", "2020-04-22 05:37:58.742367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.746482"], ["updated_at", "2020-04-22 05:37:58.746482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_923207


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.753775"], ["updated_at", "2020-04-22 05:37:58.753775"]]
 (0.1ms)  begin transaction

CommentTest: test_677780


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.758028"], ["updated_at", "2020-04-22 05:37:58.758028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.759049"], ["updated_at", "2020-04-22 05:37:58.759049"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.787470"], ["updated_at", "2020-04-22 05:37:58.787470"]]
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.801786"], ["updated_at", "2020-04-22 05:37:58.801786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.812429"], ["updated_at", "2020-04-22 05:37:58.812429"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_323733

 (2.3ms)  rollback transaction

 (0.2ms)  begin transaction

CommentTest: test_558694


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.884506"], ["updated_at", "2020-04-22 05:37:58.884506"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.897822"], ["updated_at", "2020-04-22 05:37:58.897822"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.889940"], ["updated_at", "2020-04-22 05:37:58.889940"]]
Recording Create (9.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.920406"], ["updated_at", "2020-04-22 05:37:58.920406"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:58.920581"], ["updated_at", "2020-04-22 05:37:58.920581"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:58.942050"], ["updated_at", "2020-04-22 05:37:58.942050"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_987246


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:58.982183"], ["updated_at", "2020-04-22 05:37:58.982183"]]
Comment Create (19.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.002934"], ["updated_at", "2020-04-22 05:37:59.002934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_666564


 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.025141"], ["updated_at", "2020-04-22 05:37:59.025141"]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.046772"], ["updated_at", "2020-04-22 05:37:59.046772"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.047836"], ["updated_at", "2020-04-22 05:37:59.047836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.108958"], ["updated_at", "2020-04-22 05:37:59.108958"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.3ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_848768


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.143718"], ["updated_at", "2020-04-22 05:37:59.143718"]]
 (0.3ms)  begin transaction

CommentTest: test_875632


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.160011"], ["updated_at", "2020-04-22 05:37:59.160011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.160281"], ["updated_at", "2020-04-22 05:37:59.160281"]]
Recording Create (6.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.172535"], ["updated_at", "2020-04-22 05:37:59.172535"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (10.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.187831"], ["updated_at", "2020-04-22 05:37:59.187831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.217739"], ["updated_at", "2020-04-22 05:37:59.217739"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.1ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_258646


 (5.6ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.254129"], ["updated_at", "2020-04-22 05:37:59.254129"]]
 (0.2ms)  begin transaction

CommentTest: test_180029


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.384660"], ["updated_at", "2020-04-22 05:37:59.384660"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.403705"], ["updated_at", "2020-04-22 05:37:59.403705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.270299"], ["updated_at", "2020-04-22 05:37:59.270299"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.449776"], ["updated_at", "2020-04-22 05:37:59.449776"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (99.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.419563"], ["updated_at", "2020-04-22 05:37:59.419563"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (59.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_101140


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.592402"], ["updated_at", "2020-04-22 05:37:59.592402"]]
 (13.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_126284


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.635366"], ["updated_at", "2020-04-22 05:37:59.635366"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (19.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.612940"], ["updated_at", "2020-04-22 05:37:59.612940"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.697378"], ["updated_at", "2020-04-22 05:37:59.697378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.644129"], ["updated_at", "2020-04-22 05:37:59.644129"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (6.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.729931"], ["updated_at", "2020-04-22 05:37:59.729931"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (16.5ms)  rollback transaction
 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.9ms)  begin transaction

CommentTest: test_900532



CommentTest: test_97254


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.795226"], ["updated_at", "2020-04-22 05:37:59.795226"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.803632"], ["updated_at", "2020-04-22 05:37:59.803632"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.817608"], ["updated_at", "2020-04-22 05:37:59.817608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.828746"], ["updated_at", "2020-04-22 05:37:59.828746"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.869526"], ["updated_at", "2020-04-22 05:37:59.869526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:37:59.909327"], ["updated_at", "2020-04-22 05:37:59.909327"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.4ms)  rollback transaction
 (1.3ms)  begin transaction

CommentTest: test_618186


 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:37:59.981425"], ["updated_at", "2020-04-22 05:37:59.981425"]]
 (0.2ms)  begin transaction

CommentTest: test_784835


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:37:59.992943"], ["updated_at", "2020-04-22 05:37:59.992943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.004691"], ["updated_at", "2020-04-22 05:38:00.004691"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.023070"], ["updated_at", "2020-04-22 05:38:00.023070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.019431"], ["updated_at", "2020-04-22 05:38:00.019431"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.030679"], ["updated_at", "2020-04-22 05:38:00.030679"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (11.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_590959


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.094652"], ["updated_at", "2020-04-22 05:38:00.094652"]]
 (7.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.111861"], ["updated_at", "2020-04-22 05:38:00.111861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.141633"], ["updated_at", "2020-04-22 05:38:00.141633"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_389680


 (0.2ms)  begin transaction

CommentTest: test_884589


 (0.9ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.187777"], ["updated_at", "2020-04-22 05:38:00.187777"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.195507"], ["updated_at", "2020-04-22 05:38:00.195507"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.199609"], ["updated_at", "2020-04-22 05:38:00.199609"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.204924"], ["updated_at", "2020-04-22 05:38:00.204924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.213703"], ["updated_at", "2020-04-22 05:38:00.213703"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (1.1ms)  begin transaction

CommentTest: test_961439


 (0.3ms)  SAVEPOINT active_record_1
Course Create (8.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.255676"], ["updated_at", "2020-04-22 05:38:00.255676"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.276157"], ["updated_at", "2020-04-22 05:38:00.276157"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.356486"], ["updated_at", "2020-04-22 05:38:00.356486"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.392415"], ["updated_at", "2020-04-22 05:38:00.392415"]]
Comment Create (5.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (7.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_384084


 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.421119"], ["updated_at", "2020-04-22 05:38:00.421119"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.451125"], ["updated_at", "2020-04-22 05:38:00.451125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (25.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_970728


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.480698"], ["updated_at", "2020-04-22 05:38:00.480698"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.497609"], ["updated_at", "2020-04-22 05:38:00.497609"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.499528"], ["updated_at", "2020-04-22 05:38:00.499528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (19.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.537966"], ["updated_at", "2020-04-22 05:38:00.537966"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (26.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_290449


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.599572"], ["updated_at", "2020-04-22 05:38:00.599572"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.609552"], ["updated_at", "2020-04-22 05:38:00.609552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (1.4ms)  begin transaction

CommentTest: test_282286


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.771168"], ["updated_at", "2020-04-22 05:38:00.771168"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.619563"], ["updated_at", "2020-04-22 05:38:00.619563"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.788349"], ["updated_at", "2020-04-22 05:38:00.788349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.799330"], ["updated_at", "2020-04-22 05:38:00.799330"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_160056


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.832391"], ["updated_at", "2020-04-22 05:38:00.832391"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:00.843281"], ["updated_at", "2020-04-22 05:38:00.843281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:00.854391"], ["updated_at", "2020-04-22 05:38:00.854391"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (19.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (6.4ms)  rollback transaction
 (67.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_714299


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_771751


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.008594"], ["updated_at", "2020-04-22 05:38:01.008594"]]
Course Create (25.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:00.991771"], ["updated_at", "2020-04-22 05:38:00.991771"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.022497"], ["updated_at", "2020-04-22 05:38:01.022497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.032199"], ["updated_at", "2020-04-22 05:38:01.032199"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.037635"], ["updated_at", "2020-04-22 05:38:01.037635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.049926"], ["updated_at", "2020-04-22 05:38:01.049926"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_745360


 (15.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.157724"], ["updated_at", "2020-04-22 05:38:01.157724"]]
 (0.3ms)  begin transaction

CommentTest: test_46393


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.183788"], ["updated_at", "2020-04-22 05:38:01.183788"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.194187"], ["updated_at", "2020-04-22 05:38:01.194187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (28.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.170211"], ["updated_at", "2020-04-22 05:38:01.170211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.208078"], ["updated_at", "2020-04-22 05:38:01.208078"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.220343"], ["updated_at", "2020-04-22 05:38:01.220343"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_735729


 (0.7ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.265186"], ["updated_at", "2020-04-22 05:38:01.265186"]]
 (6.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.287297"], ["updated_at", "2020-04-22 05:38:01.287297"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (8.7ms)  rollback transaction
 (2.0ms)  begin transaction

CommentTest: test_7472


 (1.5ms)  SAVEPOINT active_record_1
Course Create (24.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.309682"], ["updated_at", "2020-04-22 05:38:01.309682"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.338270"], ["updated_at", "2020-04-22 05:38:01.338270"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.349673"], ["updated_at", "2020-04-22 05:38:01.349673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.357305"], ["updated_at", "2020-04-22 05:38:01.357305"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (85.1ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_343349


 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_334579


 (0.8ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.539607"], ["updated_at", "2020-04-22 05:38:01.539607"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.485934"], ["updated_at", "2020-04-22 05:38:01.485934"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.559797"], ["updated_at", "2020-04-22 05:38:01.559797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.555458"], ["updated_at", "2020-04-22 05:38:01.555458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.649606"], ["updated_at", "2020-04-22 05:38:01.649606"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (83.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.571120"], ["updated_at", "2020-04-22 05:38:01.571120"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (15.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_746982


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.755357"], ["updated_at", "2020-04-22 05:38:01.755357"]]
 (1.0ms)  begin transaction

CommentTest: test_189193


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.777486"], ["updated_at", "2020-04-22 05:38:01.777486"]]
Bucket Create (5.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.768930"], ["updated_at", "2020-04-22 05:38:01.768930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.795158"], ["updated_at", "2020-04-22 05:38:01.795158"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.805049"], ["updated_at", "2020-04-22 05:38:01.805049"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.818406"], ["updated_at", "2020-04-22 05:38:01.818406"]]
Bucket Load (5.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_230826


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.892022"], ["updated_at", "2020-04-22 05:38:01.892022"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.910888"], ["updated_at", "2020-04-22 05:38:01.910888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_448712


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.924735"], ["updated_at", "2020-04-22 05:38:01.924735"]]
Recording Create (14.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.920634"], ["updated_at", "2020-04-22 05:38:01.920634"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:01.942002"], ["updated_at", "2020-04-22 05:38:01.942002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:01.951057"], ["updated_at", "2020-04-22 05:38:01.951057"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (12.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  begin transaction

CommentTest: test_23677


 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_30021


Course Create (23.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:01.992141"], ["updated_at", "2020-04-22 05:38:01.992141"]]
 (0.7ms)  SAVEPOINT active_record_1
Course Create (6.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.012808"], ["updated_at", "2020-04-22 05:38:02.012808"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.031862"], ["updated_at", "2020-04-22 05:38:02.031862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.023666"], ["updated_at", "2020-04-22 05:38:02.023666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.045848"], ["updated_at", "2020-04-22 05:38:02.045848"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.052677"], ["updated_at", "2020-04-22 05:38:02.052677"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_177949


 (6.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_746664


Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.178524"], ["updated_at", "2020-04-22 05:38:02.178524"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.192751"], ["updated_at", "2020-04-22 05:38:02.192751"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.205122"], ["updated_at", "2020-04-22 05:38:02.205122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.220388"], ["updated_at", "2020-04-22 05:38:02.220388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.234621"], ["updated_at", "2020-04-22 05:38:02.234621"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.253864"], ["updated_at", "2020-04-22 05:38:02.253864"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.2ms)  rollback transaction
 (4.7ms)  begin transaction

CommentTest: test_997734


 (17.6ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.337716"], ["updated_at", "2020-04-22 05:38:02.337716"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.356389"], ["updated_at", "2020-04-22 05:38:02.356389"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_976238


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.399647"], ["updated_at", "2020-04-22 05:38:02.399647"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.415332"], ["updated_at", "2020-04-22 05:38:02.415332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (9.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.370703"], ["updated_at", "2020-04-22 05:38:02.370703"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.434375"], ["updated_at", "2020-04-22 05:38:02.434375"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (25.0ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  begin transaction
 (4.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_829042


 (18.2ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.547459"], ["updated_at", "2020-04-22 05:38:02.547459"]]
 (0.2ms)  begin transaction

CommentTest: test_264622


 (1.0ms)  SAVEPOINT active_record_1
Bucket Create (9.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.580870"], ["updated_at", "2020-04-22 05:38:02.580870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (37.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.582608"], ["updated_at", "2020-04-22 05:38:02.582608"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.630511"], ["updated_at", "2020-04-22 05:38:02.630511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (93.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.605624"], ["updated_at", "2020-04-22 05:38:02.605624"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.750387"], ["updated_at", "2020-04-22 05:38:02.750387"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_105654


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.782088"], ["updated_at", "2020-04-22 05:38:02.782088"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.795283"], ["updated_at", "2020-04-22 05:38:02.795283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.804920"], ["updated_at", "2020-04-22 05:38:02.804920"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_614525


 (2.1ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.850748"], ["updated_at", "2020-04-22 05:38:02.850748"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:02.864277"], ["updated_at", "2020-04-22 05:38:02.864277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:02.874086"], ["updated_at", "2020-04-22 05:38:02.874086"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (58.7ms)  rollback transaction
 (14.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_363244


 (0.6ms)  begin transaction

CommentTest: test_895079


 (8.4ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.982148"], ["updated_at", "2020-04-22 05:38:02.982148"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:02.980759"], ["updated_at", "2020-04-22 05:38:02.980759"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.014924"], ["updated_at", "2020-04-22 05:38:03.014924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.020105"], ["updated_at", "2020-04-22 05:38:03.020105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.030767"], ["updated_at", "2020-04-22 05:38:03.030767"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (25.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.045241"], ["updated_at", "2020-04-22 05:38:03.045241"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_854669


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.150596"], ["updated_at", "2020-04-22 05:38:03.150596"]]
Bucket Create (3.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.164156"], ["updated_at", "2020-04-22 05:38:03.164156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.2ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_482957


 (0.8ms)  SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.196094"], ["updated_at", "2020-04-22 05:38:03.196094"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.215441"], ["updated_at", "2020-04-22 05:38:03.215441"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.228189"], ["updated_at", "2020-04-22 05:38:03.228189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.246452"], ["updated_at", "2020-04-22 05:38:03.246452"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_310782


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.361476"], ["updated_at", "2020-04-22 05:38:03.361476"]]
 (5.2ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.372624"], ["updated_at", "2020-04-22 05:38:03.372624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_844153


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.388451"], ["updated_at", "2020-04-22 05:38:03.388451"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.389368"], ["updated_at", "2020-04-22 05:38:03.389368"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.414189"], ["updated_at", "2020-04-22 05:38:03.414189"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.439507"], ["updated_at", "2020-04-22 05:38:03.439507"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (20.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_348920


 (0.4ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.555480"], ["updated_at", "2020-04-22 05:38:03.555480"]]
 (8.0ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.572844"], ["updated_at", "2020-04-22 05:38:03.572844"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_434013


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.589501"], ["updated_at", "2020-04-22 05:38:03.589501"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.602930"], ["updated_at", "2020-04-22 05:38:03.602930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (9.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.581585"], ["updated_at", "2020-04-22 05:38:03.581585"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.617676"], ["updated_at", "2020-04-22 05:38:03.617676"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_893429


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_1710


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.793499"], ["updated_at", "2020-04-22 05:38:03.793499"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.806682"], ["updated_at", "2020-04-22 05:38:03.806682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (10.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.715564"], ["updated_at", "2020-04-22 05:38:03.715564"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.822181"], ["updated_at", "2020-04-22 05:38:03.822181"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.831346"], ["updated_at", "2020-04-22 05:38:03.831346"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:03.851328"], ["updated_at", "2020-04-22 05:38:03.851328"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.7ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_511194


 (13.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.981790"], ["updated_at", "2020-04-22 05:38:03.981790"]]
 (0.2ms)  begin transaction

CommentTest: test_172182


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:03.996173"], ["updated_at", "2020-04-22 05:38:03.996173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:03.994525"], ["updated_at", "2020-04-22 05:38:03.994525"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.010677"], ["updated_at", "2020-04-22 05:38:04.010677"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.028262"], ["updated_at", "2020-04-22 05:38:04.028262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.048341"], ["updated_at", "2020-04-22 05:38:04.048341"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.0ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_657510


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.139137"], ["updated_at", "2020-04-22 05:38:04.139137"]]

CommentTest: test_65062


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.151657"], ["updated_at", "2020-04-22 05:38:04.151657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.152794"], ["updated_at", "2020-04-22 05:38:04.152794"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.162514"], ["updated_at", "2020-04-22 05:38:04.162514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.171573"], ["updated_at", "2020-04-22 05:38:04.171573"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.159681"], ["updated_at", "2020-04-22 05:38:04.159681"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_989487


 (11.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_883572


 (0.3ms)  SAVEPOINT active_record_1
Course Create (47.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.275119"], ["updated_at", "2020-04-22 05:38:04.275119"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.338443"], ["updated_at", "2020-04-22 05:38:04.338443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.315797"], ["updated_at", "2020-04-22 05:38:04.315797"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.365410"], ["updated_at", "2020-04-22 05:38:04.365410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.365062"], ["updated_at", "2020-04-22 05:38:04.365062"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.388995"], ["updated_at", "2020-04-22 05:38:04.388995"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (9.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_784661


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_218290


Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.479088"], ["updated_at", "2020-04-22 05:38:04.479088"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.491910"], ["updated_at", "2020-04-22 05:38:04.491910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.487210"], ["updated_at", "2020-04-22 05:38:04.487210"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.529391"], ["updated_at", "2020-04-22 05:38:04.529391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.500261"], ["updated_at", "2020-04-22 05:38:04.500261"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.571201"], ["updated_at", "2020-04-22 05:38:04.571201"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (17.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (25.7ms)  rollback transaction
 (10.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_798381


 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_778744


Course Create (47.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.641148"], ["updated_at", "2020-04-22 05:38:04.641148"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.652288"], ["updated_at", "2020-04-22 05:38:04.652288"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.705323"], ["updated_at", "2020-04-22 05:38:04.705323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.711988"], ["updated_at", "2020-04-22 05:38:04.711988"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.706087"], ["updated_at", "2020-04-22 05:38:04.706087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.739781"], ["updated_at", "2020-04-22 05:38:04.739781"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (10.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_66575


 (0.2ms)  begin transaction

CommentTest: test_879993


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.845186"], ["updated_at", "2020-04-22 05:38:04.845186"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (37.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:04.848885"], ["updated_at", "2020-04-22 05:38:04.848885"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.891473"], ["updated_at", "2020-04-22 05:38:04.891473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:04.906257"], ["updated_at", "2020-04-22 05:38:04.906257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.928004"], ["updated_at", "2020-04-22 05:38:04.928004"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:04.935033"], ["updated_at", "2020-04-22 05:38:04.935033"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.2ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_15792


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.064837"], ["updated_at", "2020-04-22 05:38:05.064837"]]
 (0.4ms)  begin transaction

CommentTest: test_164059


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.078951"], ["updated_at", "2020-04-22 05:38:05.078951"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.129754"], ["updated_at", "2020-04-22 05:38:05.129754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.121775"], ["updated_at", "2020-04-22 05:38:05.121775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (59.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.137443"], ["updated_at", "2020-04-22 05:38:05.137443"]]
Recording Create (5.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.137054"], ["updated_at", "2020-04-22 05:38:05.137054"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (6.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (7.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_950198


 (0.5ms)  SAVEPOINT active_record_1
 (26.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_259488


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.348060"], ["updated_at", "2020-04-22 05:38:05.348060"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.363826"], ["updated_at", "2020-04-22 05:38:05.363826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.323190"], ["updated_at", "2020-04-22 05:38:05.323190"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.387941"], ["updated_at", "2020-04-22 05:38:05.387941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.399808"], ["updated_at", "2020-04-22 05:38:05.399808"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.431364"], ["updated_at", "2020-04-22 05:38:05.431364"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_288621


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.484531"], ["updated_at", "2020-04-22 05:38:05.484531"]]
Comment Create (26.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_537185


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.516113"], ["updated_at", "2020-04-22 05:38:05.516113"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.497281"], ["updated_at", "2020-04-22 05:38:05.497281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (7.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.570042"], ["updated_at", "2020-04-22 05:38:05.570042"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.588354"], ["updated_at", "2020-04-22 05:38:05.588354"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (12.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.578362"], ["updated_at", "2020-04-22 05:38:05.578362"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
 (9.0ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_990283


 (0.2ms)  begin transaction

CommentTest: test_734733


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.681347"], ["updated_at", "2020-04-22 05:38:05.681347"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.682769"], ["updated_at", "2020-04-22 05:38:05.682769"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.694328"], ["updated_at", "2020-04-22 05:38:05.694328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.695664"], ["updated_at", "2020-04-22 05:38:05.695664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.701942"], ["updated_at", "2020-04-22 05:38:05.701942"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (22.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.799054"], ["updated_at", "2020-04-22 05:38:05.799054"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (45.2ms)  rollback transaction
 (16.0ms)  rollback transaction
 (0.8ms)  begin transaction

 (0.2ms)  begin transaction

CommentTest: test_239555



CommentTest: test_849158


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.907810"], ["updated_at", "2020-04-22 05:38:05.907810"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:05.910845"], ["updated_at", "2020-04-22 05:38:05.910845"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.919786"], ["updated_at", "2020-04-22 05:38:05.919786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.930700"], ["updated_at", "2020-04-22 05:38:05.930700"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:05.931254"], ["updated_at", "2020-04-22 05:38:05.931254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:05.938041"], ["updated_at", "2020-04-22 05:38:05.938041"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (15.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (6.1ms)  rollback transaction
 (18.5ms)  rollback transaction
 (2.1ms)  begin transaction

CommentTest: test_659569


 (0.2ms)  begin transaction

CommentTest: test_992710


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.097779"], ["updated_at", "2020-04-22 05:38:06.097779"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.116812"], ["updated_at", "2020-04-22 05:38:06.116812"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (25.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.101101"], ["updated_at", "2020-04-22 05:38:06.101101"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.143413"], ["updated_at", "2020-04-22 05:38:06.143413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.147083"], ["updated_at", "2020-04-22 05:38:06.147083"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.223887"], ["updated_at", "2020-04-22 05:38:06.223887"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_154223


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.297839"], ["updated_at", "2020-04-22 05:38:06.297839"]]
Comment Create (42.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.311864"], ["updated_at", "2020-04-22 05:38:06.311864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_484880


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.331372"], ["updated_at", "2020-04-22 05:38:06.331372"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.351657"], ["updated_at", "2020-04-22 05:38:06.351657"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.366662"], ["updated_at", "2020-04-22 05:38:06.366662"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.362887"], ["updated_at", "2020-04-22 05:38:06.362887"]]
Bucket Load (4.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_294998


 (0.3ms)  SAVEPOINT active_record_1
 (35.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_539746


 (0.3ms)  SAVEPOINT active_record_1
Course Create (22.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.536667"], ["updated_at", "2020-04-22 05:38:06.536667"]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.578920"], ["updated_at", "2020-04-22 05:38:06.578920"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.595711"], ["updated_at", "2020-04-22 05:38:06.595711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (7.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.593075"], ["updated_at", "2020-04-22 05:38:06.593075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.610520"], ["updated_at", "2020-04-22 05:38:06.610520"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.635916"], ["updated_at", "2020-04-22 05:38:06.635916"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (10.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_173330


 (0.2ms)  begin transaction

CommentTest: test_957104


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.897352"], ["updated_at", "2020-04-22 05:38:06.897352"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:06.897967"], ["updated_at", "2020-04-22 05:38:06.897967"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.906664"], ["updated_at", "2020-04-22 05:38:06.906664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:06.907162"], ["updated_at", "2020-04-22 05:38:06.907162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.913754"], ["updated_at", "2020-04-22 05:38:06.913754"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:06.915838"], ["updated_at", "2020-04-22 05:38:06.915838"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (10.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.3ms)  rollback transaction
 (32.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_874176


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:07.041739"], ["updated_at", "2020-04-22 05:38:07.041739"]]
 (0.2ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:07.052937"], ["updated_at", "2020-04-22 05:38:07.052937"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_601881


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:07.059732"], ["updated_at", "2020-04-22 05:38:07.059732"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:07.098906"], ["updated_at", "2020-04-22 05:38:07.098906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:07.118128"], ["updated_at", "2020-04-22 05:38:07.118128"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:07.107464"], ["updated_at", "2020-04-22 05:38:07.107464"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (15.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_653856


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:07.196419"], ["updated_at", "2020-04-22 05:38:07.196419"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:07.218784"], ["updated_at", "2020-04-22 05:38:07.218784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:07.320109"], ["updated_at", "2020-04-22 05:38:07.320109"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (25.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.3ms)  rollback transaction
 (0.4ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_239231



CommentTest: test_941609


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.426851"], ["updated_at", "2020-04-22 05:38:10.426851"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.428741"], ["updated_at", "2020-04-22 05:38:10.428741"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.436963"], ["updated_at", "2020-04-22 05:38:10.436963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.438911"], ["updated_at", "2020-04-22 05:38:10.438911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.445343"], ["updated_at", "2020-04-22 05:38:10.445343"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.446782"], ["updated_at", "2020-04-22 05:38:10.446782"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (15.5ms)  rollback transaction
 (9.9ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction


CommentTest: test_412479 CommentTest: test_624130



 (0.4ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.499941"], ["updated_at", "2020-04-22 05:38:10.499941"]]
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.500377"], ["updated_at", "2020-04-22 05:38:10.500377"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.511882"], ["updated_at", "2020-04-22 05:38:10.511882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.511559"], ["updated_at", "2020-04-22 05:38:10.511559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.518836"], ["updated_at", "2020-04-22 05:38:10.518836"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.521136"], ["updated_at", "2020-04-22 05:38:10.521136"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_229315


 (0.2ms)  begin transaction

CommentTest: test_578152


 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.571490"], ["updated_at", "2020-04-22 05:38:10.571490"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.582690"], ["updated_at", "2020-04-22 05:38:10.582690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (30.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.566587"], ["updated_at", "2020-04-22 05:38:10.566587"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.618608"], ["updated_at", "2020-04-22 05:38:10.618608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.637001"], ["updated_at", "2020-04-22 05:38:10.637001"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.645456"], ["updated_at", "2020-04-22 05:38:10.645456"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.2ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_748840


 (1.8ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_280859


 (0.3ms)  SAVEPOINT active_record_1
Course Create (17.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.764526"], ["updated_at", "2020-04-22 05:38:10.764526"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.804923"], ["updated_at", "2020-04-22 05:38:10.804923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (75.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.749303"], ["updated_at", "2020-04-22 05:38:10.749303"]]
Bucket Create (8.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.833854"], ["updated_at", "2020-04-22 05:38:10.833854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.857678"], ["updated_at", "2020-04-22 05:38:10.857678"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.857577"], ["updated_at", "2020-04-22 05:38:10.857577"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (15.7ms)  rollback transaction
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction
 (5.1ms)  rollback transaction

CommentTest: test_46369


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_503492


Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.916702"], ["updated_at", "2020-04-22 05:38:10.916702"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:10.923399"], ["updated_at", "2020-04-22 05:38:10.923399"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.927875"], ["updated_at", "2020-04-22 05:38:10.927875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:10.938416"], ["updated_at", "2020-04-22 05:38:10.938416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.951076"], ["updated_at", "2020-04-22 05:38:10.951076"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:10.954180"], ["updated_at", "2020-04-22 05:38:10.954180"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.2ms)  rollback transaction
 (3.7ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_215244


CommentTest: test_60574



 (0.3ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Course Create (6.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.032688"], ["updated_at", "2020-04-22 05:38:11.032688"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.031984"], ["updated_at", "2020-04-22 05:38:11.031984"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.048219"], ["updated_at", "2020-04-22 05:38:11.048219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.053951"], ["updated_at", "2020-04-22 05:38:11.053951"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.056612"], ["updated_at", "2020-04-22 05:38:11.056612"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.056716"], ["updated_at", "2020-04-22 05:38:11.056716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_876745


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.066828"], ["updated_at", "2020-04-22 05:38:11.066828"]]

CommentTest: test_686150


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.069802"], ["updated_at", "2020-04-22 05:38:11.069802"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.070223"], ["updated_at", "2020-04-22 05:38:11.070223"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.071935"], ["updated_at", "2020-04-22 05:38:11.071935"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.074002"], ["updated_at", "2020-04-22 05:38:11.074002"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.076856"], ["updated_at", "2020-04-22 05:38:11.076856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_552281


 (0.1ms)  begin transaction

CommentTest: test_553160


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.086840"], ["updated_at", "2020-04-22 05:38:11.086840"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.087181"], ["updated_at", "2020-04-22 05:38:11.087181"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.090279"], ["updated_at", "2020-04-22 05:38:11.090279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.090062"], ["updated_at", "2020-04-22 05:38:11.090062"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.092500"], ["updated_at", "2020-04-22 05:38:11.092500"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.092505"], ["updated_at", "2020-04-22 05:38:11.092505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_29063 CommentTest: test_664949



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.102724"], ["updated_at", "2020-04-22 05:38:11.102724"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.102709"], ["updated_at", "2020-04-22 05:38:11.102709"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.105610"], ["updated_at", "2020-04-22 05:38:11.105610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.106177"], ["updated_at", "2020-04-22 05:38:11.106177"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.108254"], ["updated_at", "2020-04-22 05:38:11.108254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.109545"], ["updated_at", "2020-04-22 05:38:11.109545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_388758


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.119084"], ["updated_at", "2020-04-22 05:38:11.119084"]]
 (0.1ms)  begin transaction

CommentTest: test_403455


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.121719"], ["updated_at", "2020-04-22 05:38:11.121719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.122411"], ["updated_at", "2020-04-22 05:38:11.122411"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.124572"], ["updated_at", "2020-04-22 05:38:11.124572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.125213"], ["updated_at", "2020-04-22 05:38:11.125213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.127573"], ["updated_at", "2020-04-22 05:38:11.127573"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_457364

 (0.1ms)  SAVEPOINT active_record_1

Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.133701"], ["updated_at", "2020-04-22 05:38:11.133701"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.138285"], ["updated_at", "2020-04-22 05:38:11.138285"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.143594"], ["updated_at", "2020-04-22 05:38:11.143594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_966386


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.149315"], ["updated_at", "2020-04-22 05:38:11.149315"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.151723"], ["updated_at", "2020-04-22 05:38:11.151723"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.153747"], ["updated_at", "2020-04-22 05:38:11.153747"]]

CommentTest: test_50996


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_307697


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.166507"], ["updated_at", "2020-04-22 05:38:11.166507"]]
Course Create (7.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.155719"], ["updated_at", "2020-04-22 05:38:11.155719"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.170241"], ["updated_at", "2020-04-22 05:38:11.170241"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.170365"], ["updated_at", "2020-04-22 05:38:11.170365"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.173003"], ["updated_at", "2020-04-22 05:38:11.173003"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.173450"], ["updated_at", "2020-04-22 05:38:11.173450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_442487



CommentTest: test_705104


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.183482"], ["updated_at", "2020-04-22 05:38:11.183482"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.183688"], ["updated_at", "2020-04-22 05:38:11.183688"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.185981"], ["updated_at", "2020-04-22 05:38:11.185981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.186319"], ["updated_at", "2020-04-22 05:38:11.186319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.187782"], ["updated_at", "2020-04-22 05:38:11.187782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.188308"], ["updated_at", "2020-04-22 05:38:11.188308"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_192667


 (0.1ms)  begin transaction

CommentTest: test_608562


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.197937"], ["updated_at", "2020-04-22 05:38:11.197937"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.198976"], ["updated_at", "2020-04-22 05:38:11.198976"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.201363"], ["updated_at", "2020-04-22 05:38:11.201363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.201028"], ["updated_at", "2020-04-22 05:38:11.201028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.203143"], ["updated_at", "2020-04-22 05:38:11.203143"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.203201"], ["updated_at", "2020-04-22 05:38:11.203201"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_590602


 (0.1ms)  begin transaction

CommentTest: test_275136


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.212395"], ["updated_at", "2020-04-22 05:38:11.212395"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.216052"], ["updated_at", "2020-04-22 05:38:11.216052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.217712"], ["updated_at", "2020-04-22 05:38:11.217712"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.212946"], ["updated_at", "2020-04-22 05:38:11.212946"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.220014"], ["updated_at", "2020-04-22 05:38:11.220014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.221821"], ["updated_at", "2020-04-22 05:38:11.221821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_858936


 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.226222"], ["updated_at", "2020-04-22 05:38:11.226222"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.228683"], ["updated_at", "2020-04-22 05:38:11.228683"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_464053


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.231444"], ["updated_at", "2020-04-22 05:38:11.231444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.231418"], ["updated_at", "2020-04-22 05:38:11.231418"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.234843"], ["updated_at", "2020-04-22 05:38:11.234843"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.236993"], ["updated_at", "2020-04-22 05:38:11.236993"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_82701


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.242525"], ["updated_at", "2020-04-22 05:38:11.242525"]]
 (0.1ms)  begin transaction

CommentTest: test_797878


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.245598"], ["updated_at", "2020-04-22 05:38:11.245598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.247848"], ["updated_at", "2020-04-22 05:38:11.247848"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.246313"], ["updated_at", "2020-04-22 05:38:11.246313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.250805"], ["updated_at", "2020-04-22 05:38:11.250805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.253467"], ["updated_at", "2020-04-22 05:38:11.253467"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_347038


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.259836"], ["updated_at", "2020-04-22 05:38:11.259836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.264045"], ["updated_at", "2020-04-22 05:38:11.264045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_835025


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.266794"], ["updated_at", "2020-04-22 05:38:11.266794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.268221"], ["updated_at", "2020-04-22 05:38:11.268221"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.272744"], ["updated_at", "2020-04-22 05:38:11.272744"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_269192


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.277018"], ["updated_at", "2020-04-22 05:38:11.277018"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.277016"], ["updated_at", "2020-04-22 05:38:11.277016"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.280333"], ["updated_at", "2020-04-22 05:38:11.280333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.282508"], ["updated_at", "2020-04-22 05:38:11.282508"]]
 (0.6ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_25989


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.287301"], ["updated_at", "2020-04-22 05:38:11.287301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.290471"], ["updated_at", "2020-04-22 05:38:11.290471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_252878


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.292920"], ["updated_at", "2020-04-22 05:38:11.292920"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.293576"], ["updated_at", "2020-04-22 05:38:11.293576"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_283194


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.309305"], ["updated_at", "2020-04-22 05:38:11.309305"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.311814"], ["updated_at", "2020-04-22 05:38:11.311814"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.312287"], ["updated_at", "2020-04-22 05:38:11.312287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.315097"], ["updated_at", "2020-04-22 05:38:11.315097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.318897"], ["updated_at", "2020-04-22 05:38:11.318897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_438988


 (0.1ms)  begin transaction

CommentTest: test_505987


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.328436"], ["updated_at", "2020-04-22 05:38:11.328436"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.331669"], ["updated_at", "2020-04-22 05:38:11.331669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.329083"], ["updated_at", "2020-04-22 05:38:11.329083"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.334645"], ["updated_at", "2020-04-22 05:38:11.334645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.335564"], ["updated_at", "2020-04-22 05:38:11.335564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.339839"], ["updated_at", "2020-04-22 05:38:11.339839"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_681529


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.344638"], ["updated_at", "2020-04-22 05:38:11.344638"]]
 (1.2ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.348315"], ["updated_at", "2020-04-22 05:38:11.348315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_548818


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.350447"], ["updated_at", "2020-04-22 05:38:11.350447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.351438"], ["updated_at", "2020-04-22 05:38:11.351438"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.353902"], ["updated_at", "2020-04-22 05:38:11.353902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.355998"], ["updated_at", "2020-04-22 05:38:11.355998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_910784


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.362653"], ["updated_at", "2020-04-22 05:38:11.362653"]]
 (0.1ms)  begin transaction

CommentTest: test_664247


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.366788"], ["updated_at", "2020-04-22 05:38:11.366788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.367426"], ["updated_at", "2020-04-22 05:38:11.367426"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.368716"], ["updated_at", "2020-04-22 05:38:11.368716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.370008"], ["updated_at", "2020-04-22 05:38:11.370008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.372185"], ["updated_at", "2020-04-22 05:38:11.372185"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_826254


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.377705"], ["updated_at", "2020-04-22 05:38:11.377705"]]
 (0.1ms)  begin transaction

CommentTest: test_317497


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.380513"], ["updated_at", "2020-04-22 05:38:11.380513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.382824"], ["updated_at", "2020-04-22 05:38:11.382824"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.384494"], ["updated_at", "2020-04-22 05:38:11.384494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (12.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.386291"], ["updated_at", "2020-04-22 05:38:11.386291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.433293"], ["updated_at", "2020-04-22 05:38:11.433293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.6ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_497922


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.451384"], ["updated_at", "2020-04-22 05:38:11.451384"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.455119"], ["updated_at", "2020-04-22 05:38:11.455119"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_231211


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.483797"], ["updated_at", "2020-04-22 05:38:11.483797"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.486807"], ["updated_at", "2020-04-22 05:38:11.486807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.489931"], ["updated_at", "2020-04-22 05:38:11.489931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.479786"], ["updated_at", "2020-04-22 05:38:11.479786"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (14.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_836990


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.559990"], ["updated_at", "2020-04-22 05:38:11.559990"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.562544"], ["updated_at", "2020-04-22 05:38:11.562544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.567524"], ["updated_at", "2020-04-22 05:38:11.567524"]]
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_599775


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_603896


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.580116"], ["updated_at", "2020-04-22 05:38:11.580116"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.582188"], ["updated_at", "2020-04-22 05:38:11.582188"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.586742"], ["updated_at", "2020-04-22 05:38:11.586742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.590588"], ["updated_at", "2020-04-22 05:38:11.590588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.590543"], ["updated_at", "2020-04-22 05:38:11.590543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.594429"], ["updated_at", "2020-04-22 05:38:11.594429"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_984606


 (0.2ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_174621


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.605306"], ["updated_at", "2020-04-22 05:38:11.605306"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.610261"], ["updated_at", "2020-04-22 05:38:11.610261"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.609586"], ["updated_at", "2020-04-22 05:38:11.609586"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.612485"], ["updated_at", "2020-04-22 05:38:11.612485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.613242"], ["updated_at", "2020-04-22 05:38:11.613242"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.619333"], ["updated_at", "2020-04-22 05:38:11.619333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_333402


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.622626"], ["updated_at", "2020-04-22 05:38:11.622626"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.625678"], ["updated_at", "2020-04-22 05:38:11.625678"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_438229


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.627937"], ["updated_at", "2020-04-22 05:38:11.627937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.629539"], ["updated_at", "2020-04-22 05:38:11.629539"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.645893"], ["updated_at", "2020-04-22 05:38:11.645893"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.649462"], ["updated_at", "2020-04-22 05:38:11.649462"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (29.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.5ms)  rollback transaction
 (11.2ms)  begin transaction

CommentTest: test_712049


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.720106"], ["updated_at", "2020-04-22 05:38:11.720106"]]
 (0.1ms)  begin transaction

CommentTest: test_193498


 (3.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.728760"], ["updated_at", "2020-04-22 05:38:11.728760"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.735465"], ["updated_at", "2020-04-22 05:38:11.735465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (10.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.726291"], ["updated_at", "2020-04-22 05:38:11.726291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.737916"], ["updated_at", "2020-04-22 05:38:11.737916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.743984"], ["updated_at", "2020-04-22 05:38:11.743984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_887517


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_184106


Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.760018"], ["updated_at", "2020-04-22 05:38:11.760018"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.761985"], ["updated_at", "2020-04-22 05:38:11.761985"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.765092"], ["updated_at", "2020-04-22 05:38:11.765092"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.763328"], ["updated_at", "2020-04-22 05:38:11.763328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.768794"], ["updated_at", "2020-04-22 05:38:11.768794"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.769001"], ["updated_at", "2020-04-22 05:38:11.769001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_858154


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_104523


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.780092"], ["updated_at", "2020-04-22 05:38:11.780092"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.782818"], ["updated_at", "2020-04-22 05:38:11.782818"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.784968"], ["updated_at", "2020-04-22 05:38:11.784968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.782285"], ["updated_at", "2020-04-22 05:38:11.782285"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.788497"], ["updated_at", "2020-04-22 05:38:11.788497"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.791096"], ["updated_at", "2020-04-22 05:38:11.791096"]]
 (0.1ms)  begin transaction

CommentTest: test_83750


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.794342"], ["updated_at", "2020-04-22 05:38:11.794342"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.797289"], ["updated_at", "2020-04-22 05:38:11.797289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.799679"], ["updated_at", "2020-04-22 05:38:11.799679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_978240


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.803919"], ["updated_at", "2020-04-22 05:38:11.803919"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.806876"], ["updated_at", "2020-04-22 05:38:11.806876"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.809263"], ["updated_at", "2020-04-22 05:38:11.809263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_326311


 (0.1ms)  begin transaction

CommentTest: test_360332


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.841785"], ["updated_at", "2020-04-22 05:38:11.841785"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.842379"], ["updated_at", "2020-04-22 05:38:11.842379"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.844733"], ["updated_at", "2020-04-22 05:38:11.844733"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.844973"], ["updated_at", "2020-04-22 05:38:11.844973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.847098"], ["updated_at", "2020-04-22 05:38:11.847098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.847878"], ["updated_at", "2020-04-22 05:38:11.847878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_866284


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.859399"], ["updated_at", "2020-04-22 05:38:11.859399"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.862240"], ["updated_at", "2020-04-22 05:38:11.862240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.864470"], ["updated_at", "2020-04-22 05:38:11.864470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_327960


 (0.1ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.879141"], ["updated_at", "2020-04-22 05:38:11.879141"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.885507"], ["updated_at", "2020-04-22 05:38:11.885507"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.888237"], ["updated_at", "2020-04-22 05:38:11.888237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_623610


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.895885"], ["updated_at", "2020-04-22 05:38:11.895885"]]
 (0.1ms)  begin transaction

CommentTest: test_570870


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.910077"], ["updated_at", "2020-04-22 05:38:11.910077"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.917605"], ["updated_at", "2020-04-22 05:38:11.917605"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.920371"], ["updated_at", "2020-04-22 05:38:11.920371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.922251"], ["updated_at", "2020-04-22 05:38:11.922251"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.925430"], ["updated_at", "2020-04-22 05:38:11.925430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_479485


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.930865"], ["updated_at", "2020-04-22 05:38:11.930865"]]
 (0.5ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.934710"], ["updated_at", "2020-04-22 05:38:11.934710"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_354693


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.937848"], ["updated_at", "2020-04-22 05:38:11.937848"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (7.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.938209"], ["updated_at", "2020-04-22 05:38:11.938209"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.948058"], ["updated_at", "2020-04-22 05:38:11.948058"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:11.950960"], ["updated_at", "2020-04-22 05:38:11.950960"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_526873


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:11.995212"], ["updated_at", "2020-04-22 05:38:11.995212"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:11.998508"], ["updated_at", "2020-04-22 05:38:11.998508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_42556


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.003511"], ["updated_at", "2020-04-22 05:38:12.003511"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.018042"], ["updated_at", "2020-04-22 05:38:12.018042"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.020415"], ["updated_at", "2020-04-22 05:38:12.020415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.022681"], ["updated_at", "2020-04-22 05:38:12.022681"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_565358


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.032768"], ["updated_at", "2020-04-22 05:38:12.032768"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.035600"], ["updated_at", "2020-04-22 05:38:12.035600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (6.0ms)  rollback transaction
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.038050"], ["updated_at", "2020-04-22 05:38:12.038050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_925826


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.053479"], ["updated_at", "2020-04-22 05:38:12.053479"]]
 (0.1ms)  begin transaction

CommentTest: test_17155


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.056989"], ["updated_at", "2020-04-22 05:38:12.056989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.059630"], ["updated_at", "2020-04-22 05:38:12.059630"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.059219"], ["updated_at", "2020-04-22 05:38:12.059219"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.065978"], ["updated_at", "2020-04-22 05:38:12.065978"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_322920


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.068725"], ["updated_at", "2020-04-22 05:38:12.068725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.070436"], ["updated_at", "2020-04-22 05:38:12.070436"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.073523"], ["updated_at", "2020-04-22 05:38:12.073523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.076910"], ["updated_at", "2020-04-22 05:38:12.076910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_554271


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.094553"], ["updated_at", "2020-04-22 05:38:12.094553"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.097614"], ["updated_at", "2020-04-22 05:38:12.097614"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.100500"], ["updated_at", "2020-04-22 05:38:12.100500"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_117848


 (0.7ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.139440"], ["updated_at", "2020-04-22 05:38:12.139440"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.144310"], ["updated_at", "2020-04-22 05:38:12.144310"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.146318"], ["updated_at", "2020-04-22 05:38:12.146318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_590764


 (0.6ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.157288"], ["updated_at", "2020-04-22 05:38:12.157288"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.161336"], ["updated_at", "2020-04-22 05:38:12.161336"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.163289"], ["updated_at", "2020-04-22 05:38:12.163289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_326908


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.187702"], ["updated_at", "2020-04-22 05:38:12.187702"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.193518"], ["updated_at", "2020-04-22 05:38:12.193518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.195731"], ["updated_at", "2020-04-22 05:38:12.195731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_198475


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.205407"], ["updated_at", "2020-04-22 05:38:12.205407"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.208474"], ["updated_at", "2020-04-22 05:38:12.208474"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.210532"], ["updated_at", "2020-04-22 05:38:12.210532"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_478967


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.222274"], ["updated_at", "2020-04-22 05:38:12.222274"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.228427"], ["updated_at", "2020-04-22 05:38:12.228427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.232345"], ["updated_at", "2020-04-22 05:38:12.232345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_873904


 (2.9ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.243731"], ["updated_at", "2020-04-22 05:38:12.243731"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.252423"], ["updated_at", "2020-04-22 05:38:12.252423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.255444"], ["updated_at", "2020-04-22 05:38:12.255444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_331545


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.272781"], ["updated_at", "2020-04-22 05:38:12.272781"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.282880"], ["updated_at", "2020-04-22 05:38:12.282880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.287790"], ["updated_at", "2020-04-22 05:38:12.287790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_165984


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.332225"], ["updated_at", "2020-04-22 05:38:12.332225"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.336931"], ["updated_at", "2020-04-22 05:38:12.336931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.338869"], ["updated_at", "2020-04-22 05:38:12.338869"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_192120


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.351206"], ["updated_at", "2020-04-22 05:38:12.351206"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.356781"], ["updated_at", "2020-04-22 05:38:12.356781"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.358793"], ["updated_at", "2020-04-22 05:38:12.358793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_863955


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.369208"], ["updated_at", "2020-04-22 05:38:12.369208"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.371160"], ["updated_at", "2020-04-22 05:38:12.371160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.372745"], ["updated_at", "2020-04-22 05:38:12.372745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_115745


 (19.2ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_996677


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.408434"], ["updated_at", "2020-04-22 05:38:12.408434"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.413050"], ["updated_at", "2020-04-22 05:38:12.413050"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.428847"], ["updated_at", "2020-04-22 05:38:12.428847"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_264097


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.440433"], ["updated_at", "2020-04-22 05:38:12.440433"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.444740"], ["updated_at", "2020-04-22 05:38:12.444740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.446880"], ["updated_at", "2020-04-22 05:38:12.446880"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.384617"], ["updated_at", "2020-04-22 05:38:12.384617"]]
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.455420"], ["updated_at", "2020-04-22 05:38:12.455420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_120259


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.459270"], ["updated_at", "2020-04-22 05:38:12.459270"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.458395"], ["updated_at", "2020-04-22 05:38:12.458395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.462183"], ["updated_at", "2020-04-22 05:38:12.462183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.465236"], ["updated_at", "2020-04-22 05:38:12.465236"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_343189


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.480601"], ["updated_at", "2020-04-22 05:38:12.480601"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.484768"], ["updated_at", "2020-04-22 05:38:12.484768"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.487339"], ["updated_at", "2020-04-22 05:38:12.487339"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (20.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_339846


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.515515"], ["updated_at", "2020-04-22 05:38:12.515515"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.519090"], ["updated_at", "2020-04-22 05:38:12.519090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.521345"], ["updated_at", "2020-04-22 05:38:12.521345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (78.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_844887


 (0.8ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.612244"], ["updated_at", "2020-04-22 05:38:12.612244"]]
 (0.1ms)  begin transaction

CommentTest: test_254478


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.614759"], ["updated_at", "2020-04-22 05:38:12.614759"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.614796"], ["updated_at", "2020-04-22 05:38:12.614796"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.616585"], ["updated_at", "2020-04-22 05:38:12.616585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.617563"], ["updated_at", "2020-04-22 05:38:12.617563"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.620840"], ["updated_at", "2020-04-22 05:38:12.620840"]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_343644


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.626924"], ["updated_at", "2020-04-22 05:38:12.626924"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.629424"], ["updated_at", "2020-04-22 05:38:12.629424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_260870


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.632022"], ["updated_at", "2020-04-22 05:38:12.632022"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.633952"], ["updated_at", "2020-04-22 05:38:12.633952"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.637155"], ["updated_at", "2020-04-22 05:38:12.637155"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.639658"], ["updated_at", "2020-04-22 05:38:12.639658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_610440


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.665128"], ["updated_at", "2020-04-22 05:38:12.665128"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.670080"], ["updated_at", "2020-04-22 05:38:12.670080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.672203"], ["updated_at", "2020-04-22 05:38:12.672203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_700299


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.680974"], ["updated_at", "2020-04-22 05:38:12.680974"]]
 (0.3ms)  begin transaction

CommentTest: test_918663


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.684484"], ["updated_at", "2020-04-22 05:38:12.684484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.686414"], ["updated_at", "2020-04-22 05:38:12.686414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.685964"], ["updated_at", "2020-04-22 05:38:12.685964"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.691199"], ["updated_at", "2020-04-22 05:38:12.691199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.694302"], ["updated_at", "2020-04-22 05:38:12.694302"]]
 (0.1ms)  begin transaction

CommentTest: test_758221


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.696714"], ["updated_at", "2020-04-22 05:38:12.696714"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.701351"], ["updated_at", "2020-04-22 05:38:12.701351"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.703288"], ["updated_at", "2020-04-22 05:38:12.703288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_416708


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.709807"], ["updated_at", "2020-04-22 05:38:12.709807"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.716064"], ["updated_at", "2020-04-22 05:38:12.716064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.718558"], ["updated_at", "2020-04-22 05:38:12.718558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_570001


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.727538"], ["updated_at", "2020-04-22 05:38:12.727538"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.729921"], ["updated_at", "2020-04-22 05:38:12.729921"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.733200"], ["updated_at", "2020-04-22 05:38:12.733200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_587910


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.739904"], ["updated_at", "2020-04-22 05:38:12.739904"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.743459"], ["updated_at", "2020-04-22 05:38:12.743459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.746595"], ["updated_at", "2020-04-22 05:38:12.746595"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_386791


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.760125"], ["updated_at", "2020-04-22 05:38:12.760125"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.775554"], ["updated_at", "2020-04-22 05:38:12.775554"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.779829"], ["updated_at", "2020-04-22 05:38:12.779829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (16.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_258570


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.793938"], ["updated_at", "2020-04-22 05:38:12.793938"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.796947"], ["updated_at", "2020-04-22 05:38:12.796947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.804227"], ["updated_at", "2020-04-22 05:38:12.804227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_521827


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.815921"], ["updated_at", "2020-04-22 05:38:12.815921"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.818985"], ["updated_at", "2020-04-22 05:38:12.818985"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.821125"], ["updated_at", "2020-04-22 05:38:12.821125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (5.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_396270


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.839778"], ["updated_at", "2020-04-22 05:38:12.839778"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.843766"], ["updated_at", "2020-04-22 05:38:12.843766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.845825"], ["updated_at", "2020-04-22 05:38:12.845825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_482979


 (0.3ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.863554"], ["updated_at", "2020-04-22 05:38:12.863554"]]
Bucket Load (15.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.866439"], ["updated_at", "2020-04-22 05:38:12.866439"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.868201"], ["updated_at", "2020-04-22 05:38:12.868201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_577586


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.878989"], ["updated_at", "2020-04-22 05:38:12.878989"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.881640"], ["updated_at", "2020-04-22 05:38:12.881640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (17.3ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.886075"], ["updated_at", "2020-04-22 05:38:12.886075"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_961627


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.889295"], ["updated_at", "2020-04-22 05:38:12.889295"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.892519"], ["updated_at", "2020-04-22 05:38:12.892519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.903687"], ["updated_at", "2020-04-22 05:38:12.903687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_829996


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.913392"], ["updated_at", "2020-04-22 05:38:12.913392"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.918762"], ["updated_at", "2020-04-22 05:38:12.918762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.921028"], ["updated_at", "2020-04-22 05:38:12.921028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_843863


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.932633"], ["updated_at", "2020-04-22 05:38:12.932633"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.936008"], ["updated_at", "2020-04-22 05:38:12.936008"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_199890


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.938806"], ["updated_at", "2020-04-22 05:38:12.938806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.938632"], ["updated_at", "2020-04-22 05:38:12.938632"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.945891"], ["updated_at", "2020-04-22 05:38:12.945891"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_582150


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.948306"], ["updated_at", "2020-04-22 05:38:12.948306"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.948276"], ["updated_at", "2020-04-22 05:38:12.948276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.950663"], ["updated_at", "2020-04-22 05:38:12.950663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.952485"], ["updated_at", "2020-04-22 05:38:12.952485"]]
 (0.7ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_434347


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.956321"], ["updated_at", "2020-04-22 05:38:12.956321"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.960967"], ["updated_at", "2020-04-22 05:38:12.960967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.964644"], ["updated_at", "2020-04-22 05:38:12.964644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_84159


 (0.1ms)  SAVEPOINT active_record_1
Course Create (13.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:12.977019"], ["updated_at", "2020-04-22 05:38:12.977019"]]
Comment Create (36.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:12.995127"], ["updated_at", "2020-04-22 05:38:12.995127"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:12.997282"], ["updated_at", "2020-04-22 05:38:12.997282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_695984


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.009231"], ["updated_at", "2020-04-22 05:38:13.009231"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.011959"], ["updated_at", "2020-04-22 05:38:13.011959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_648649


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.014160"], ["updated_at", "2020-04-22 05:38:13.014160"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.018435"], ["updated_at", "2020-04-22 05:38:13.018435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.021672"], ["updated_at", "2020-04-22 05:38:13.021672"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.024440"], ["updated_at", "2020-04-22 05:38:13.024440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_639140


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.034167"], ["updated_at", "2020-04-22 05:38:13.034167"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.036927"], ["updated_at", "2020-04-22 05:38:13.036927"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.039228"], ["updated_at", "2020-04-22 05:38:13.039228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_360309


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.063595"], ["updated_at", "2020-04-22 05:38:13.063595"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.069275"], ["updated_at", "2020-04-22 05:38:13.069275"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.071789"], ["updated_at", "2020-04-22 05:38:13.071789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_902741


 (0.1ms)  SAVEPOINT active_record_1
Course Create (8.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.085570"], ["updated_at", "2020-04-22 05:38:13.085570"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.096451"], ["updated_at", "2020-04-22 05:38:13.096451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_91240


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.101920"], ["updated_at", "2020-04-22 05:38:13.101920"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.104775"], ["updated_at", "2020-04-22 05:38:13.104775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.107312"], ["updated_at", "2020-04-22 05:38:13.107312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_618309


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.122660"], ["updated_at", "2020-04-22 05:38:13.122660"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.129225"], ["updated_at", "2020-04-22 05:38:13.129225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (27.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.102030"], ["updated_at", "2020-04-22 05:38:13.102030"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.132298"], ["updated_at", "2020-04-22 05:38:13.132298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_544725


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.155511"], ["updated_at", "2020-04-22 05:38:13.155511"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.159650"], ["updated_at", "2020-04-22 05:38:13.159650"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.162369"], ["updated_at", "2020-04-22 05:38:13.162369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_453774


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.175100"], ["updated_at", "2020-04-22 05:38:13.175100"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.179347"], ["updated_at", "2020-04-22 05:38:13.179347"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.181857"], ["updated_at", "2020-04-22 05:38:13.181857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_320135


 (0.1ms)  begin transaction

CommentTest: test_49191


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.189771"], ["updated_at", "2020-04-22 05:38:13.189771"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.189291"], ["updated_at", "2020-04-22 05:38:13.189291"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.193286"], ["updated_at", "2020-04-22 05:38:13.193286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.194212"], ["updated_at", "2020-04-22 05:38:13.194212"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.196350"], ["updated_at", "2020-04-22 05:38:13.196350"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.197196"], ["updated_at", "2020-04-22 05:38:13.197196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_209873


 (0.1ms)  begin transaction

CommentTest: test_245901


 (0.6ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.206245"], ["updated_at", "2020-04-22 05:38:13.206245"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.206748"], ["updated_at", "2020-04-22 05:38:13.206748"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.210222"], ["updated_at", "2020-04-22 05:38:13.210222"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.210250"], ["updated_at", "2020-04-22 05:38:13.210250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.211828"], ["updated_at", "2020-04-22 05:38:13.211828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.212290"], ["updated_at", "2020-04-22 05:38:13.212290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_464022


 (0.1ms)  begin transaction

CommentTest: test_882422


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.222550"], ["updated_at", "2020-04-22 05:38:13.222550"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.223871"], ["updated_at", "2020-04-22 05:38:13.223871"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.225117"], ["updated_at", "2020-04-22 05:38:13.225117"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.227289"], ["updated_at", "2020-04-22 05:38:13.227289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.227749"], ["updated_at", "2020-04-22 05:38:13.227749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.229741"], ["updated_at", "2020-04-22 05:38:13.229741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_840895


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.242530"], ["updated_at", "2020-04-22 05:38:13.242530"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.246372"], ["updated_at", "2020-04-22 05:38:13.246372"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.249426"], ["updated_at", "2020-04-22 05:38:13.249426"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_364531


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_185563


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.319269"], ["updated_at", "2020-04-22 05:38:13.319269"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.322201"], ["updated_at", "2020-04-22 05:38:13.322201"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.321428"], ["updated_at", "2020-04-22 05:38:13.321428"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.325575"], ["updated_at", "2020-04-22 05:38:13.325575"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.325964"], ["updated_at", "2020-04-22 05:38:13.325964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.327908"], ["updated_at", "2020-04-22 05:38:13.327908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_82023


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.336400"], ["updated_at", "2020-04-22 05:38:13.336400"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.338904"], ["updated_at", "2020-04-22 05:38:13.338904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.341113"], ["updated_at", "2020-04-22 05:38:13.341113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_344453


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.346969"], ["updated_at", "2020-04-22 05:38:13.346969"]]
 (0.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_902582


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.349529"], ["updated_at", "2020-04-22 05:38:13.349529"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.352005"], ["updated_at", "2020-04-22 05:38:13.352005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.351353"], ["updated_at", "2020-04-22 05:38:13.351353"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.354763"], ["updated_at", "2020-04-22 05:38:13.354763"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.356895"], ["updated_at", "2020-04-22 05:38:13.356895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  begin transaction

CommentTest: test_796193


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.360307"], ["updated_at", "2020-04-22 05:38:13.360307"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.362502"], ["updated_at", "2020-04-22 05:38:13.362502"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_908275


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.364626"], ["updated_at", "2020-04-22 05:38:13.364626"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.365914"], ["updated_at", "2020-04-22 05:38:13.365914"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.369187"], ["updated_at", "2020-04-22 05:38:13.369187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.371750"], ["updated_at", "2020-04-22 05:38:13.371750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_422287


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.375601"], ["updated_at", "2020-04-22 05:38:13.375601"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.379329"], ["updated_at", "2020-04-22 05:38:13.379329"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.381574"], ["updated_at", "2020-04-22 05:38:13.381574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_717666


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.404803"], ["updated_at", "2020-04-22 05:38:13.404803"]]
 (3.7ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.409576"], ["updated_at", "2020-04-22 05:38:13.409576"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_380367


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.412320"], ["updated_at", "2020-04-22 05:38:13.412320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.413796"], ["updated_at", "2020-04-22 05:38:13.413796"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.418762"], ["updated_at", "2020-04-22 05:38:13.418762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_966991


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.424790"], ["updated_at", "2020-04-22 05:38:13.424790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.425122"], ["updated_at", "2020-04-22 05:38:13.425122"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.427948"], ["updated_at", "2020-04-22 05:38:13.427948"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.430409"], ["updated_at", "2020-04-22 05:38:13.430409"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_993649


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.442147"], ["updated_at", "2020-04-22 05:38:13.442147"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.445077"], ["updated_at", "2020-04-22 05:38:13.445077"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.447234"], ["updated_at", "2020-04-22 05:38:13.447234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_523454


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.458922"], ["updated_at", "2020-04-22 05:38:13.458922"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.463296"], ["updated_at", "2020-04-22 05:38:13.463296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.465741"], ["updated_at", "2020-04-22 05:38:13.465741"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_786180


 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (47.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.514757"], ["updated_at", "2020-04-22 05:38:13.514757"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.520959"], ["updated_at", "2020-04-22 05:38:13.520959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.523229"], ["updated_at", "2020-04-22 05:38:13.523229"]]
 (0.9ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_62008


 (0.1ms)  begin transaction

CommentTest: test_212882


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.534044"], ["updated_at", "2020-04-22 05:38:13.534044"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.534274"], ["updated_at", "2020-04-22 05:38:13.534274"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.536973"], ["updated_at", "2020-04-22 05:38:13.536973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.537641"], ["updated_at", "2020-04-22 05:38:13.537641"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.539231"], ["updated_at", "2020-04-22 05:38:13.539231"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.539548"], ["updated_at", "2020-04-22 05:38:13.539548"]]
 (2.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_617247


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.551733"], ["updated_at", "2020-04-22 05:38:13.551733"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.554271"], ["updated_at", "2020-04-22 05:38:13.554271"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.556521"], ["updated_at", "2020-04-22 05:38:13.556521"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_359337


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.576918"], ["updated_at", "2020-04-22 05:38:13.576918"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.580809"], ["updated_at", "2020-04-22 05:38:13.580809"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.0ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.583944"], ["updated_at", "2020-04-22 05:38:13.583944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_119334


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.594713"], ["updated_at", "2020-04-22 05:38:13.594713"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.597553"], ["updated_at", "2020-04-22 05:38:13.597553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_792182


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.600909"], ["updated_at", "2020-04-22 05:38:13.600909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.602825"], ["updated_at", "2020-04-22 05:38:13.602825"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.605685"], ["updated_at", "2020-04-22 05:38:13.605685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_816651


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.608983"], ["updated_at", "2020-04-22 05:38:13.608983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.610973"], ["updated_at", "2020-04-22 05:38:13.610973"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.613684"], ["updated_at", "2020-04-22 05:38:13.613684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  rollback transaction
 (0.5ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.615991"], ["updated_at", "2020-04-22 05:38:13.615991"]]

CommentTest: test_733660


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.617755"], ["updated_at", "2020-04-22 05:38:13.617755"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.620574"], ["updated_at", "2020-04-22 05:38:13.620574"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_383129


Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.622857"], ["updated_at", "2020-04-22 05:38:13.622857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.624619"], ["updated_at", "2020-04-22 05:38:13.624619"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.627407"], ["updated_at", "2020-04-22 05:38:13.627407"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.629942"], ["updated_at", "2020-04-22 05:38:13.629942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_720351


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (14.3ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.639351"], ["updated_at", "2020-04-22 05:38:13.639351"]]

CommentTest: test_243169


 (0.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.665924"], ["updated_at", "2020-04-22 05:38:13.665924"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.672181"], ["updated_at", "2020-04-22 05:38:13.672181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.674539"], ["updated_at", "2020-04-22 05:38:13.674539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.674933"], ["updated_at", "2020-04-22 05:38:13.674933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.676964"], ["updated_at", "2020-04-22 05:38:13.676964"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_320264


 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.685569"], ["updated_at", "2020-04-22 05:38:13.685569"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.688378"], ["updated_at", "2020-04-22 05:38:13.688378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_43677


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.690505"], ["updated_at", "2020-04-22 05:38:13.690505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.692018"], ["updated_at", "2020-04-22 05:38:13.692018"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.695794"], ["updated_at", "2020-04-22 05:38:13.695794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.697706"], ["updated_at", "2020-04-22 05:38:13.697706"]]
 (0.0ms)  begin transaction

CommentTest: test_747266


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.700409"], ["updated_at", "2020-04-22 05:38:13.700409"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.702911"], ["updated_at", "2020-04-22 05:38:13.702911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.705399"], ["updated_at", "2020-04-22 05:38:13.705399"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_270322


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.727289"], ["updated_at", "2020-04-22 05:38:13.727289"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.730561"], ["updated_at", "2020-04-22 05:38:13.730561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.734050"], ["updated_at", "2020-04-22 05:38:13.734050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_869687


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.746291"], ["updated_at", "2020-04-22 05:38:13.746291"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.749154"], ["updated_at", "2020-04-22 05:38:13.749154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.754218"], ["updated_at", "2020-04-22 05:38:13.754218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_67270


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_912023


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.776667"], ["updated_at", "2020-04-22 05:38:13.776667"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.779736"], ["updated_at", "2020-04-22 05:38:13.779736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.782078"], ["updated_at", "2020-04-22 05:38:13.782078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_204758


 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.851855"], ["updated_at", "2020-04-22 05:38:13.851855"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.863273"], ["updated_at", "2020-04-22 05:38:13.863273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.764696"], ["updated_at", "2020-04-22 05:38:13.764696"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.865491"], ["updated_at", "2020-04-22 05:38:13.865491"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_19257


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.876888"], ["updated_at", "2020-04-22 05:38:13.876888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.876756"], ["updated_at", "2020-04-22 05:38:13.876756"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.879896"], ["updated_at", "2020-04-22 05:38:13.879896"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.879627"], ["updated_at", "2020-04-22 05:38:13.879627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.882639"], ["updated_at", "2020-04-22 05:38:13.882639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_671938


 (0.1ms)  begin transaction

CommentTest: test_12193


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.893293"], ["updated_at", "2020-04-22 05:38:13.893293"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.894579"], ["updated_at", "2020-04-22 05:38:13.894579"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.895966"], ["updated_at", "2020-04-22 05:38:13.895966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.896935"], ["updated_at", "2020-04-22 05:38:13.896935"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.897920"], ["updated_at", "2020-04-22 05:38:13.897920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.898733"], ["updated_at", "2020-04-22 05:38:13.898733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_481537


 (0.3ms)  begin transaction

CommentTest: test_65398


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.912158"], ["updated_at", "2020-04-22 05:38:13.912158"]]
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.912704"], ["updated_at", "2020-04-22 05:38:13.912704"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.915193"], ["updated_at", "2020-04-22 05:38:13.915193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.915193"], ["updated_at", "2020-04-22 05:38:13.915193"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.918053"], ["updated_at", "2020-04-22 05:38:13.918053"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.917981"], ["updated_at", "2020-04-22 05:38:13.917981"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_664542



CommentTest: test_218259


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.928542"], ["updated_at", "2020-04-22 05:38:13.928542"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.928911"], ["updated_at", "2020-04-22 05:38:13.928911"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.931589"], ["updated_at", "2020-04-22 05:38:13.931589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.933312"], ["updated_at", "2020-04-22 05:38:13.933312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.934436"], ["updated_at", "2020-04-22 05:38:13.934436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.936966"], ["updated_at", "2020-04-22 05:38:13.936966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_293536


 (0.1ms)  begin transaction

CommentTest: test_327447


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.948236"], ["updated_at", "2020-04-22 05:38:13.948236"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.948898"], ["updated_at", "2020-04-22 05:38:13.948898"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.950952"], ["updated_at", "2020-04-22 05:38:13.950952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.951288"], ["updated_at", "2020-04-22 05:38:13.951288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.953346"], ["updated_at", "2020-04-22 05:38:13.953346"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.953186"], ["updated_at", "2020-04-22 05:38:13.953186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_834408



CommentTest: test_622090


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.962647"], ["updated_at", "2020-04-22 05:38:13.962647"]]
 (1.2ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.965719"], ["updated_at", "2020-04-22 05:38:13.965719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.962718"], ["updated_at", "2020-04-22 05:38:13.962718"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.967817"], ["updated_at", "2020-04-22 05:38:13.967817"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.968068"], ["updated_at", "2020-04-22 05:38:13.968068"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.970549"], ["updated_at", "2020-04-22 05:38:13.970549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_175956


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.979016"], ["updated_at", "2020-04-22 05:38:13.979016"]]
 (0.1ms)  begin transaction

CommentTest: test_420710


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.981553"], ["updated_at", "2020-04-22 05:38:13.981553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.984502"], ["updated_at", "2020-04-22 05:38:13.984502"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.984400"], ["updated_at", "2020-04-22 05:38:13.984400"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:13.987281"], ["updated_at", "2020-04-22 05:38:13.987281"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:13.989195"], ["updated_at", "2020-04-22 05:38:13.989195"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_678825


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:13.998018"], ["updated_at", "2020-04-22 05:38:13.998018"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.002029"], ["updated_at", "2020-04-22 05:38:14.002029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.004614"], ["updated_at", "2020-04-22 05:38:14.004614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_408481


Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.011446"], ["updated_at", "2020-04-22 05:38:14.011446"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.013926"], ["updated_at", "2020-04-22 05:38:14.013926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.015832"], ["updated_at", "2020-04-22 05:38:14.015832"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.7ms)  SAVEPOINT active_record_1

CommentTest: test_977482


Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.057648"], ["updated_at", "2020-04-22 05:38:14.057648"]]
 (0.1ms)  begin transaction

CommentTest: test_177872


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.060513"], ["updated_at", "2020-04-22 05:38:14.060513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.062735"], ["updated_at", "2020-04-22 05:38:14.062735"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.062238"], ["updated_at", "2020-04-22 05:38:14.062238"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.069958"], ["updated_at", "2020-04-22 05:38:14.069958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.074371"], ["updated_at", "2020-04-22 05:38:14.074371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_50663


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.086059"], ["updated_at", "2020-04-22 05:38:14.086059"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.090144"], ["updated_at", "2020-04-22 05:38:14.090144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.094521"], ["updated_at", "2020-04-22 05:38:14.094521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_153135


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.106710"], ["updated_at", "2020-04-22 05:38:14.106710"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.110766"], ["updated_at", "2020-04-22 05:38:14.110766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.114834"], ["updated_at", "2020-04-22 05:38:14.114834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_613161


 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.125859"], ["updated_at", "2020-04-22 05:38:14.125859"]]
 (0.1ms)  begin transaction

CommentTest: test_397902


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.128340"], ["updated_at", "2020-04-22 05:38:14.128340"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.130443"], ["updated_at", "2020-04-22 05:38:14.130443"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.129716"], ["updated_at", "2020-04-22 05:38:14.129716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.134414"], ["updated_at", "2020-04-22 05:38:14.134414"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.137012"], ["updated_at", "2020-04-22 05:38:14.137012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_43246


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_919433


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.152804"], ["updated_at", "2020-04-22 05:38:14.152804"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.156171"], ["updated_at", "2020-04-22 05:38:14.156171"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.160770"], ["updated_at", "2020-04-22 05:38:14.160770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_229284


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.171243"], ["updated_at", "2020-04-22 05:38:14.171243"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.174286"], ["updated_at", "2020-04-22 05:38:14.174286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.176341"], ["updated_at", "2020-04-22 05:38:14.176341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_958846


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.185022"], ["updated_at", "2020-04-22 05:38:14.185022"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.187870"], ["updated_at", "2020-04-22 05:38:14.187870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.189420"], ["updated_at", "2020-04-22 05:38:14.189420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.186684"], ["updated_at", "2020-04-22 05:38:14.186684"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.195487"], ["updated_at", "2020-04-22 05:38:14.195487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_926340


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.199667"], ["updated_at", "2020-04-22 05:38:14.199667"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.202037"], ["updated_at", "2020-04-22 05:38:14.202037"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.203911"], ["updated_at", "2020-04-22 05:38:14.203911"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.199608"], ["updated_at", "2020-04-22 05:38:14.199608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_753239


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.214151"], ["updated_at", "2020-04-22 05:38:14.214151"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.217147"], ["updated_at", "2020-04-22 05:38:14.217147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.222809"], ["updated_at", "2020-04-22 05:38:14.222809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_670074


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.230433"], ["updated_at", "2020-04-22 05:38:14.230433"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.234734"], ["updated_at", "2020-04-22 05:38:14.234734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.236980"], ["updated_at", "2020-04-22 05:38:14.236980"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_999817


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.244560"], ["updated_at", "2020-04-22 05:38:14.244560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.247846"], ["updated_at", "2020-04-22 05:38:14.247846"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.257596"], ["updated_at", "2020-04-22 05:38:14.257596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  begin transaction

CommentTest: test_706418


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.270388"], ["updated_at", "2020-04-22 05:38:14.270388"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.273380"], ["updated_at", "2020-04-22 05:38:14.273380"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.276597"], ["updated_at", "2020-04-22 05:38:14.276597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_709386


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.296939"], ["updated_at", "2020-04-22 05:38:14.296939"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.299998"], ["updated_at", "2020-04-22 05:38:14.299998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.302812"], ["updated_at", "2020-04-22 05:38:14.302812"]]
 (4.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_154615


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.312316"], ["updated_at", "2020-04-22 05:38:14.312316"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.314953"], ["updated_at", "2020-04-22 05:38:14.314953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_606876


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.319420"], ["updated_at", "2020-04-22 05:38:14.319420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.322218"], ["updated_at", "2020-04-22 05:38:14.322218"]]
 (0.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_718874


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.327945"], ["updated_at", "2020-04-22 05:38:14.327945"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.329459"], ["updated_at", "2020-04-22 05:38:14.329459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.330324"], ["updated_at", "2020-04-22 05:38:14.330324"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.331531"], ["updated_at", "2020-04-22 05:38:14.331531"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.332124"], ["updated_at", "2020-04-22 05:38:14.332124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_142326


Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.343169"], ["updated_at", "2020-04-22 05:38:14.343169"]]
 (0.1ms)  begin transaction

CommentTest: test_839800


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.345831"], ["updated_at", "2020-04-22 05:38:14.345831"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.348347"], ["updated_at", "2020-04-22 05:38:14.348347"]]
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.347428"], ["updated_at", "2020-04-22 05:38:14.347428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.353510"], ["updated_at", "2020-04-22 05:38:14.353510"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.356015"], ["updated_at", "2020-04-22 05:38:14.356015"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_182032


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.360941"], ["updated_at", "2020-04-22 05:38:14.360941"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.363368"], ["updated_at", "2020-04-22 05:38:14.363368"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  rollback transaction
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.365803"], ["updated_at", "2020-04-22 05:38:14.365803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_273060


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.368528"], ["updated_at", "2020-04-22 05:38:14.368528"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.371345"], ["updated_at", "2020-04-22 05:38:14.371345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.374421"], ["updated_at", "2020-04-22 05:38:14.374421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_336821


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.385748"], ["updated_at", "2020-04-22 05:38:14.385748"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.388882"], ["updated_at", "2020-04-22 05:38:14.388882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.409311"], ["updated_at", "2020-04-22 05:38:14.409311"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_129006


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (4.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.445076"], ["updated_at", "2020-04-22 05:38:14.445076"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.452572"], ["updated_at", "2020-04-22 05:38:14.452572"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_118593


 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.456074"], ["updated_at", "2020-04-22 05:38:14.456074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.456136"], ["updated_at", "2020-04-22 05:38:14.456136"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.458959"], ["updated_at", "2020-04-22 05:38:14.458959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.461446"], ["updated_at", "2020-04-22 05:38:14.461446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_217424


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.474261"], ["updated_at", "2020-04-22 05:38:14.474261"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.477908"], ["updated_at", "2020-04-22 05:38:14.477908"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.481208"], ["updated_at", "2020-04-22 05:38:14.481208"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.1ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_650010


 (0.1ms)  begin transaction

CommentTest: test_287411


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.497098"], ["updated_at", "2020-04-22 05:38:14.497098"]]
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.495779"], ["updated_at", "2020-04-22 05:38:14.495779"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.502484"], ["updated_at", "2020-04-22 05:38:14.502484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.502775"], ["updated_at", "2020-04-22 05:38:14.502775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.504596"], ["updated_at", "2020-04-22 05:38:14.504596"]]
 (2.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (9.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.504806"], ["updated_at", "2020-04-22 05:38:14.504806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.4ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction


CommentTest: test_347117 CommentTest: test_207671



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.543564"], ["updated_at", "2020-04-22 05:38:14.543564"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.543568"], ["updated_at", "2020-04-22 05:38:14.543568"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.546543"], ["updated_at", "2020-04-22 05:38:14.546543"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.549461"], ["updated_at", "2020-04-22 05:38:14.549461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.548219"], ["updated_at", "2020-04-22 05:38:14.548219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  rollback transaction
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.559624"], ["updated_at", "2020-04-22 05:38:14.559624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_155388


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.562916"], ["updated_at", "2020-04-22 05:38:14.562916"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.566427"], ["updated_at", "2020-04-22 05:38:14.566427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.572657"], ["updated_at", "2020-04-22 05:38:14.572657"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_916431


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.576727"], ["updated_at", "2020-04-22 05:38:14.576727"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.579368"], ["updated_at", "2020-04-22 05:38:14.579368"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_115442


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.582386"], ["updated_at", "2020-04-22 05:38:14.582386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.583803"], ["updated_at", "2020-04-22 05:38:14.583803"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.590036"], ["updated_at", "2020-04-22 05:38:14.590036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_676717


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.592794"], ["updated_at", "2020-04-22 05:38:14.592794"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.593743"], ["updated_at", "2020-04-22 05:38:14.593743"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.596634"], ["updated_at", "2020-04-22 05:38:14.596634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.598786"], ["updated_at", "2020-04-22 05:38:14.598786"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_848959


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.602598"], ["updated_at", "2020-04-22 05:38:14.602598"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.605760"], ["updated_at", "2020-04-22 05:38:14.605760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_590061


Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.608982"], ["updated_at", "2020-04-22 05:38:14.608982"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.610265"], ["updated_at", "2020-04-22 05:38:14.610265"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.614320"], ["updated_at", "2020-04-22 05:38:14.614320"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.616810"], ["updated_at", "2020-04-22 05:38:14.616810"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_287953


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.619783"], ["updated_at", "2020-04-22 05:38:14.619783"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.623218"], ["updated_at", "2020-04-22 05:38:14.623218"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.626037"], ["updated_at", "2020-04-22 05:38:14.626037"]]
 (0.1ms)  begin transaction

CommentTest: test_525245


 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.628281"], ["updated_at", "2020-04-22 05:38:14.628281"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.631245"], ["updated_at", "2020-04-22 05:38:14.631245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.633483"], ["updated_at", "2020-04-22 05:38:14.633483"]]
 (3.2ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_64237


 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_355127


 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.664521"], ["updated_at", "2020-04-22 05:38:14.664521"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.669794"], ["updated_at", "2020-04-22 05:38:14.669794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.672266"], ["updated_at", "2020-04-22 05:38:14.672266"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.647186"], ["updated_at", "2020-04-22 05:38:14.647186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.674860"], ["updated_at", "2020-04-22 05:38:14.674860"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.677211"], ["updated_at", "2020-04-22 05:38:14.677211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_598066


Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.685138"], ["updated_at", "2020-04-22 05:38:14.685138"]]
 (0.1ms)  begin transaction

CommentTest: test_377191


 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.689714"], ["updated_at", "2020-04-22 05:38:14.689714"]]
Bucket Create (2.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.688028"], ["updated_at", "2020-04-22 05:38:14.688028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.693668"], ["updated_at", "2020-04-22 05:38:14.693668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.695257"], ["updated_at", "2020-04-22 05:38:14.695257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.695991"], ["updated_at", "2020-04-22 05:38:14.695991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_885415


 (0.1ms)  begin transaction

CommentTest: test_445335


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.706570"], ["updated_at", "2020-04-22 05:38:14.706570"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.706218"], ["updated_at", "2020-04-22 05:38:14.706218"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.712100"], ["updated_at", "2020-04-22 05:38:14.712100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.713948"], ["updated_at", "2020-04-22 05:38:14.713948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.714615"], ["updated_at", "2020-04-22 05:38:14.714615"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.721889"], ["updated_at", "2020-04-22 05:38:14.721889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_414121


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.727289"], ["updated_at", "2020-04-22 05:38:14.727289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_895490


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.730524"], ["updated_at", "2020-04-22 05:38:14.730524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.734033"], ["updated_at", "2020-04-22 05:38:14.734033"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.733234"], ["updated_at", "2020-04-22 05:38:14.733234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.736664"], ["updated_at", "2020-04-22 05:38:14.736664"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.738619"], ["updated_at", "2020-04-22 05:38:14.738619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_749680


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.743212"], ["updated_at", "2020-04-22 05:38:14.743212"]]
 (0.5ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_209191


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.745704"], ["updated_at", "2020-04-22 05:38:14.745704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.747502"], ["updated_at", "2020-04-22 05:38:14.747502"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.747914"], ["updated_at", "2020-04-22 05:38:14.747914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_866052


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.749291"], ["updated_at", "2020-04-22 05:38:14.749291"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.763098"], ["updated_at", "2020-04-22 05:38:14.763098"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.763587"], ["updated_at", "2020-04-22 05:38:14.763587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.768435"], ["updated_at", "2020-04-22 05:38:14.768435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.772614"], ["updated_at", "2020-04-22 05:38:14.772614"]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_723599


 (1.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.781691"], ["updated_at", "2020-04-22 05:38:14.781691"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_832128


Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.784736"], ["updated_at", "2020-04-22 05:38:14.784736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.786906"], ["updated_at", "2020-04-22 05:38:14.786906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.786847"], ["updated_at", "2020-04-22 05:38:14.786847"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.790850"], ["updated_at", "2020-04-22 05:38:14.790850"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.793343"], ["updated_at", "2020-04-22 05:38:14.793343"]]
 (0.1ms)  begin transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_312880


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.796886"], ["updated_at", "2020-04-22 05:38:14.796886"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.800207"], ["updated_at", "2020-04-22 05:38:14.800207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.804290"], ["updated_at", "2020-04-22 05:38:14.804290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (8.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_208712


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.811974"], ["updated_at", "2020-04-22 05:38:14.811974"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.815713"], ["updated_at", "2020-04-22 05:38:14.815713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.820661"], ["updated_at", "2020-04-22 05:38:14.820661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_97961


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.827439"], ["updated_at", "2020-04-22 05:38:14.827439"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.830313"], ["updated_at", "2020-04-22 05:38:14.830313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_175991


Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.832694"], ["updated_at", "2020-04-22 05:38:14.832694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (1.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.837014"], ["updated_at", "2020-04-22 05:38:14.837014"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.841429"], ["updated_at", "2020-04-22 05:38:14.841429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_50478


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.844971"], ["updated_at", "2020-04-22 05:38:14.844971"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.844198"], ["updated_at", "2020-04-22 05:38:14.844198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.847890"], ["updated_at", "2020-04-22 05:38:14.847890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.850536"], ["updated_at", "2020-04-22 05:38:14.850536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  begin transaction

CommentTest: test_887765


 (2.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.862800"], ["updated_at", "2020-04-22 05:38:14.862800"]]
 (0.1ms)  begin transaction

CommentTest: test_750495


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.865634"], ["updated_at", "2020-04-22 05:38:14.865634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.867568"], ["updated_at", "2020-04-22 05:38:14.867568"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.866946"], ["updated_at", "2020-04-22 05:38:14.866946"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.873229"], ["updated_at", "2020-04-22 05:38:14.873229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.875528"], ["updated_at", "2020-04-22 05:38:14.875528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_833796


Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.878611"], ["updated_at", "2020-04-22 05:38:14.878611"]]
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_705577


 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.887041"], ["updated_at", "2020-04-22 05:38:14.887041"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.886918"], ["updated_at", "2020-04-22 05:38:14.886918"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.889231"], ["updated_at", "2020-04-22 05:38:14.889231"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.889293"], ["updated_at", "2020-04-22 05:38:14.889293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.891239"], ["updated_at", "2020-04-22 05:38:14.891239"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_998758


 (0.1ms)  begin transaction

CommentTest: test_368838


 (1.4ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.900188"], ["updated_at", "2020-04-22 05:38:14.900188"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.902967"], ["updated_at", "2020-04-22 05:38:14.902967"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.905000"], ["updated_at", "2020-04-22 05:38:14.905000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.906991"], ["updated_at", "2020-04-22 05:38:14.906991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.910026"], ["updated_at", "2020-04-22 05:38:14.910026"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.909609"], ["updated_at", "2020-04-22 05:38:14.909609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_487011


 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.919946"], ["updated_at", "2020-04-22 05:38:14.919946"]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.925424"], ["updated_at", "2020-04-22 05:38:14.925424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.927992"], ["updated_at", "2020-04-22 05:38:14.927992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_855966

 (0.1ms)  begin transaction

CommentTest: test_73101



 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.939912"], ["updated_at", "2020-04-22 05:38:14.939912"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.942402"], ["updated_at", "2020-04-22 05:38:14.942402"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.948079"], ["updated_at", "2020-04-22 05:38:14.948079"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.947980"], ["updated_at", "2020-04-22 05:38:14.947980"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.951180"], ["updated_at", "2020-04-22 05:38:14.951180"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.951666"], ["updated_at", "2020-04-22 05:38:14.951666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_312375


 (0.1ms)  begin transaction

CommentTest: test_204130


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.961160"], ["updated_at", "2020-04-22 05:38:14.961160"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.962839"], ["updated_at", "2020-04-22 05:38:14.962839"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.964304"], ["updated_at", "2020-04-22 05:38:14.964304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.967200"], ["updated_at", "2020-04-22 05:38:14.967200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.966559"], ["updated_at", "2020-04-22 05:38:14.966559"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.976656"], ["updated_at", "2020-04-22 05:38:14.976656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction
 (0.9ms)  rollback transaction

CommentTest: test_71496


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_280807


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.986328"], ["updated_at", "2020-04-22 05:38:14.986328"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:14.988208"], ["updated_at", "2020-04-22 05:38:14.988208"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.989391"], ["updated_at", "2020-04-22 05:38:14.989391"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:14.990477"], ["updated_at", "2020-04-22 05:38:14.990477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.993145"], ["updated_at", "2020-04-22 05:38:14.993145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:14.994561"], ["updated_at", "2020-04-22 05:38:14.994561"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
Comment Create (0.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_659814


 (0.1ms)  begin transaction

CommentTest: test_217493


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.003331"], ["updated_at", "2020-04-22 05:38:15.003331"]]
Course Create (0.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.002310"], ["updated_at", "2020-04-22 05:38:15.002310"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.006754"], ["updated_at", "2020-04-22 05:38:15.006754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.010003"], ["updated_at", "2020-04-22 05:38:15.010003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.010892"], ["updated_at", "2020-04-22 05:38:15.010892"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.011775"], ["updated_at", "2020-04-22 05:38:15.011775"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.0ms)  begin transaction

CommentTest: test_873992


 (0.1ms)  begin transaction
 (0.1ms)  SAVEPOINT active_record_1

CommentTest: test_249581


Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.020361"], ["updated_at", "2020-04-22 05:38:15.020361"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.021955"], ["updated_at", "2020-04-22 05:38:15.021955"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.023173"], ["updated_at", "2020-04-22 05:38:15.023173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.025470"], ["updated_at", "2020-04-22 05:38:15.025470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.026185"], ["updated_at", "2020-04-22 05:38:15.026185"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.027007"], ["updated_at", "2020-04-22 05:38:15.027007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  rollback transaction
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_844021


 (0.1ms)  begin transaction

CommentTest: test_454652


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.034970"], ["updated_at", "2020-04-22 05:38:15.034970"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.035575"], ["updated_at", "2020-04-22 05:38:15.035575"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.037847"], ["updated_at", "2020-04-22 05:38:15.037847"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.038028"], ["updated_at", "2020-04-22 05:38:15.038028"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.040600"], ["updated_at", "2020-04-22 05:38:15.040600"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.041169"], ["updated_at", "2020-04-22 05:38:15.041169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_960120


 (0.1ms)  begin transaction

CommentTest: test_529651


 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.050345"], ["updated_at", "2020-04-22 05:38:15.050345"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.052571"], ["updated_at", "2020-04-22 05:38:15.052571"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.054797"], ["updated_at", "2020-04-22 05:38:15.054797"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.055401"], ["updated_at", "2020-04-22 05:38:15.055401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.057204"], ["updated_at", "2020-04-22 05:38:15.057204"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.058648"], ["updated_at", "2020-04-22 05:38:15.058648"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

 (1.8ms)  rollback transaction

CommentTest: test_124295


 (0.1ms)  begin transaction

CommentTest: test_991850


 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.070150"], ["updated_at", "2020-04-22 05:38:15.070150"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.071354"], ["updated_at", "2020-04-22 05:38:15.071354"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.075994"], ["updated_at", "2020-04-22 05:38:15.075994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.075446"], ["updated_at", "2020-04-22 05:38:15.075446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.078963"], ["updated_at", "2020-04-22 05:38:15.078963"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.078988"], ["updated_at", "2020-04-22 05:38:15.078988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_345912


 (0.8ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_471655


Course Create (0.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.088677"], ["updated_at", "2020-04-22 05:38:15.088677"]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.091490"], ["updated_at", "2020-04-22 05:38:15.091490"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.092420"], ["updated_at", "2020-04-22 05:38:15.092420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.094889"], ["updated_at", "2020-04-22 05:38:15.094889"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.095572"], ["updated_at", "2020-04-22 05:38:15.095572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.097361"], ["updated_at", "2020-04-22 05:38:15.097361"]]
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_165615


Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  rollback transaction
 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_134692


Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.106134"], ["updated_at", "2020-04-22 05:38:15.106134"]]
 (0.1ms)  SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.110943"], ["updated_at", "2020-04-22 05:38:15.110943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.110421"], ["updated_at", "2020-04-22 05:38:15.110421"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.113231"], ["updated_at", "2020-04-22 05:38:15.113231"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.116165"], ["updated_at", "2020-04-22 05:38:15.116165"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.121773"], ["updated_at", "2020-04-22 05:38:15.121773"]]

CommentTest: test_414314


 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.124018"], ["updated_at", "2020-04-22 05:38:15.124018"]]
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.126943"], ["updated_at", "2020-04-22 05:38:15.126943"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  rollback transaction
 (0.1ms)  begin transaction
Recording Create (0.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.128930"], ["updated_at", "2020-04-22 05:38:15.128930"]]

CommentTest: test_403369


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.131232"], ["updated_at", "2020-04-22 05:38:15.131232"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.134415"], ["updated_at", "2020-04-22 05:38:15.134415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.137618"], ["updated_at", "2020-04-22 05:38:15.137618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_346184


 (0.1ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  rollback transaction
Course Create (0.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.144042"], ["updated_at", "2020-04-22 05:38:15.144042"]]
 (0.1ms)  begin transaction

CommentTest: test_769678


Bucket Create (0.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.147360"], ["updated_at", "2020-04-22 05:38:15.147360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  SAVEPOINT active_record_1
Recording Create (0.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.149163"], ["updated_at", "2020-04-22 05:38:15.149163"]]
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.148518"], ["updated_at", "2020-04-22 05:38:15.148518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (15.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.166534"], ["updated_at", "2020-04-22 05:38:15.166534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.195126"], ["updated_at", "2020-04-22 05:38:15.195126"]]
 (1.8ms)  rollback transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_37454


 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.219132"], ["updated_at", "2020-04-22 05:38:15.219132"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.230530"], ["updated_at", "2020-04-22 05:38:15.230530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.266825"], ["updated_at", "2020-04-22 05:38:15.266825"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_744056


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.295320"], ["updated_at", "2020-04-22 05:38:15.295320"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.305027"], ["updated_at", "2020-04-22 05:38:15.305027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (16.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.318051"], ["updated_at", "2020-04-22 05:38:15.318051"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_591906


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.335415"], ["updated_at", "2020-04-22 05:38:15.335415"]]
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.348520"], ["updated_at", "2020-04-22 05:38:15.348520"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_871545


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.361114"], ["updated_at", "2020-04-22 05:38:15.361114"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.363980"], ["updated_at", "2020-04-22 05:38:15.363980"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.377353"], ["updated_at", "2020-04-22 05:38:15.377353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.387919"], ["updated_at", "2020-04-22 05:38:15.387919"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_883493


 (1.0ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.431341"], ["updated_at", "2020-04-22 05:38:15.431341"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.451457"], ["updated_at", "2020-04-22 05:38:15.451457"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.463523"], ["updated_at", "2020-04-22 05:38:15.463523"]]
 (0.2ms)  begin transaction

CommentTest: test_698124


 (0.3ms)  SAVEPOINT active_record_1
 (10.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.472277"], ["updated_at", "2020-04-22 05:38:15.472277"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.489587"], ["updated_at", "2020-04-22 05:38:15.489587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Recording Create (36.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.560118"], ["updated_at", "2020-04-22 05:38:15.560118"]]
 (4.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_957306


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.633468"], ["updated_at", "2020-04-22 05:38:15.633468"]]
 (1.7ms)  rollback transaction
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.644849"], ["updated_at", "2020-04-22 05:38:15.644849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_92803


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.674829"], ["updated_at", "2020-04-22 05:38:15.674829"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.654874"], ["updated_at", "2020-04-22 05:38:15.654874"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.725296"], ["updated_at", "2020-04-22 05:38:15.725296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.750043"], ["updated_at", "2020-04-22 05:38:15.750043"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (13.9ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_486401


Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_810983


Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.811757"], ["updated_at", "2020-04-22 05:38:15.811757"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.838523"], ["updated_at", "2020-04-22 05:38:15.838523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.854619"], ["updated_at", "2020-04-22 05:38:15.854619"]]
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.836237"], ["updated_at", "2020-04-22 05:38:15.836237"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.878749"], ["updated_at", "2020-04-22 05:38:15.878749"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:15.887935"], ["updated_at", "2020-04-22 05:38:15.887935"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_93018


 (0.9ms)  SAVEPOINT active_record_1
 (25.9ms)  rollback transaction
 (1.0ms)  begin transaction

CommentTest: test_923356


Course Create (17.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.952584"], ["updated_at", "2020-04-22 05:38:15.952584"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:15.981225"], ["updated_at", "2020-04-22 05:38:15.981225"]]
Bucket Create (12.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:15.999875"], ["updated_at", "2020-04-22 05:38:15.999875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.026358"], ["updated_at", "2020-04-22 05:38:16.026358"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.029361"], ["updated_at", "2020-04-22 05:38:16.029361"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.041168"], ["updated_at", "2020-04-22 05:38:16.041168"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (17.8ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_869043



CommentTest: test_458237


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.087243"], ["updated_at", "2020-04-22 05:38:16.087243"]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.087233"], ["updated_at", "2020-04-22 05:38:16.087233"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.100106"], ["updated_at", "2020-04-22 05:38:16.100106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.101130"], ["updated_at", "2020-04-22 05:38:16.101130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.110511"], ["updated_at", "2020-04-22 05:38:16.110511"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.118924"], ["updated_at", "2020-04-22 05:38:16.118924"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (13.5ms)  RELEASE SAVEPOINT active_record_1
 (12.9ms)  rollback transaction
 (13.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_564431


 (0.2ms)  begin transaction

CommentTest: test_333085


 (0.3ms)  SAVEPOINT active_record_1
Course Create (16.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.188162"], ["updated_at", "2020-04-22 05:38:16.188162"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.236080"], ["updated_at", "2020-04-22 05:38:16.236080"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (6.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.185237"], ["updated_at", "2020-04-22 05:38:16.185237"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.301984"], ["updated_at", "2020-04-22 05:38:16.301984"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.302983"], ["updated_at", "2020-04-22 05:38:16.302983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.350249"], ["updated_at", "2020-04-22 05:38:16.350249"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (28.0ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.6ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (28.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_721434


 (0.3ms)  SAVEPOINT active_record_1
Course Create (19.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.454942"], ["updated_at", "2020-04-22 05:38:16.454942"]]
 (0.3ms)  begin transaction

CommentTest: test_505177


 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (16.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.537869"], ["updated_at", "2020-04-22 05:38:16.537869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.586544"], ["updated_at", "2020-04-22 05:38:16.586544"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (26.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.565058"], ["updated_at", "2020-04-22 05:38:16.565058"]]
 (9.6ms)  SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.621771"], ["updated_at", "2020-04-22 05:38:16.621771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.635225"], ["updated_at", "2020-04-22 05:38:16.635225"]]
 (9.9ms)  rollback transaction
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_358441


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (35.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.724994"], ["updated_at", "2020-04-22 05:38:16.724994"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_805314


 (0.6ms)  SAVEPOINT active_record_1
Course Create (7.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.825129"], ["updated_at", "2020-04-22 05:38:16.825129"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.767906"], ["updated_at", "2020-04-22 05:38:16.767906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.840883"], ["updated_at", "2020-04-22 05:38:16.840883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.853010"], ["updated_at", "2020-04-22 05:38:16.853010"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:16.852980"], ["updated_at", "2020-04-22 05:38:16.852980"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (28.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_92592


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:16.984691"], ["updated_at", "2020-04-22 05:38:16.984691"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:16.997642"], ["updated_at", "2020-04-22 05:38:16.997642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (12.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.049172"], ["updated_at", "2020-04-22 05:38:17.049172"]]
 (0.2ms)  begin transaction

CommentTest: test_975482


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.058259"], ["updated_at", "2020-04-22 05:38:17.058259"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.069459"], ["updated_at", "2020-04-22 05:38:17.069459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.098196"], ["updated_at", "2020-04-22 05:38:17.098196"]]
 (6.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (61.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (10.2ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_817041


 (0.3ms)  SAVEPOINT active_record_1
 (52.7ms)  rollback transaction
Course Create (27.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.183660"], ["updated_at", "2020-04-22 05:38:17.183660"]]
 (0.1ms)  begin transaction

CommentTest: test_428277


Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.218587"], ["updated_at", "2020-04-22 05:38:17.218587"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.221729"], ["updated_at", "2020-04-22 05:38:17.221729"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.230661"], ["updated_at", "2020-04-22 05:38:17.230661"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.299568"], ["updated_at", "2020-04-22 05:38:17.299568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.318886"], ["updated_at", "2020-04-22 05:38:17.318886"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_9367


 (0.3ms)  SAVEPOINT active_record_1
 (31.7ms)  SAVEPOINT active_record_1
Comment Create (13.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (42.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.336965"], ["updated_at", "2020-04-22 05:38:17.336965"]]
 (13.5ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_442074


Bucket Create (13.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.400939"], ["updated_at", "2020-04-22 05:38:17.400939"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.422726"], ["updated_at", "2020-04-22 05:38:17.422726"]]
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.418420"], ["updated_at", "2020-04-22 05:38:17.418420"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.432991"], ["updated_at", "2020-04-22 05:38:17.432991"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.454415"], ["updated_at", "2020-04-22 05:38:17.454415"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.7ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_943377


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (15.7ms)  rollback transaction
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.572234"], ["updated_at", "2020-04-22 05:38:17.572234"]]
 (0.2ms)  begin transaction

CommentTest: test_733007


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.603392"], ["updated_at", "2020-04-22 05:38:17.603392"]]
Bucket Create (17.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.599660"], ["updated_at", "2020-04-22 05:38:17.599660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.618305"], ["updated_at", "2020-04-22 05:38:17.618305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.628613"], ["updated_at", "2020-04-22 05:38:17.628613"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.625725"], ["updated_at", "2020-04-22 05:38:17.625725"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (13.4ms)  rollback transaction
 (4.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_649879


 (2.9ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_277484


Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.752475"], ["updated_at", "2020-04-22 05:38:17.752475"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.767936"], ["updated_at", "2020-04-22 05:38:17.767936"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.778215"], ["updated_at", "2020-04-22 05:38:17.778215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:17.785122"], ["updated_at", "2020-04-22 05:38:17.785122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.819414"], ["updated_at", "2020-04-22 05:38:17.819414"]]
Recording Create (10.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:17.820703"], ["updated_at", "2020-04-22 05:38:17.820703"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (12.2ms)  rollback transaction
Comment Create (54.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_312445


 (0.2ms)  begin transaction

CommentTest: test_645529


 (1.1ms)  SAVEPOINT active_record_1
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.983442"], ["updated_at", "2020-04-22 05:38:17.983442"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (15.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:17.981600"], ["updated_at", "2020-04-22 05:38:17.981600"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.025382"], ["updated_at", "2020-04-22 05:38:18.025382"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.020255"], ["updated_at", "2020-04-22 05:38:18.020255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.056028"], ["updated_at", "2020-04-22 05:38:18.056028"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.048178"], ["updated_at", "2020-04-22 05:38:18.048178"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.7ms)  rollback transaction
 (3.0ms)  begin transaction

CommentTest: test_196909


 (0.2ms)  begin transaction

CommentTest: test_990070


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.131964"], ["updated_at", "2020-04-22 05:38:18.131964"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.136768"], ["updated_at", "2020-04-22 05:38:18.136768"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.151724"], ["updated_at", "2020-04-22 05:38:18.151724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.170914"], ["updated_at", "2020-04-22 05:38:18.170914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.182339"], ["updated_at", "2020-04-22 05:38:18.182339"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.183461"], ["updated_at", "2020-04-22 05:38:18.183461"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (5.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.1ms)  rollback transaction
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_656366


 (0.3ms)  SAVEPOINT active_record_1
 (25.8ms)  begin transaction
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.316394"], ["updated_at", "2020-04-22 05:38:18.316394"]]

CommentTest: test_33488


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.356925"], ["updated_at", "2020-04-22 05:38:18.356925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (24.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.358154"], ["updated_at", "2020-04-22 05:38:18.358154"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.397352"], ["updated_at", "2020-04-22 05:38:18.397352"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.383326"], ["updated_at", "2020-04-22 05:38:18.383326"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.406970"], ["updated_at", "2020-04-22 05:38:18.406970"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (10.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (12.4ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_95377


 (8.1ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_814054


 (0.3ms)  SAVEPOINT active_record_1
Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.501920"], ["updated_at", "2020-04-22 05:38:18.501920"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.554124"], ["updated_at", "2020-04-22 05:38:18.554124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (75.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.481880"], ["updated_at", "2020-04-22 05:38:18.481880"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.574925"], ["updated_at", "2020-04-22 05:38:18.574925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.567174"], ["updated_at", "2020-04-22 05:38:18.567174"]]
 (4.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.599208"], ["updated_at", "2020-04-22 05:38:18.599208"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.9ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (88.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_688228


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (34.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.790406"], ["updated_at", "2020-04-22 05:38:18.790406"]]
 (0.2ms)  begin transaction

CommentTest: test_282853


 (1.2ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.870760"], ["updated_at", "2020-04-22 05:38:18.870760"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:18.861821"], ["updated_at", "2020-04-22 05:38:18.861821"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:18.892983"], ["updated_at", "2020-04-22 05:38:18.892983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.921754"], ["updated_at", "2020-04-22 05:38:18.921754"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:18.913979"], ["updated_at", "2020-04-22 05:38:18.913979"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (11.2ms)  rollback transaction
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_892854


 (12.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_836355


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.085454"], ["updated_at", "2020-04-22 05:38:19.085454"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.100880"], ["updated_at", "2020-04-22 05:38:19.100880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.108510"], ["updated_at", "2020-04-22 05:38:19.108510"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.063014"], ["updated_at", "2020-04-22 05:38:19.063014"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.155972"], ["updated_at", "2020-04-22 05:38:19.155972"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.192184"], ["updated_at", "2020-04-22 05:38:19.192184"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_963821


Comment Create (105.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (2.5ms)  begin transaction

CommentTest: test_274265


 (1.8ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.316739"], ["updated_at", "2020-04-22 05:38:19.316739"]]
Course Create (7.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.307119"], ["updated_at", "2020-04-22 05:38:19.307119"]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.325124"], ["updated_at", "2020-04-22 05:38:19.325124"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.338763"], ["updated_at", "2020-04-22 05:38:19.338763"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.349598"], ["updated_at", "2020-04-22 05:38:19.349598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.396541"], ["updated_at", "2020-04-22 05:38:19.396541"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (26.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_860483


 (0.3ms)  SAVEPOINT active_record_1
 (32.2ms)  rollback transaction
Course Create (33.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.501461"], ["updated_at", "2020-04-22 05:38:19.501461"]]
 (0.4ms)  begin transaction

CommentTest: test_382113


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.548236"], ["updated_at", "2020-04-22 05:38:19.548236"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.548789"], ["updated_at", "2020-04-22 05:38:19.548789"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.563166"], ["updated_at", "2020-04-22 05:38:19.563166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.564848"], ["updated_at", "2020-04-22 05:38:19.564848"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.575819"], ["updated_at", "2020-04-22 05:38:19.575819"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (5.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (7.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (14.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_58801


 (0.7ms)  begin transaction

CommentTest: test_264403


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (27.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.688428"], ["updated_at", "2020-04-22 05:38:19.688428"]]
Course Create (48.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.662918"], ["updated_at", "2020-04-22 05:38:19.662918"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.748379"], ["updated_at", "2020-04-22 05:38:19.748379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.731856"], ["updated_at", "2020-04-22 05:38:19.731856"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.757728"], ["updated_at", "2020-04-22 05:38:19.757728"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.778977"], ["updated_at", "2020-04-22 05:38:19.778977"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (19.3ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.6ms)  begin transaction

CommentTest: test_608017



CommentTest: test_327327


 (20.8ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.902449"], ["updated_at", "2020-04-22 05:38:19.902449"]]
Course Create (7.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:19.901611"], ["updated_at", "2020-04-22 05:38:19.901611"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.940777"], ["updated_at", "2020-04-22 05:38:19.940777"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:19.940776"], ["updated_at", "2020-04-22 05:38:19.940776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.953054"], ["updated_at", "2020-04-22 05:38:19.953054"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (15.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:19.963554"], ["updated_at", "2020-04-22 05:38:19.963554"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (15.9ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (23.7ms)  rollback transaction
 (10.5ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_320590


 (0.3ms)  begin transaction

CommentTest: test_494192


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (29.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.062041"], ["updated_at", "2020-04-22 05:38:20.062041"]]
Course Create (29.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.068560"], ["updated_at", "2020-04-22 05:38:20.068560"]]
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:20.103622"], ["updated_at", "2020-04-22 05:38:20.103622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (5.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:20.104376"], ["updated_at", "2020-04-22 05:38:20.104376"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:20.118016"], ["updated_at", "2020-04-22 05:38:20.118016"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:20.156234"], ["updated_at", "2020-04-22 05:38:20.156234"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
 (16.0ms)  begin transaction

CommentTest: test_910144


 (0.4ms)  SAVEPOINT active_record_1
Course Create (14.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.236892"], ["updated_at", "2020-04-22 05:38:20.236892"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:20.269194"], ["updated_at", "2020-04-22 05:38:20.269194"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_656540


 (0.3ms)  SAVEPOINT active_record_1
Course Create (51.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.458858"], ["updated_at", "2020-04-22 05:38:20.458858"]]
Recording Create (16.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:20.283573"], ["updated_at", "2020-04-22 05:38:20.283573"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:20.644226"], ["updated_at", "2020-04-22 05:38:20.644226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:20.728403"], ["updated_at", "2020-04-22 05:38:20.728403"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (202.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_438209


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.947902"], ["updated_at", "2020-04-22 05:38:20.947902"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:20.959350"], ["updated_at", "2020-04-22 05:38:20.959350"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:20.968063"], ["updated_at", "2020-04-22 05:38:20.968063"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_352603


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:20.992229"], ["updated_at", "2020-04-22 05:38:20.992229"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.075296"], ["updated_at", "2020-04-22 05:38:21.075296"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.2ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_51426


 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.086493"], ["updated_at", "2020-04-22 05:38:21.086493"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (160.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.121750"], ["updated_at", "2020-04-22 05:38:21.121750"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.292409"], ["updated_at", "2020-04-22 05:38:21.292409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (28.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_863702


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.455275"], ["updated_at", "2020-04-22 05:38:21.455275"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (6.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.398698"], ["updated_at", "2020-04-22 05:38:21.398698"]]
Bucket Create (3.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.502926"], ["updated_at", "2020-04-22 05:38:21.502926"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.520616"], ["updated_at", "2020-04-22 05:38:21.520616"]]
 (18.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_281021


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.625473"], ["updated_at", "2020-04-22 05:38:21.625473"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (6.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.674090"], ["updated_at", "2020-04-22 05:38:21.674090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (11.2ms)  rollback transaction
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.689327"], ["updated_at", "2020-04-22 05:38:21.689327"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_557125


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.732112"], ["updated_at", "2020-04-22 05:38:21.732112"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_468139


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.749929"], ["updated_at", "2020-04-22 05:38:21.749929"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.757354"], ["updated_at", "2020-04-22 05:38:21.757354"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.762400"], ["updated_at", "2020-04-22 05:38:21.762400"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.773022"], ["updated_at", "2020-04-22 05:38:21.773022"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.952304"], ["updated_at", "2020-04-22 05:38:21.952304"]]
 (0.3ms)  begin transaction

CommentTest: test_777830


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:21.970725"], ["updated_at", "2020-04-22 05:38:21.970725"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:21.981249"], ["updated_at", "2020-04-22 05:38:21.981249"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (7.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:21.990270"], ["updated_at", "2020-04-22 05:38:21.990270"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_388739


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:22.092615"], ["updated_at", "2020-04-22 05:38:22.092615"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:22.109498"], ["updated_at", "2020-04-22 05:38:22.109498"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:22.120678"], ["updated_at", "2020-04-22 05:38:22.120678"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (19.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_515174


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:22.221750"], ["updated_at", "2020-04-22 05:38:22.221750"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:22.237680"], ["updated_at", "2020-04-22 05:38:22.237680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:22.252755"], ["updated_at", "2020-04-22 05:38:22.252755"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (7.6ms)  rollback transaction
 (16.1ms)  begin transaction

CommentTest: test_747061


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:22.424471"], ["updated_at", "2020-04-22 05:38:22.424471"]]
Bucket Create (8.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:22.445792"], ["updated_at", "2020-04-22 05:38:22.445792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_665564


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:22.742222"], ["updated_at", "2020-04-22 05:38:22.742222"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:22.765947"], ["updated_at", "2020-04-22 05:38:22.765947"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:22.780451"], ["updated_at", "2020-04-22 05:38:22.780451"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:22.776023"], ["updated_at", "2020-04-22 05:38:22.776023"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_36818


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_322097


 (0.3ms)  SAVEPOINT active_record_1
Course Create (121.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:22.928364"], ["updated_at", "2020-04-22 05:38:22.928364"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.057270"], ["updated_at", "2020-04-22 05:38:23.057270"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.043844"], ["updated_at", "2020-04-22 05:38:23.043844"]]
Recording Create (4.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.081166"], ["updated_at", "2020-04-22 05:38:23.081166"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.085199"], ["updated_at", "2020-04-22 05:38:23.085199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.099075"], ["updated_at", "2020-04-22 05:38:23.099075"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
 (3.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_84144


 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_598102


Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.185670"], ["updated_at", "2020-04-22 05:38:23.185670"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.192399"], ["updated_at", "2020-04-22 05:38:23.192399"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.196061"], ["updated_at", "2020-04-22 05:38:23.196061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.207705"], ["updated_at", "2020-04-22 05:38:23.207705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.215452"], ["updated_at", "2020-04-22 05:38:23.215452"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.237723"], ["updated_at", "2020-04-22 05:38:23.237723"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_643772


 (0.4ms)  begin transaction

CommentTest: test_553107


 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.475788"], ["updated_at", "2020-04-22 05:38:23.475788"]]
Course Create (13.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.479191"], ["updated_at", "2020-04-22 05:38:23.479191"]]
Bucket Create (27.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.519986"], ["updated_at", "2020-04-22 05:38:23.519986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (8.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.519305"], ["updated_at", "2020-04-22 05:38:23.519305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.559664"], ["updated_at", "2020-04-22 05:38:23.559664"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.567833"], ["updated_at", "2020-04-22 05:38:23.567833"]]
 (50.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (30.1ms)  rollback transaction
 (9.2ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_511300



CommentTest: test_381467


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.720678"], ["updated_at", "2020-04-22 05:38:23.720678"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.735699"], ["updated_at", "2020-04-22 05:38:23.735699"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.719183"], ["updated_at", "2020-04-22 05:38:23.719183"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:23.775673"], ["updated_at", "2020-04-22 05:38:23.775673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.784362"], ["updated_at", "2020-04-22 05:38:23.784362"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:23.860973"], ["updated_at", "2020-04-22 05:38:23.860973"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.6ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_648972


 (0.8ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_822540


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.069293"], ["updated_at", "2020-04-22 05:38:24.069293"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.081644"], ["updated_at", "2020-04-22 05:38:24.081644"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.115442"], ["updated_at", "2020-04-22 05:38:24.115442"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (133.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:23.946701"], ["updated_at", "2020-04-22 05:38:23.946701"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.143588"], ["updated_at", "2020-04-22 05:38:24.143588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.174623"], ["updated_at", "2020-04-22 05:38:24.174623"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_101506


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.240065"], ["updated_at", "2020-04-22 05:38:24.240065"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.251561"], ["updated_at", "2020-04-22 05:38:24.251561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.260459"], ["updated_at", "2020-04-22 05:38:24.260459"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (17.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_477254


 (1.0ms)  SAVEPOINT active_record_1
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.317799"], ["updated_at", "2020-04-22 05:38:24.317799"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.331334"], ["updated_at", "2020-04-22 05:38:24.331334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.443947"], ["updated_at", "2020-04-22 05:38:24.443947"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_837955


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.464430"], ["updated_at", "2020-04-22 05:38:24.464430"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.475716"], ["updated_at", "2020-04-22 05:38:24.475716"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.484023"], ["updated_at", "2020-04-22 05:38:24.484023"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (46.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_903098


 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.587910"], ["updated_at", "2020-04-22 05:38:24.587910"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_485986


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.602512"], ["updated_at", "2020-04-22 05:38:24.602512"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.642295"], ["updated_at", "2020-04-22 05:38:24.642295"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.721112"], ["updated_at", "2020-04-22 05:38:24.721112"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.742142"], ["updated_at", "2020-04-22 05:38:24.742142"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_386157


Recording Create (89.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.803026"], ["updated_at", "2020-04-22 05:38:24.803026"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.895199"], ["updated_at", "2020-04-22 05:38:24.895199"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:24.931569"], ["updated_at", "2020-04-22 05:38:24.931569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.1ms)  begin transaction

CommentTest: test_957601


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:24.948661"], ["updated_at", "2020-04-22 05:38:24.948661"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  SAVEPOINT active_record_1
Bucket Load (37.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (44.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:24.953473"], ["updated_at", "2020-04-22 05:38:24.953473"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (10.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.030957"], ["updated_at", "2020-04-22 05:38:25.030957"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (18.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.049593"], ["updated_at", "2020-04-22 05:38:25.049593"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_224902


 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_214347


Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.079392"], ["updated_at", "2020-04-22 05:38:25.079392"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.091404"], ["updated_at", "2020-04-22 05:38:25.091404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.099223"], ["updated_at", "2020-04-22 05:38:25.099223"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.086306"], ["updated_at", "2020-04-22 05:38:25.086306"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.253808"], ["updated_at", "2020-04-22 05:38:25.253808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.268943"], ["updated_at", "2020-04-22 05:38:25.268943"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_265282


 (0.3ms)  SAVEPOINT active_record_1
Course Create (19.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.337700"], ["updated_at", "2020-04-22 05:38:25.337700"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_557963


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.436852"], ["updated_at", "2020-04-22 05:38:25.436852"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.398539"], ["updated_at", "2020-04-22 05:38:25.398539"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.484019"], ["updated_at", "2020-04-22 05:38:25.484019"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.536625"], ["updated_at", "2020-04-22 05:38:25.536625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (21.6ms)  rollback transaction
Recording Create (6.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.551048"], ["updated_at", "2020-04-22 05:38:25.551048"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_533102


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (43.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.644227"], ["updated_at", "2020-04-22 05:38:25.644227"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.698965"], ["updated_at", "2020-04-22 05:38:25.698965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (33.1ms)  RELEASE SAVEPOINT active_record_1
 (25.9ms)  rollback transaction
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.745023"], ["updated_at", "2020-04-22 05:38:25.745023"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_572686


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.756598"], ["updated_at", "2020-04-22 05:38:25.756598"]]
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (27.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.777820"], ["updated_at", "2020-04-22 05:38:25.777820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.812295"], ["updated_at", "2020-04-22 05:38:25.812295"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_846251


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (101.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.830119"], ["updated_at", "2020-04-22 05:38:25.830119"]]
 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:25.939094"], ["updated_at", "2020-04-22 05:38:25.939094"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (8.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (17.4ms)  rollback transaction
 (0.2ms)  begin transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:25.971547"], ["updated_at", "2020-04-22 05:38:25.971547"]]

CommentTest: test_897331


 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:25.982261"], ["updated_at", "2020-04-22 05:38:25.982261"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (6.8ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Create (10.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.018129"], ["updated_at", "2020-04-22 05:38:26.018129"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_490039


Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.040735"], ["updated_at", "2020-04-22 05:38:26.040735"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (28.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.064244"], ["updated_at", "2020-04-22 05:38:26.064244"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.100647"], ["updated_at", "2020-04-22 05:38:26.100647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.161592"], ["updated_at", "2020-04-22 05:38:26.161592"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_599683


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.188560"], ["updated_at", "2020-04-22 05:38:26.188560"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.210500"], ["updated_at", "2020-04-22 05:38:26.210500"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_389200


 (9.0ms)  SAVEPOINT active_record_1
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.219213"], ["updated_at", "2020-04-22 05:38:26.219213"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (31.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.226995"], ["updated_at", "2020-04-22 05:38:26.226995"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.276256"], ["updated_at", "2020-04-22 05:38:26.276256"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (80.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (8.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.363410"], ["updated_at", "2020-04-22 05:38:26.363410"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (28.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_880339


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (32.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.398655"], ["updated_at", "2020-04-22 05:38:26.398655"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.440465"], ["updated_at", "2020-04-22 05:38:26.440465"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_779882


 (6.6ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.534891"], ["updated_at", "2020-04-22 05:38:26.534891"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (91.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.459532"], ["updated_at", "2020-04-22 05:38:26.459532"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.577965"], ["updated_at", "2020-04-22 05:38:26.577965"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.596374"], ["updated_at", "2020-04-22 05:38:26.596374"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (30.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_919983


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.649340"], ["updated_at", "2020-04-22 05:38:26.649340"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (12.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_590038


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.735024"], ["updated_at", "2020-04-22 05:38:26.735024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.741043"], ["updated_at", "2020-04-22 05:38:26.741043"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.749513"], ["updated_at", "2020-04-22 05:38:26.749513"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.756137"], ["updated_at", "2020-04-22 05:38:26.756137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.769581"], ["updated_at", "2020-04-22 05:38:26.769581"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (45.5ms)  RELEASE SAVEPOINT active_record_1
 (30.3ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_419412


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_198871


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.951905"], ["updated_at", "2020-04-22 05:38:26.951905"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.961531"], ["updated_at", "2020-04-22 05:38:26.961531"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:26.933981"], ["updated_at", "2020-04-22 05:38:26.933981"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:26.980009"], ["updated_at", "2020-04-22 05:38:26.980009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.988022"], ["updated_at", "2020-04-22 05:38:26.988022"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (74.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:26.968628"], ["updated_at", "2020-04-22 05:38:26.968628"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_442310


 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.104164"], ["updated_at", "2020-04-22 05:38:27.104164"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.119166"], ["updated_at", "2020-04-22 05:38:27.119166"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.126776"], ["updated_at", "2020-04-22 05:38:27.126776"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_695160


 (0.3ms)  SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.143137"], ["updated_at", "2020-04-22 05:38:27.143137"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.151125"], ["updated_at", "2020-04-22 05:38:27.151125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.160968"], ["updated_at", "2020-04-22 05:38:27.160968"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_854038


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.204466"], ["updated_at", "2020-04-22 05:38:27.204466"]]
 (0.2ms)  begin transaction

CommentTest: test_577657


Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.213914"], ["updated_at", "2020-04-22 05:38:27.213914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.215863"], ["updated_at", "2020-04-22 05:38:27.215863"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.220818"], ["updated_at", "2020-04-22 05:38:27.220818"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.239383"], ["updated_at", "2020-04-22 05:38:27.239383"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.247441"], ["updated_at", "2020-04-22 05:38:27.247441"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (52.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_153907


 (0.3ms)  begin transaction
 (0.4ms)  SAVEPOINT active_record_1

CommentTest: test_695087


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.331462"], ["updated_at", "2020-04-22 05:38:27.331462"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.337168"], ["updated_at", "2020-04-22 05:38:27.337168"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.411010"], ["updated_at", "2020-04-22 05:38:27.411010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.416945"], ["updated_at", "2020-04-22 05:38:27.416945"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.423949"], ["updated_at", "2020-04-22 05:38:27.423949"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (9.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.441748"], ["updated_at", "2020-04-22 05:38:27.441748"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_982072


 (124.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.634422"], ["updated_at", "2020-04-22 05:38:27.634422"]]
 (0.3ms)  begin transaction

CommentTest: test_970755


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.665635"], ["updated_at", "2020-04-22 05:38:27.665635"]]
Bucket Create (45.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.650627"], ["updated_at", "2020-04-22 05:38:27.650627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.703738"], ["updated_at", "2020-04-22 05:38:27.703738"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.701703"], ["updated_at", "2020-04-22 05:38:27.701703"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (4.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.724746"], ["updated_at", "2020-04-22 05:38:27.724746"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_473077


 (0.4ms)  SAVEPOINT active_record_1
 (76.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_51967


 (5.4ms)  SAVEPOINT active_record_1
Course Create (22.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.848516"], ["updated_at", "2020-04-22 05:38:27.848516"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.886325"], ["updated_at", "2020-04-22 05:38:27.886325"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:27.772562"], ["updated_at", "2020-04-22 05:38:27.772562"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:27.913388"], ["updated_at", "2020-04-22 05:38:27.913388"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.923010"], ["updated_at", "2020-04-22 05:38:27.923010"]]
 (6.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:27.987962"], ["updated_at", "2020-04-22 05:38:27.987962"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (2.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_588981


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_880454


 (4.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.102541"], ["updated_at", "2020-04-22 05:38:28.102541"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.029164"], ["updated_at", "2020-04-22 05:38:28.029164"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.118345"], ["updated_at", "2020-04-22 05:38:28.118345"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.126309"], ["updated_at", "2020-04-22 05:38:28.126309"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.132801"], ["updated_at", "2020-04-22 05:38:28.132801"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.169059"], ["updated_at", "2020-04-22 05:38:28.169059"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.0ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_48283


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.0ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_865267


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.315837"], ["updated_at", "2020-04-22 05:38:28.315837"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.328459"], ["updated_at", "2020-04-22 05:38:28.328459"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (63.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.268019"], ["updated_at", "2020-04-22 05:38:28.268019"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.357713"], ["updated_at", "2020-04-22 05:38:28.357713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.367922"], ["updated_at", "2020-04-22 05:38:28.367922"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.459898"], ["updated_at", "2020-04-22 05:38:28.459898"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.6ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (12.9ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_32251


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_863364


 (0.4ms)  SAVEPOINT active_record_1
Course Create (8.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.578183"], ["updated_at", "2020-04-22 05:38:28.578183"]]
Bucket Create (11.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.600984"], ["updated_at", "2020-04-22 05:38:28.600984"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (101.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.515555"], ["updated_at", "2020-04-22 05:38:28.515555"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.622167"], ["updated_at", "2020-04-22 05:38:28.622167"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (16.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:28.638492"], ["updated_at", "2020-04-22 05:38:28.638492"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:28.845019"], ["updated_at", "2020-04-22 05:38:28.845019"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_807172


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:28.903185"], ["updated_at", "2020-04-22 05:38:28.903185"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_458727


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:29.091103"], ["updated_at", "2020-04-22 05:38:29.091103"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:29.130602"], ["updated_at", "2020-04-22 05:38:29.130602"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:29.160420"], ["updated_at", "2020-04-22 05:38:29.160420"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (176.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:29.098721"], ["updated_at", "2020-04-22 05:38:29.098721"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:29.287464"], ["updated_at", "2020-04-22 05:38:29.287464"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
 (4.7ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_110582


Comment Create (5.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (130.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_886773


 (0.3ms)  SAVEPOINT active_record_1
Course Create (185.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:29.411795"], ["updated_at", "2020-04-22 05:38:29.411795"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:29.617722"], ["updated_at", "2020-04-22 05:38:29.617722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:29.631241"], ["updated_at", "2020-04-22 05:38:29.631241"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (63.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:29.606552"], ["updated_at", "2020-04-22 05:38:29.606552"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:29.680378"], ["updated_at", "2020-04-22 05:38:29.680378"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:29.770055"], ["updated_at", "2020-04-22 05:38:29.770055"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_867936


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:29.838546"], ["updated_at", "2020-04-22 05:38:29.838546"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:29.851168"], ["updated_at", "2020-04-22 05:38:29.851168"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:29.858554"], ["updated_at", "2020-04-22 05:38:29.858554"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_245838


 (1.2ms)  SAVEPOINT active_record_1
Course Create (20.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:29.965222"], ["updated_at", "2020-04-22 05:38:29.965222"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.011674"], ["updated_at", "2020-04-22 05:38:30.011674"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (14.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_114937


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.126923"], ["updated_at", "2020-04-22 05:38:30.126923"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.111706"], ["updated_at", "2020-04-22 05:38:30.111706"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.136783"], ["updated_at", "2020-04-22 05:38:30.136783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (4.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.315023"], ["updated_at", "2020-04-22 05:38:30.315023"]]
 (9.2ms)  rollback transaction
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_525819


 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.370846"], ["updated_at", "2020-04-22 05:38:30.370846"]]
Bucket Create (2.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.385100"], ["updated_at", "2020-04-22 05:38:30.385100"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.398796"], ["updated_at", "2020-04-22 05:38:30.398796"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (66.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_792801


 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.511905"], ["updated_at", "2020-04-22 05:38:30.511905"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.525196"], ["updated_at", "2020-04-22 05:38:30.525196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.529456"], ["updated_at", "2020-04-22 05:38:30.529456"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (102.7ms)  RELEASE SAVEPOINT active_record_1
 (23.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_786526


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_218811


 (0.2ms)  SAVEPOINT active_record_1
Course Create (64.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.656521"], ["updated_at", "2020-04-22 05:38:30.656521"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.755073"], ["updated_at", "2020-04-22 05:38:30.755073"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.769661"], ["updated_at", "2020-04-22 05:38:30.769661"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.778345"], ["updated_at", "2020-04-22 05:38:30.778345"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (9.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.767280"], ["updated_at", "2020-04-22 05:38:30.767280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.837107"], ["updated_at", "2020-04-22 05:38:30.837107"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_999783


 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (7.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_393772


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.896056"], ["updated_at", "2020-04-22 05:38:30.896056"]]
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:30.944302"], ["updated_at", "2020-04-22 05:38:30.944302"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:30.955067"], ["updated_at", "2020-04-22 05:38:30.955067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:30.964647"], ["updated_at", "2020-04-22 05:38:30.964647"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.025311"], ["updated_at", "2020-04-22 05:38:31.025311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (26.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.034162"], ["updated_at", "2020-04-22 05:38:31.034162"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (8.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_294756


 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.088982"], ["updated_at", "2020-04-22 05:38:31.088982"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.112898"], ["updated_at", "2020-04-22 05:38:31.112898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_213073


 (1.9ms)  SAVEPOINT active_record_1
Recording Create (6.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.192975"], ["updated_at", "2020-04-22 05:38:31.192975"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.194811"], ["updated_at", "2020-04-22 05:38:31.194811"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.208589"], ["updated_at", "2020-04-22 05:38:31.208589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_979420


Recording Create (4.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.217972"], ["updated_at", "2020-04-22 05:38:31.217972"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.321798"], ["updated_at", "2020-04-22 05:38:31.321798"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.338589"], ["updated_at", "2020-04-22 05:38:31.338589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (79.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_691387


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.348425"], ["updated_at", "2020-04-22 05:38:31.348425"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (11.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (93.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.452682"], ["updated_at", "2020-04-22 05:38:31.452682"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.575269"], ["updated_at", "2020-04-22 05:38:31.575269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_808535


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.675519"], ["updated_at", "2020-04-22 05:38:31.675519"]]
Recording Create (24.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.585558"], ["updated_at", "2020-04-22 05:38:31.585558"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (10.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_193728


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.692477"], ["updated_at", "2020-04-22 05:38:31.692477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.772386"], ["updated_at", "2020-04-22 05:38:31.772386"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (8.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.738687"], ["updated_at", "2020-04-22 05:38:31.738687"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
Bucket Create (16.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.831045"], ["updated_at", "2020-04-22 05:38:31.831045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_576677


Recording Create (7.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.873313"], ["updated_at", "2020-04-22 05:38:31.873313"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (14.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:31.903814"], ["updated_at", "2020-04-22 05:38:31.903814"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:31.967090"], ["updated_at", "2020-04-22 05:38:31.967090"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:31.974508"], ["updated_at", "2020-04-22 05:38:31.974508"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.0ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

 (0.6ms)  SAVEPOINT active_record_1

CommentTest: test_623896


Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.003352"], ["updated_at", "2020-04-22 05:38:32.003352"]]
 (7.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_199559


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.033811"], ["updated_at", "2020-04-22 05:38:32.033811"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.102206"], ["updated_at", "2020-04-22 05:38:32.102206"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (19.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.155883"], ["updated_at", "2020-04-22 05:38:32.155883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (18.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.167160"], ["updated_at", "2020-04-22 05:38:32.167160"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.197177"], ["updated_at", "2020-04-22 05:38:32.197177"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_711431


 (39.4ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_440594


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.311419"], ["updated_at", "2020-04-22 05:38:32.311419"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.320527"], ["updated_at", "2020-04-22 05:38:32.320527"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (15.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.291539"], ["updated_at", "2020-04-22 05:38:32.291539"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.342360"], ["updated_at", "2020-04-22 05:38:32.342360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.325116"], ["updated_at", "2020-04-22 05:38:32.325116"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.434296"], ["updated_at", "2020-04-22 05:38:32.434296"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_382316


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.495225"], ["updated_at", "2020-04-22 05:38:32.495225"]]
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_943663


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.575118"], ["updated_at", "2020-04-22 05:38:32.575118"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.590534"], ["updated_at", "2020-04-22 05:38:32.590534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.609884"], ["updated_at", "2020-04-22 05:38:32.609884"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.622810"], ["updated_at", "2020-04-22 05:38:32.622810"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:32.727397"], ["updated_at", "2020-04-22 05:38:32.727397"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_810824


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (93.6ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (49.1ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_179780


Course Create (14.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.789133"], ["updated_at", "2020-04-22 05:38:32.789133"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:32.982849"], ["updated_at", "2020-04-22 05:38:32.982849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:32.980514"], ["updated_at", "2020-04-22 05:38:32.980514"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.022612"], ["updated_at", "2020-04-22 05:38:33.022612"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.029959"], ["updated_at", "2020-04-22 05:38:33.029959"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.040043"], ["updated_at", "2020-04-22 05:38:33.040043"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_453508


 (0.3ms)  SAVEPOINT active_record_1
 (19.4ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (56.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.191242"], ["updated_at", "2020-04-22 05:38:33.191242"]]
 (44.7ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.298524"], ["updated_at", "2020-04-22 05:38:33.298524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_70649


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.333179"], ["updated_at", "2020-04-22 05:38:33.333179"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.337804"], ["updated_at", "2020-04-22 05:38:33.337804"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.354963"], ["updated_at", "2020-04-22 05:38:33.354963"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.364240"], ["updated_at", "2020-04-22 05:38:33.364240"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_918642


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.451729"], ["updated_at", "2020-04-22 05:38:33.451729"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.464269"], ["updated_at", "2020-04-22 05:38:33.464269"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.474853"], ["updated_at", "2020-04-22 05:38:33.474853"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_930522


 (0.4ms)  SAVEPOINT active_record_1
Course Create (16.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.542977"], ["updated_at", "2020-04-22 05:38:33.542977"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.605858"], ["updated_at", "2020-04-22 05:38:33.605858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (13.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_73383


 (0.6ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.653488"], ["updated_at", "2020-04-22 05:38:33.653488"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.615835"], ["updated_at", "2020-04-22 05:38:33.615835"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.668308"], ["updated_at", "2020-04-22 05:38:33.668308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.771907"], ["updated_at", "2020-04-22 05:38:33.771907"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.7ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_311112


 (0.6ms)  SAVEPOINT active_record_1
Comment Create (21.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_863201


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.842947"], ["updated_at", "2020-04-22 05:38:33.842947"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:33.791228"], ["updated_at", "2020-04-22 05:38:33.791228"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.856076"], ["updated_at", "2020-04-22 05:38:33.856076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:33.864588"], ["updated_at", "2020-04-22 05:38:33.864588"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (17.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.950328"], ["updated_at", "2020-04-22 05:38:33.950328"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:33.998391"], ["updated_at", "2020-04-22 05:38:33.998391"]]
 (0.2ms)  begin transaction

CommentTest: test_63323


 (0.4ms)  SAVEPOINT active_record_1
 (15.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_319160


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.132678"], ["updated_at", "2020-04-22 05:38:34.132678"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.151944"], ["updated_at", "2020-04-22 05:38:34.151944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.160859"], ["updated_at", "2020-04-22 05:38:34.160859"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (140.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.019111"], ["updated_at", "2020-04-22 05:38:34.019111"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.178479"], ["updated_at", "2020-04-22 05:38:34.178479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.205977"], ["updated_at", "2020-04-22 05:38:34.205977"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_177789


 (0.4ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (4.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_370718


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.322655"], ["updated_at", "2020-04-22 05:38:34.322655"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.335907"], ["updated_at", "2020-04-22 05:38:34.335907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.346721"], ["updated_at", "2020-04-22 05:38:34.346721"]]
Course Create (33.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.262735"], ["updated_at", "2020-04-22 05:38:34.262735"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.368625"], ["updated_at", "2020-04-22 05:38:34.368625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.395818"], ["updated_at", "2020-04-22 05:38:34.395818"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (53.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_9804


 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (16.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.530798"], ["updated_at", "2020-04-22 05:38:34.530798"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_60070


Bucket Create (11.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.567197"], ["updated_at", "2020-04-22 05:38:34.567197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.588633"], ["updated_at", "2020-04-22 05:38:34.588633"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.620045"], ["updated_at", "2020-04-22 05:38:34.620045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.622219"], ["updated_at", "2020-04-22 05:38:34.622219"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.630360"], ["updated_at", "2020-04-22 05:38:34.630360"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (102.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (9.4ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (5.1ms)  rollback transaction

CommentTest: test_447599


 (0.3ms)  SAVEPOINT active_record_1
 (1.4ms)  begin transaction

CommentTest: test_406017


Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.765554"], ["updated_at", "2020-04-22 05:38:34.765554"]]
 (0.8ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.783404"], ["updated_at", "2020-04-22 05:38:34.783404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:34.780801"], ["updated_at", "2020-04-22 05:38:34.780801"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.793765"], ["updated_at", "2020-04-22 05:38:34.793765"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:34.893121"], ["updated_at", "2020-04-22 05:38:34.893121"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:34.948913"], ["updated_at", "2020-04-22 05:38:34.948913"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_464319


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.001331"], ["updated_at", "2020-04-22 05:38:35.001331"]]
 (1.1ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (1.0ms)  begin transaction

CommentTest: test_232562


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.069044"], ["updated_at", "2020-04-22 05:38:35.069044"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.086642"], ["updated_at", "2020-04-22 05:38:35.086642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.097403"], ["updated_at", "2020-04-22 05:38:35.097403"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_529008


Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.029125"], ["updated_at", "2020-04-22 05:38:35.029125"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.148888"], ["updated_at", "2020-04-22 05:38:35.148888"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.156895"], ["updated_at", "2020-04-22 05:38:35.156895"]]
Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.164003"], ["updated_at", "2020-04-22 05:38:35.164003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_244856


 (0.4ms)  SAVEPOINT active_record_1
Course Create (11.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.231234"], ["updated_at", "2020-04-22 05:38:35.231234"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.254931"], ["updated_at", "2020-04-22 05:38:35.254931"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.374684"], ["updated_at", "2020-04-22 05:38:35.374684"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.389760"], ["updated_at", "2020-04-22 05:38:35.389760"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (4.5ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.6ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (41.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (9.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_365033


 (0.2ms)  begin transaction

CommentTest: test_698887


 (3.5ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.541587"], ["updated_at", "2020-04-22 05:38:35.541587"]]
 (6.9ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.589379"], ["updated_at", "2020-04-22 05:38:35.589379"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (21.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.543889"], ["updated_at", "2020-04-22 05:38:35.543889"]]
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.616453"], ["updated_at", "2020-04-22 05:38:35.616453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.611336"], ["updated_at", "2020-04-22 05:38:35.611336"]]
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction
Recording Create (14.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.635130"], ["updated_at", "2020-04-22 05:38:35.635130"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_720775


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.731250"], ["updated_at", "2020-04-22 05:38:35.731250"]]
 (9.9ms)  rollback transaction
Bucket Create (3.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.800667"], ["updated_at", "2020-04-22 05:38:35.800667"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_879261


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.811763"], ["updated_at", "2020-04-22 05:38:35.811763"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:35.879299"], ["updated_at", "2020-04-22 05:38:35.879299"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (16.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (7.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:35.956005"], ["updated_at", "2020-04-22 05:38:35.956005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:35.988829"], ["updated_at", "2020-04-22 05:38:35.988829"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (79.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_238262


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.015464"], ["updated_at", "2020-04-22 05:38:36.015464"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.058713"], ["updated_at", "2020-04-22 05:38:36.058713"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.1ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_815526


 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.151932"], ["updated_at", "2020-04-22 05:38:36.151932"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.159119"], ["updated_at", "2020-04-22 05:38:36.159119"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.220413"], ["updated_at", "2020-04-22 05:38:36.220413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (29.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.237888"], ["updated_at", "2020-04-22 05:38:36.237888"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_858132


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.275072"], ["updated_at", "2020-04-22 05:38:36.275072"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.284663"], ["updated_at", "2020-04-22 05:38:36.284663"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.293335"], ["updated_at", "2020-04-22 05:38:36.293335"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_675174


 (0.4ms)  SAVEPOINT active_record_1
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.377727"], ["updated_at", "2020-04-22 05:38:36.377727"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.394494"], ["updated_at", "2020-04-22 05:38:36.394494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.402255"], ["updated_at", "2020-04-22 05:38:36.402255"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (13.4ms)  begin transaction

CommentTest: test_909102


 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (3.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.582376"], ["updated_at", "2020-04-22 05:38:36.582376"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_610382


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.620956"], ["updated_at", "2020-04-22 05:38:36.620956"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.631958"], ["updated_at", "2020-04-22 05:38:36.631958"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.645775"], ["updated_at", "2020-04-22 05:38:36.645775"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.655477"], ["updated_at", "2020-04-22 05:38:36.655477"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (10.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.758633"], ["updated_at", "2020-04-22 05:38:36.758633"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_162009


 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (23.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.8ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.790117"], ["updated_at", "2020-04-22 05:38:36.790117"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:36.837334"], ["updated_at", "2020-04-22 05:38:36.837334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:36.899234"], ["updated_at", "2020-04-22 05:38:36.899234"]]
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_995105


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:36.923216"], ["updated_at", "2020-04-22 05:38:36.923216"]]
 (5.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_655214


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.012923"], ["updated_at", "2020-04-22 05:38:37.012923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (7.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.037240"], ["updated_at", "2020-04-22 05:38:37.037240"]]
 (3.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (9.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (123.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.002987"], ["updated_at", "2020-04-22 05:38:37.002987"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.148424"], ["updated_at", "2020-04-22 05:38:37.148424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_204757


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.160467"], ["updated_at", "2020-04-22 05:38:37.160467"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.181834"], ["updated_at", "2020-04-22 05:38:37.181834"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (38.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.172888"], ["updated_at", "2020-04-22 05:38:37.172888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.221540"], ["updated_at", "2020-04-22 05:38:37.221540"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_349661


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.238678"], ["updated_at", "2020-04-22 05:38:37.238678"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.248854"], ["updated_at", "2020-04-22 05:38:37.248854"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (31.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_387352


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.344045"], ["updated_at", "2020-04-22 05:38:37.344045"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.333647"], ["updated_at", "2020-04-22 05:38:37.333647"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.413629"], ["updated_at", "2020-04-22 05:38:37.413629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (15.2ms)  rollback transaction
Recording Create (24.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.425633"], ["updated_at", "2020-04-22 05:38:37.425633"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_253190


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_537142


 (0.8ms)  SAVEPOINT active_record_1
Course Create (87.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.480269"], ["updated_at", "2020-04-22 05:38:37.480269"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.584105"], ["updated_at", "2020-04-22 05:38:37.584105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.597994"], ["updated_at", "2020-04-22 05:38:37.597994"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (78.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.524503"], ["updated_at", "2020-04-22 05:38:37.524503"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.613906"], ["updated_at", "2020-04-22 05:38:37.613906"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.625136"], ["updated_at", "2020-04-22 05:38:37.625136"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_651104


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.659448"], ["updated_at", "2020-04-22 05:38:37.659448"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.671424"], ["updated_at", "2020-04-22 05:38:37.671424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_730358


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.701040"], ["updated_at", "2020-04-22 05:38:37.701040"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.705858"], ["updated_at", "2020-04-22 05:38:37.705858"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.736126"], ["updated_at", "2020-04-22 05:38:37.736126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.798700"], ["updated_at", "2020-04-22 05:38:37.798700"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (62.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_899380


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.826323"], ["updated_at", "2020-04-22 05:38:37.826323"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.841102"], ["updated_at", "2020-04-22 05:38:37.841102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.869618"], ["updated_at", "2020-04-22 05:38:37.869618"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (25.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_869208


 (0.8ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.894377"], ["updated_at", "2020-04-22 05:38:37.894377"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:37.950360"], ["updated_at", "2020-04-22 05:38:37.950360"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_42826


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:37.987191"], ["updated_at", "2020-04-22 05:38:37.987191"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.012874"], ["updated_at", "2020-04-22 05:38:38.012874"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (66.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:37.957754"], ["updated_at", "2020-04-22 05:38:37.957754"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.082280"], ["updated_at", "2020-04-22 05:38:38.082280"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_18733


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.101483"], ["updated_at", "2020-04-22 05:38:38.101483"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_118446


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.140420"], ["updated_at", "2020-04-22 05:38:38.140420"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.143971"], ["updated_at", "2020-04-22 05:38:38.143971"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.154665"], ["updated_at", "2020-04-22 05:38:38.154665"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.170245"], ["updated_at", "2020-04-22 05:38:38.170245"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.161942"], ["updated_at", "2020-04-22 05:38:38.161942"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (7.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_966412


 (0.3ms)  SAVEPOINT active_record_1
Course Create (30.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.507156"], ["updated_at", "2020-04-22 05:38:38.507156"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.546208"], ["updated_at", "2020-04-22 05:38:38.546208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_252199


 (0.7ms)  SAVEPOINT active_record_1
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.641867"], ["updated_at", "2020-04-22 05:38:38.641867"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.783666"], ["updated_at", "2020-04-22 05:38:38.783666"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.833107"], ["updated_at", "2020-04-22 05:38:38.833107"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.869434"], ["updated_at", "2020-04-22 05:38:38.869434"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (14.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_667882


 (0.3ms)  SAVEPOINT active_record_1
 (49.4ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.912036"], ["updated_at", "2020-04-22 05:38:38.912036"]]
 (0.2ms)  begin transaction

CommentTest: test_191850


 (0.7ms)  SAVEPOINT active_record_1
Bucket Create (5.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.976750"], ["updated_at", "2020-04-22 05:38:38.976750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:38.974067"], ["updated_at", "2020-04-22 05:38:38.974067"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:38.997059"], ["updated_at", "2020-04-22 05:38:38.997059"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:38.994714"], ["updated_at", "2020-04-22 05:38:38.994714"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.005051"], ["updated_at", "2020-04-22 05:38:39.005051"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_499503


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (16.5ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_791950


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.055440"], ["updated_at", "2020-04-22 05:38:39.055440"]]
 (0.7ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.218690"], ["updated_at", "2020-04-22 05:38:39.218690"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.226653"], ["updated_at", "2020-04-22 05:38:39.226653"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.234578"], ["updated_at", "2020-04-22 05:38:39.234578"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.237921"], ["updated_at", "2020-04-22 05:38:39.237921"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.302968"], ["updated_at", "2020-04-22 05:38:39.302968"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.6ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
 (1.0ms)  begin transaction

CommentTest: test_178293


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (8.2ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_866354


Course Create (37.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.397752"], ["updated_at", "2020-04-22 05:38:39.397752"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.473082"], ["updated_at", "2020-04-22 05:38:39.473082"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (47.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.441220"], ["updated_at", "2020-04-22 05:38:39.441220"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.503224"], ["updated_at", "2020-04-22 05:38:39.503224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.520178"], ["updated_at", "2020-04-22 05:38:39.520178"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.520343"], ["updated_at", "2020-04-22 05:38:39.520343"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.9ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.1ms)  rollback transaction
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_766775


 (1.5ms)  SAVEPOINT active_record_1

CommentTest: test_142608


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.628839"], ["updated_at", "2020-04-22 05:38:39.628839"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.635752"], ["updated_at", "2020-04-22 05:38:39.635752"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.647842"], ["updated_at", "2020-04-22 05:38:39.647842"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.654568"], ["updated_at", "2020-04-22 05:38:39.654568"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.688278"], ["updated_at", "2020-04-22 05:38:39.688278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.696891"], ["updated_at", "2020-04-22 05:38:39.696891"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_12883


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (12.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.785200"], ["updated_at", "2020-04-22 05:38:39.785200"]]
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_984644


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.871875"], ["updated_at", "2020-04-22 05:38:39.871875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.906250"], ["updated_at", "2020-04-22 05:38:39.906250"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (75.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:39.852556"], ["updated_at", "2020-04-22 05:38:39.852556"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:39.939838"], ["updated_at", "2020-04-22 05:38:39.939838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:39.958641"], ["updated_at", "2020-04-22 05:38:39.958641"]]
 (1.7ms)  SAVEPOINT active_record_1
Comment Create (11.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_892149


 (3.8ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (49.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.008606"], ["updated_at", "2020-04-22 05:38:40.008606"]]
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_194183


 (0.4ms)  SAVEPOINT active_record_1
Bucket Create (30.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.072014"], ["updated_at", "2020-04-22 05:38:40.072014"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:40.111403"], ["updated_at", "2020-04-22 05:38:40.111403"]]
 (16.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (201.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.087418"], ["updated_at", "2020-04-22 05:38:40.087418"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.309992"], ["updated_at", "2020-04-22 05:38:40.309992"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:40.316662"], ["updated_at", "2020-04-22 05:38:40.316662"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_873374


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.351422"], ["updated_at", "2020-04-22 05:38:40.351422"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.363087"], ["updated_at", "2020-04-22 05:38:40.363087"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:40.371649"], ["updated_at", "2020-04-22 05:38:40.371649"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (22.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_193434


 (0.3ms)  SAVEPOINT active_record_1
Course Create (20.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.455905"], ["updated_at", "2020-04-22 05:38:40.455905"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.504116"], ["updated_at", "2020-04-22 05:38:40.504116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (35.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_915725


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:40.633890"], ["updated_at", "2020-04-22 05:38:40.633890"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.636448"], ["updated_at", "2020-04-22 05:38:40.636448"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.739160"], ["updated_at", "2020-04-22 05:38:40.739160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (36.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (7.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:40.753854"], ["updated_at", "2020-04-22 05:38:40.753854"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (3.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_74408


 (0.2ms)  begin transaction

CommentTest: test_93572


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.806814"], ["updated_at", "2020-04-22 05:38:40.806814"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:40.949858"], ["updated_at", "2020-04-22 05:38:40.949858"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (160.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:40.803017"], ["updated_at", "2020-04-22 05:38:40.803017"]]
Bucket Create (22.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.002084"], ["updated_at", "2020-04-22 05:38:41.002084"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.037609"], ["updated_at", "2020-04-22 05:38:41.037609"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.028237"], ["updated_at", "2020-04-22 05:38:41.028237"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.8ms)  rollback transaction
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_201765


 (0.3ms)  begin transaction

CommentTest: test_292044


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.220394"], ["updated_at", "2020-04-22 05:38:41.220394"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.231013"], ["updated_at", "2020-04-22 05:38:41.231013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.223650"], ["updated_at", "2020-04-22 05:38:41.223650"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.244224"], ["updated_at", "2020-04-22 05:38:41.244224"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.353982"], ["updated_at", "2020-04-22 05:38:41.353982"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.240274"], ["updated_at", "2020-04-22 05:38:41.240274"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (12.2ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_356068


 (0.8ms)  SAVEPOINT active_record_1
 (16.3ms)  rollback transaction
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.422944"], ["updated_at", "2020-04-22 05:38:41.422944"]]
 (0.3ms)  begin transaction

CommentTest: test_541914


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.467604"], ["updated_at", "2020-04-22 05:38:41.467604"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.480035"], ["updated_at", "2020-04-22 05:38:41.480035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.491798"], ["updated_at", "2020-04-22 05:38:41.491798"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (48.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.456817"], ["updated_at", "2020-04-22 05:38:41.456817"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.540198"], ["updated_at", "2020-04-22 05:38:41.540198"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (56.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.3ms)  rollback transaction
 (9.9ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_591098


 (0.2ms)  begin transaction

CommentTest: test_633228


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.640097"], ["updated_at", "2020-04-22 05:38:41.640097"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.652160"], ["updated_at", "2020-04-22 05:38:41.652160"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (17.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.638673"], ["updated_at", "2020-04-22 05:38:41.638673"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.663732"], ["updated_at", "2020-04-22 05:38:41.663732"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.666924"], ["updated_at", "2020-04-22 05:38:41.666924"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.681254"], ["updated_at", "2020-04-22 05:38:41.681254"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_668469


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.787149"], ["updated_at", "2020-04-22 05:38:41.787149"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.797903"], ["updated_at", "2020-04-22 05:38:41.797903"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (8.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_139300


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.835437"], ["updated_at", "2020-04-22 05:38:41.835437"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (68.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.824125"], ["updated_at", "2020-04-22 05:38:41.824125"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.902938"], ["updated_at", "2020-04-22 05:38:41.902938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.915360"], ["updated_at", "2020-04-22 05:38:41.915360"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.9ms)  rollback transaction
 (0.7ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_233274


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_846773


Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.945998"], ["updated_at", "2020-04-22 05:38:41.945998"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:41.964470"], ["updated_at", "2020-04-22 05:38:41.964470"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.972024"], ["updated_at", "2020-04-22 05:38:41.972024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:41.978838"], ["updated_at", "2020-04-22 05:38:41.978838"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.983594"], ["updated_at", "2020-04-22 05:38:41.983594"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:41.994893"], ["updated_at", "2020-04-22 05:38:41.994893"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (6.1ms)  rollback transaction
 (13.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_425701


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.075493"], ["updated_at", "2020-04-22 05:38:42.075493"]]
 (0.2ms)  begin transaction

CommentTest: test_288961


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.102217"], ["updated_at", "2020-04-22 05:38:42.102217"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.087771"], ["updated_at", "2020-04-22 05:38:42.087771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.136564"], ["updated_at", "2020-04-22 05:38:42.136564"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.122883"], ["updated_at", "2020-04-22 05:38:42.122883"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.181666"], ["updated_at", "2020-04-22 05:38:42.181666"]]
 (10.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_434330


 (0.4ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (12.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.206298"], ["updated_at", "2020-04-22 05:38:42.206298"]]
 (0.3ms)  begin transaction

CommentTest: test_30869


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.227907"], ["updated_at", "2020-04-22 05:38:42.227907"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.234318"], ["updated_at", "2020-04-22 05:38:42.234318"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.245245"], ["updated_at", "2020-04-22 05:38:42.245245"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.252690"], ["updated_at", "2020-04-22 05:38:42.252690"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.258757"], ["updated_at", "2020-04-22 05:38:42.258757"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (20.2ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_730792


 (0.3ms)  begin transaction

CommentTest: test_792919


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (17.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.313983"], ["updated_at", "2020-04-22 05:38:42.313983"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.339732"], ["updated_at", "2020-04-22 05:38:42.339732"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.347290"], ["updated_at", "2020-04-22 05:38:42.347290"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (42.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.307956"], ["updated_at", "2020-04-22 05:38:42.307956"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.378687"], ["updated_at", "2020-04-22 05:38:42.378687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.391434"], ["updated_at", "2020-04-22 05:38:42.391434"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (13.4ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (4.2ms)  rollback transaction

CommentTest: test_532737


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.434065"], ["updated_at", "2020-04-22 05:38:42.434065"]]
Bucket Create (24.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.457258"], ["updated_at", "2020-04-22 05:38:42.457258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_467901


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.586728"], ["updated_at", "2020-04-22 05:38:42.586728"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.596534"], ["updated_at", "2020-04-22 05:38:42.596534"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (12.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.491259"], ["updated_at", "2020-04-22 05:38:42.491259"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.604086"], ["updated_at", "2020-04-22 05:38:42.604086"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_594134


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.773915"], ["updated_at", "2020-04-22 05:38:42.773915"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.786494"], ["updated_at", "2020-04-22 05:38:42.786494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.794432"], ["updated_at", "2020-04-22 05:38:42.794432"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (42.7ms)  SAVEPOINT active_record_1
 (28.4ms)  rollback transaction
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_995870


 (0.3ms)  SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.874641"], ["updated_at", "2020-04-22 05:38:42.874641"]]
 (0.2ms)  begin transaction

Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.892659"], ["updated_at", "2020-04-22 05:38:42.892659"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_843157


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.906121"], ["updated_at", "2020-04-22 05:38:42.906121"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.906534"], ["updated_at", "2020-04-22 05:38:42.906534"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.924245"], ["updated_at", "2020-04-22 05:38:42.924245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (15.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_566016


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:42.967919"], ["updated_at", "2020-04-22 05:38:42.967919"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:42.982916"], ["updated_at", "2020-04-22 05:38:42.982916"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:42.996190"], ["updated_at", "2020-04-22 05:38:42.996190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (16.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_543013


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.014612"], ["updated_at", "2020-04-22 05:38:43.014612"]]
Bucket Create (11.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.026898"], ["updated_at", "2020-04-22 05:38:43.026898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.003879"], ["updated_at", "2020-04-22 05:38:43.003879"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.057454"], ["updated_at", "2020-04-22 05:38:43.057454"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_475329


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.174047"], ["updated_at", "2020-04-22 05:38:43.174047"]]
 (0.2ms)  begin transaction

CommentTest: test_900336


 (1.0ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.270437"], ["updated_at", "2020-04-22 05:38:43.270437"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.214782"], ["updated_at", "2020-04-22 05:38:43.214782"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.295202"], ["updated_at", "2020-04-22 05:38:43.295202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.301136"], ["updated_at", "2020-04-22 05:38:43.301136"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.0ms)  SAVEPOINT active_record_1
Recording Create (31.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.302531"], ["updated_at", "2020-04-22 05:38:43.302531"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (75.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.5ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  begin transaction

CommentTest: test_567462


 (0.5ms)  SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_105207


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.508430"], ["updated_at", "2020-04-22 05:38:43.508430"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.453725"], ["updated_at", "2020-04-22 05:38:43.453725"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.515453"], ["updated_at", "2020-04-22 05:38:43.515453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.521814"], ["updated_at", "2020-04-22 05:38:43.521814"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.521147"], ["updated_at", "2020-04-22 05:38:43.521147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.530491"], ["updated_at", "2020-04-22 05:38:43.530491"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_454526


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.585848"], ["updated_at", "2020-04-22 05:38:43.585848"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_145219


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.611151"], ["updated_at", "2020-04-22 05:38:43.611151"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.591923"], ["updated_at", "2020-04-22 05:38:43.591923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.636875"], ["updated_at", "2020-04-22 05:38:43.636875"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.677610"], ["updated_at", "2020-04-22 05:38:43.677610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.682601"], ["updated_at", "2020-04-22 05:38:43.682601"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (11.0ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_36140



CommentTest: test_814158


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (5.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.736443"], ["updated_at", "2020-04-22 05:38:43.736443"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.752829"], ["updated_at", "2020-04-22 05:38:43.752829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.761760"], ["updated_at", "2020-04-22 05:38:43.761760"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (54.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.735854"], ["updated_at", "2020-04-22 05:38:43.735854"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.797323"], ["updated_at", "2020-04-22 05:38:43.797323"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.821010"], ["updated_at", "2020-04-22 05:38:43.821010"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (30.6ms)  rollback transaction
Comment Create (27.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_283561


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.882878"], ["updated_at", "2020-04-22 05:38:43.882878"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.898960"], ["updated_at", "2020-04-22 05:38:43.898960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_269861


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:43.945291"], ["updated_at", "2020-04-22 05:38:43.945291"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:43.956631"], ["updated_at", "2020-04-22 05:38:43.956631"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.978242"], ["updated_at", "2020-04-22 05:38:43.978242"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (54.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:43.968372"], ["updated_at", "2020-04-22 05:38:43.968372"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (1.2ms)  begin transaction

CommentTest: test_61676


 (1.2ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.094226"], ["updated_at", "2020-04-22 05:38:44.094226"]]
 (27.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_705187


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.167973"], ["updated_at", "2020-04-22 05:38:44.167973"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.177766"], ["updated_at", "2020-04-22 05:38:44.177766"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (45.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.135209"], ["updated_at", "2020-04-22 05:38:44.135209"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.201375"], ["updated_at", "2020-04-22 05:38:44.201375"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.212579"], ["updated_at", "2020-04-22 05:38:44.212579"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (12.6ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_76636


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (52.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.260507"], ["updated_at", "2020-04-22 05:38:44.260507"]]
 (11.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_514077


Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.348504"], ["updated_at", "2020-04-22 05:38:44.348504"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.357801"], ["updated_at", "2020-04-22 05:38:44.357801"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.355460"], ["updated_at", "2020-04-22 05:38:44.355460"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.367670"], ["updated_at", "2020-04-22 05:38:44.367670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.382126"], ["updated_at", "2020-04-22 05:38:44.382126"]]
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_35156


 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.404813"], ["updated_at", "2020-04-22 05:38:44.404813"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.420286"], ["updated_at", "2020-04-22 05:38:44.420286"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_147945


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.547874"], ["updated_at", "2020-04-22 05:38:44.547874"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.560669"], ["updated_at", "2020-04-22 05:38:44.560669"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.561956"], ["updated_at", "2020-04-22 05:38:44.561956"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_229677


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.616327"], ["updated_at", "2020-04-22 05:38:44.616327"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.622183"], ["updated_at", "2020-04-22 05:38:44.622183"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (103.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (3.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_934138


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.764608"], ["updated_at", "2020-04-22 05:38:44.764608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:44.774461"], ["updated_at", "2020-04-22 05:38:44.774461"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:44.783444"], ["updated_at", "2020-04-22 05:38:44.783444"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.787537"], ["updated_at", "2020-04-22 05:38:44.787537"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:44.779601"], ["updated_at", "2020-04-22 05:38:44.779601"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (12.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_387033


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_891135


Course Create (99.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.170384"], ["updated_at", "2020-04-22 05:38:45.170384"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.182201"], ["updated_at", "2020-04-22 05:38:45.182201"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.278122"], ["updated_at", "2020-04-22 05:38:45.278122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.280849"], ["updated_at", "2020-04-22 05:38:45.280849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.287871"], ["updated_at", "2020-04-22 05:38:45.287871"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.363007"], ["updated_at", "2020-04-22 05:38:45.363007"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (14.9ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_620516


 (0.4ms)  SAVEPOINT active_record_1
 (11.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_31726


 (0.7ms)  SAVEPOINT active_record_1
Course Create (51.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.436651"], ["updated_at", "2020-04-22 05:38:45.436651"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.502549"], ["updated_at", "2020-04-22 05:38:45.502549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (17.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.487981"], ["updated_at", "2020-04-22 05:38:45.487981"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.515880"], ["updated_at", "2020-04-22 05:38:45.515880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.523239"], ["updated_at", "2020-04-22 05:38:45.523239"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.536193"], ["updated_at", "2020-04-22 05:38:45.536193"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_919012


 (0.3ms)  SAVEPOINT active_record_1
 (54.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (3.2ms)  begin transaction

CommentTest: test_417432


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.663839"], ["updated_at", "2020-04-22 05:38:45.663839"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.629252"], ["updated_at", "2020-04-22 05:38:45.629252"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.799938"], ["updated_at", "2020-04-22 05:38:45.799938"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.809401"], ["updated_at", "2020-04-22 05:38:45.809401"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.837959"], ["updated_at", "2020-04-22 05:38:45.837959"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.869261"], ["updated_at", "2020-04-22 05:38:45.869261"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.4ms)  rollback transaction
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_753286


 (0.2ms)  begin transaction

CommentTest: test_918306


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.965127"], ["updated_at", "2020-04-22 05:38:45.965127"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:45.967994"], ["updated_at", "2020-04-22 05:38:45.967994"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:45.978072"], ["updated_at", "2020-04-22 05:38:45.978072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:45.986170"], ["updated_at", "2020-04-22 05:38:45.986170"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.071863"], ["updated_at", "2020-04-22 05:38:46.071863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.177017"], ["updated_at", "2020-04-22 05:38:46.177017"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.8ms)  rollback transaction
 (1.6ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_561716


 (0.3ms)  begin transaction

CommentTest: test_865471


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.219371"], ["updated_at", "2020-04-22 05:38:46.219371"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.231604"], ["updated_at", "2020-04-22 05:38:46.231604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.224636"], ["updated_at", "2020-04-22 05:38:46.224636"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.238985"], ["updated_at", "2020-04-22 05:38:46.238985"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.241625"], ["updated_at", "2020-04-22 05:38:46.241625"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.248480"], ["updated_at", "2020-04-22 05:38:46.248480"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_164547


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.357902"], ["updated_at", "2020-04-22 05:38:46.357902"]]
 (2.2ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.367593"], ["updated_at", "2020-04-22 05:38:46.367593"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.378012"], ["updated_at", "2020-04-22 05:38:46.378012"]]
 (0.2ms)  begin transaction

CommentTest: test_815446


 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.387843"], ["updated_at", "2020-04-22 05:38:46.387843"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.397898"], ["updated_at", "2020-04-22 05:38:46.397898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (104.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.486924"], ["updated_at", "2020-04-22 05:38:46.486924"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (7.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  begin transaction

CommentTest: test_83347


 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.530274"], ["updated_at", "2020-04-22 05:38:46.530274"]]
 (0.2ms)  begin transaction

CommentTest: test_360624


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.542776"], ["updated_at", "2020-04-22 05:38:46.542776"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.621368"], ["updated_at", "2020-04-22 05:38:46.621368"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (41.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.553120"], ["updated_at", "2020-04-22 05:38:46.553120"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.700291"], ["updated_at", "2020-04-22 05:38:46.700291"]]
Recording Create (67.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.638062"], ["updated_at", "2020-04-22 05:38:46.638062"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_202539


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.788732"], ["updated_at", "2020-04-22 05:38:46.788732"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (9.2ms)  rollback transaction
 (1.4ms)  begin transaction

CommentTest: test_736046


 (0.2ms)  SAVEPOINT active_record_1
Course Create (14.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:46.865693"], ["updated_at", "2020-04-22 05:38:46.865693"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.895072"], ["updated_at", "2020-04-22 05:38:46.895072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (9.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:46.812312"], ["updated_at", "2020-04-22 05:38:46.812312"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:46.986266"], ["updated_at", "2020-04-22 05:38:46.986266"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.006477"], ["updated_at", "2020-04-22 05:38:47.006477"]]
 (10.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_854156


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.035755"], ["updated_at", "2020-04-22 05:38:47.035755"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.047724"], ["updated_at", "2020-04-22 05:38:47.047724"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  RELEASE SAVEPOINT active_record_1
 (11.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_563095


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.169480"], ["updated_at", "2020-04-22 05:38:47.169480"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.197554"], ["updated_at", "2020-04-22 05:38:47.197554"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.214453"], ["updated_at", "2020-04-22 05:38:47.214453"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (4.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.255180"], ["updated_at", "2020-04-22 05:38:47.255180"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  SAVEPOINT active_record_1
 (10.0ms)  rollback transaction
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_107664


 (0.8ms)  SAVEPOINT active_record_1
Course Create (6.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.366991"], ["updated_at", "2020-04-22 05:38:47.366991"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.401458"], ["updated_at", "2020-04-22 05:38:47.401458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_537343


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.420232"], ["updated_at", "2020-04-22 05:38:47.420232"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.434156"], ["updated_at", "2020-04-22 05:38:47.434156"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.415858"], ["updated_at", "2020-04-22 05:38:47.415858"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (4.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.499215"], ["updated_at", "2020-04-22 05:38:47.499215"]]
 (9.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_680310


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.518333"], ["updated_at", "2020-04-22 05:38:47.518333"]]
Bucket Load (2.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.552476"], ["updated_at", "2020-04-22 05:38:47.552476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_275290


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.654837"], ["updated_at", "2020-04-22 05:38:47.654837"]]
Recording Create (18.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.566902"], ["updated_at", "2020-04-22 05:38:47.566902"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (12.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.671409"], ["updated_at", "2020-04-22 05:38:47.671409"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.814595"], ["updated_at", "2020-04-22 05:38:47.814595"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (42.4ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_813349


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.867186"], ["updated_at", "2020-04-22 05:38:47.867186"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.879881"], ["updated_at", "2020-04-22 05:38:47.879881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (20.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (6.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_541858


 (0.6ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:47.920788"], ["updated_at", "2020-04-22 05:38:47.920788"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:47.934413"], ["updated_at", "2020-04-22 05:38:47.934413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:47.995899"], ["updated_at", "2020-04-22 05:38:47.995899"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.009015"], ["updated_at", "2020-04-22 05:38:48.009015"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (11.4ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_41507


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.048162"], ["updated_at", "2020-04-22 05:38:48.048162"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.060561"], ["updated_at", "2020-04-22 05:38:48.060561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_243872


 (0.8ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.140324"], ["updated_at", "2020-04-22 05:38:48.140324"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.164634"], ["updated_at", "2020-04-22 05:38:48.164634"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.172006"], ["updated_at", "2020-04-22 05:38:48.172006"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.068612"], ["updated_at", "2020-04-22 05:38:48.068612"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_194930


 (0.2ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.234839"], ["updated_at", "2020-04-22 05:38:48.234839"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.249404"], ["updated_at", "2020-04-22 05:38:48.249404"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_443705


 (0.2ms)  SAVEPOINT active_record_1
Course Create (53.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.316528"], ["updated_at", "2020-04-22 05:38:48.316528"]]
Recording Create (132.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.258391"], ["updated_at", "2020-04-22 05:38:48.258391"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (15.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.383751"], ["updated_at", "2020-04-22 05:38:48.383751"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (7.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.412500"], ["updated_at", "2020-04-22 05:38:48.412500"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (10.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  begin transaction
 (2.6ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_195714


 (2.0ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.497948"], ["updated_at", "2020-04-22 05:38:48.497948"]]
 (0.2ms)  begin transaction

CommentTest: test_164229


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.513104"], ["updated_at", "2020-04-22 05:38:48.513104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.519418"], ["updated_at", "2020-04-22 05:38:48.519418"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.536737"], ["updated_at", "2020-04-22 05:38:48.536737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (12.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.588755"], ["updated_at", "2020-04-22 05:38:48.588755"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (13.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_156846


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.621670"], ["updated_at", "2020-04-22 05:38:48.621670"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (96.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.653812"], ["updated_at", "2020-04-22 05:38:48.653812"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.781610"], ["updated_at", "2020-04-22 05:38:48.781610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_525275


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.889075"], ["updated_at", "2020-04-22 05:38:48.889075"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (104.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.804195"], ["updated_at", "2020-04-22 05:38:48.804195"]]
 (11.4ms)  rollback transaction
Bucket Create (5.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:48.921000"], ["updated_at", "2020-04-22 05:38:48.921000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_393919


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:48.934130"], ["updated_at", "2020-04-22 05:38:48.934130"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (101.9ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:48.937923"], ["updated_at", "2020-04-22 05:38:48.937923"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.071776"], ["updated_at", "2020-04-22 05:38:49.071776"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (12.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_571234


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.101702"], ["updated_at", "2020-04-22 05:38:49.101702"]]
Recording Create (7.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.085291"], ["updated_at", "2020-04-22 05:38:49.085291"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.113982"], ["updated_at", "2020-04-22 05:38:49.113982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.166385"], ["updated_at", "2020-04-22 05:38:49.166385"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (10.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_291442


 (0.4ms)  SAVEPOINT active_record_1
Course Create (5.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.219242"], ["updated_at", "2020-04-22 05:38:49.219242"]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.236349"], ["updated_at", "2020-04-22 05:38:49.236349"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (61.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_944583


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.355365"], ["updated_at", "2020-04-22 05:38:49.355365"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.337410"], ["updated_at", "2020-04-22 05:38:49.337410"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (4.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.404020"], ["updated_at", "2020-04-22 05:38:49.404020"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.496994"], ["updated_at", "2020-04-22 05:38:49.496994"]]
 (51.3ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_946696


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (63.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.535649"], ["updated_at", "2020-04-22 05:38:49.535649"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (4.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.620072"], ["updated_at", "2020-04-22 05:38:49.620072"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (12.7ms)  rollback transaction
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.634872"], ["updated_at", "2020-04-22 05:38:49.634872"]]
 (0.3ms)  begin transaction

CommentTest: test_974650


 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.650575"], ["updated_at", "2020-04-22 05:38:49.650575"]]
Bucket Create (3.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.670333"], ["updated_at", "2020-04-22 05:38:49.670333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.681048"], ["updated_at", "2020-04-22 05:38:49.681048"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (17.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (11.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_454063


 (0.2ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.5ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_441578


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.801287"], ["updated_at", "2020-04-22 05:38:49.801287"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:49.902020"], ["updated_at", "2020-04-22 05:38:49.902020"]]
Bucket Create (6.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:49.921045"], ["updated_at", "2020-04-22 05:38:49.921045"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:49.940061"], ["updated_at", "2020-04-22 05:38:49.940061"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.003616"], ["updated_at", "2020-04-22 05:38:50.003616"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.023242"], ["updated_at", "2020-04-22 05:38:50.023242"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  SAVEPOINT active_record_1
Comment Create (8.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (41.8ms)  rollback transaction
Comment Create (65.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_479099


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.8ms)  rollback transaction
Course Create (39.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.154467"], ["updated_at", "2020-04-22 05:38:50.154467"]]
 (0.3ms)  begin transaction

CommentTest: test_162719


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.213159"], ["updated_at", "2020-04-22 05:38:50.213159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.228176"], ["updated_at", "2020-04-22 05:38:50.228176"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.285571"], ["updated_at", "2020-04-22 05:38:50.285571"]]
 (7.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.294154"], ["updated_at", "2020-04-22 05:38:50.294154"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (13.5ms)  rollback transaction
Recording Create (13.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.349192"], ["updated_at", "2020-04-22 05:38:50.349192"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  begin transaction

CommentTest: test_765796


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_335979


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.405157"], ["updated_at", "2020-04-22 05:38:50.405157"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.480475"], ["updated_at", "2020-04-22 05:38:50.480475"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (55.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.441859"], ["updated_at", "2020-04-22 05:38:50.441859"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.516108"], ["updated_at", "2020-04-22 05:38:50.516108"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (83.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.497529"], ["updated_at", "2020-04-22 05:38:50.497529"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.528116"], ["updated_at", "2020-04-22 05:38:50.528116"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (5.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_462351


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (7.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_17018


 (0.8ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.910283"], ["updated_at", "2020-04-22 05:38:50.910283"]]
Course Create (145.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:50.777189"], ["updated_at", "2020-04-22 05:38:50.777189"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.936013"], ["updated_at", "2020-04-22 05:38:50.936013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (80.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:50.943806"], ["updated_at", "2020-04-22 05:38:50.943806"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:50.921738"], ["updated_at", "2020-04-22 05:38:50.921738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.043226"], ["updated_at", "2020-04-22 05:38:51.043226"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_272492


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.096975"], ["updated_at", "2020-04-22 05:38:51.096975"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_859320


 (3.4ms)  SAVEPOINT active_record_1
Course Create (4.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.121398"], ["updated_at", "2020-04-22 05:38:51.121398"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.135455"], ["updated_at", "2020-04-22 05:38:51.135455"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.144571"], ["updated_at", "2020-04-22 05:38:51.144571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.150825"], ["updated_at", "2020-04-22 05:38:51.150825"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.141805"], ["updated_at", "2020-04-22 05:38:51.141805"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (23.0ms)  RELEASE SAVEPOINT active_record_1
 (18.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_853995


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.266343"], ["updated_at", "2020-04-22 05:38:51.266343"]]
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.276367"], ["updated_at", "2020-04-22 05:38:51.276367"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.291273"], ["updated_at", "2020-04-22 05:38:51.291273"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (9.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (73.8ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_245895


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.414013"], ["updated_at", "2020-04-22 05:38:51.414013"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.446369"], ["updated_at", "2020-04-22 05:38:51.446369"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.478347"], ["updated_at", "2020-04-22 05:38:51.478347"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_437652


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.497276"], ["updated_at", "2020-04-22 05:38:51.497276"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.511215"], ["updated_at", "2020-04-22 05:38:51.511215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_595357


Recording Create (11.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.519560"], ["updated_at", "2020-04-22 05:38:51.519560"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (42.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.533307"], ["updated_at", "2020-04-22 05:38:51.533307"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.594530"], ["updated_at", "2020-04-22 05:38:51.594530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.614956"], ["updated_at", "2020-04-22 05:38:51.614956"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_906301


Bucket Load (4.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.631184"], ["updated_at", "2020-04-22 05:38:51.631184"]]
 (1.4ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.654293"], ["updated_at", "2020-04-22 05:38:51.654293"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.663829"], ["updated_at", "2020-04-22 05:38:51.663829"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (13.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (17.3ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.2ms)  begin transaction

CommentTest: test_775405


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.749400"], ["updated_at", "2020-04-22 05:38:51.749400"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_592720


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.777289"], ["updated_at", "2020-04-22 05:38:51.777289"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.787413"], ["updated_at", "2020-04-22 05:38:51.787413"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.778539"], ["updated_at", "2020-04-22 05:38:51.778539"]]
 (0.2ms)  begin transaction

CommentTest: test_972208


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.814650"], ["updated_at", "2020-04-22 05:38:51.814650"]]
Bucket Create (1.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.815415"], ["updated_at", "2020-04-22 05:38:51.815415"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.823940"], ["updated_at", "2020-04-22 05:38:51.823940"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.836589"], ["updated_at", "2020-04-22 05:38:51.836589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_318496


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.862574"], ["updated_at", "2020-04-22 05:38:51.862574"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (13.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.861914"], ["updated_at", "2020-04-22 05:38:51.861914"]]
 (1.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.894481"], ["updated_at", "2020-04-22 05:38:51.894481"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_911063


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.906281"], ["updated_at", "2020-04-22 05:38:51.906281"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.914308"], ["updated_at", "2020-04-22 05:38:51.914308"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:51.926086"], ["updated_at", "2020-04-22 05:38:51.926086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:51.936124"], ["updated_at", "2020-04-22 05:38:51.936124"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_896486


 (0.2ms)  SAVEPOINT active_record_1
Course Create (7.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:51.990011"], ["updated_at", "2020-04-22 05:38:51.990011"]]
Bucket Create (5.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.006643"], ["updated_at", "2020-04-22 05:38:52.006643"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  rollback transaction
 (1.6ms)  begin transaction

CommentTest: test_441666


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.059486"], ["updated_at", "2020-04-22 05:38:52.059486"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.069071"], ["updated_at", "2020-04-22 05:38:52.069071"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.073929"], ["updated_at", "2020-04-22 05:38:52.073929"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.090364"], ["updated_at", "2020-04-22 05:38:52.090364"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_71971


Comment Create (6.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.118937"], ["updated_at", "2020-04-22 05:38:52.118937"]]
 (3.9ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.128547"], ["updated_at", "2020-04-22 05:38:52.128547"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_975529


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.136577"], ["updated_at", "2020-04-22 05:38:52.136577"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.147106"], ["updated_at", "2020-04-22 05:38:52.147106"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.157463"], ["updated_at", "2020-04-22 05:38:52.157463"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.160604"], ["updated_at", "2020-04-22 05:38:52.160604"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_203365


 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.205634"], ["updated_at", "2020-04-22 05:38:52.205634"]]
 (3.8ms)  rollback transaction
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.214766"], ["updated_at", "2020-04-22 05:38:52.214766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  begin transaction

CommentTest: test_396992


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.223054"], ["updated_at", "2020-04-22 05:38:52.223054"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.224532"], ["updated_at", "2020-04-22 05:38:52.224532"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.245254"], ["updated_at", "2020-04-22 05:38:52.245254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.256342"], ["updated_at", "2020-04-22 05:38:52.256342"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_56183


 (0.8ms)  SAVEPOINT active_record_1
Course Create (15.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.294619"], ["updated_at", "2020-04-22 05:38:52.294619"]]
 (3.8ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_268267


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (7.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.319691"], ["updated_at", "2020-04-22 05:38:52.319691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.331577"], ["updated_at", "2020-04-22 05:38:52.331577"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.341428"], ["updated_at", "2020-04-22 05:38:52.341428"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.339235"], ["updated_at", "2020-04-22 05:38:52.339235"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.348325"], ["updated_at", "2020-04-22 05:38:52.348325"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_262591


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.374285"], ["updated_at", "2020-04-22 05:38:52.374285"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.384476"], ["updated_at", "2020-04-22 05:38:52.384476"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.393121"], ["updated_at", "2020-04-22 05:38:52.393121"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_255138


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.424351"], ["updated_at", "2020-04-22 05:38:52.424351"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.441473"], ["updated_at", "2020-04-22 05:38:52.441473"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.448027"], ["updated_at", "2020-04-22 05:38:52.448027"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (41.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_993902


 (0.3ms)  SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.508389"], ["updated_at", "2020-04-22 05:38:52.508389"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.519975"], ["updated_at", "2020-04-22 05:38:52.519975"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.526627"], ["updated_at", "2020-04-22 05:38:52.526627"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.3ms)  rollback transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_671025


 (1.4ms)  SAVEPOINT active_record_1
Course Create (5.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.551047"], ["updated_at", "2020-04-22 05:38:52.551047"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.567488"], ["updated_at", "2020-04-22 05:38:52.567488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.576231"], ["updated_at", "2020-04-22 05:38:52.576231"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (44.5ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_921026


 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (15.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.613421"], ["updated_at", "2020-04-22 05:38:52.613421"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.644363"], ["updated_at", "2020-04-22 05:38:52.644363"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_953103


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.657370"], ["updated_at", "2020-04-22 05:38:52.657370"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.661316"], ["updated_at", "2020-04-22 05:38:52.661316"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.725034"], ["updated_at", "2020-04-22 05:38:52.725034"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.732394"], ["updated_at", "2020-04-22 05:38:52.732394"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_227944


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.760388"], ["updated_at", "2020-04-22 05:38:52.760388"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.768566"], ["updated_at", "2020-04-22 05:38:52.768566"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (13.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.775143"], ["updated_at", "2020-04-22 05:38:52.775143"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_692984


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.792045"], ["updated_at", "2020-04-22 05:38:52.792045"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.799429"], ["updated_at", "2020-04-22 05:38:52.799429"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (20.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.807123"], ["updated_at", "2020-04-22 05:38:52.807123"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (17.0ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_893175


 (0.2ms)  begin transaction

CommentTest: test_682915


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.887726"], ["updated_at", "2020-04-22 05:38:52.887726"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:52.889053"], ["updated_at", "2020-04-22 05:38:52.889053"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.921308"], ["updated_at", "2020-04-22 05:38:52.921308"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:52.954305"], ["updated_at", "2020-04-22 05:38:52.954305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.952184"], ["updated_at", "2020-04-22 05:38:52.952184"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:52.961809"], ["updated_at", "2020-04-22 05:38:52.961809"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (5.1ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  begin transaction

CommentTest: test_191277


Comment Create (5.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.037333"], ["updated_at", "2020-04-22 05:38:53.037333"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.049771"], ["updated_at", "2020-04-22 05:38:53.049771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.059786"], ["updated_at", "2020-04-22 05:38:53.059786"]]
 (0.6ms)  begin transaction

CommentTest: test_715921


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.067194"], ["updated_at", "2020-04-22 05:38:53.067194"]]
Comment Create (5.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.093742"], ["updated_at", "2020-04-22 05:38:53.093742"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_643360


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.103141"], ["updated_at", "2020-04-22 05:38:53.103141"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.108509"], ["updated_at", "2020-04-22 05:38:53.108509"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.132892"], ["updated_at", "2020-04-22 05:38:53.132892"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_556691


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.142192"], ["updated_at", "2020-04-22 05:38:53.142192"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.145367"], ["updated_at", "2020-04-22 05:38:53.145367"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.197660"], ["updated_at", "2020-04-22 05:38:53.197660"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.265002"], ["updated_at", "2020-04-22 05:38:53.265002"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_9477


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_901863


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.275407"], ["updated_at", "2020-04-22 05:38:53.275407"]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.303881"], ["updated_at", "2020-04-22 05:38:53.303881"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.311910"], ["updated_at", "2020-04-22 05:38:53.311910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.318042"], ["updated_at", "2020-04-22 05:38:53.318042"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.337225"], ["updated_at", "2020-04-22 05:38:53.337225"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.353701"], ["updated_at", "2020-04-22 05:38:53.353701"]]
 (5.2ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_664665


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.374164"], ["updated_at", "2020-04-22 05:38:53.374164"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.394887"], ["updated_at", "2020-04-22 05:38:53.394887"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (19.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_545291


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.421371"], ["updated_at", "2020-04-22 05:38:53.421371"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.431187"], ["updated_at", "2020-04-22 05:38:53.431187"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.414199"], ["updated_at", "2020-04-22 05:38:53.414199"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.450932"], ["updated_at", "2020-04-22 05:38:53.450932"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_419955


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.469318"], ["updated_at", "2020-04-22 05:38:53.469318"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.479800"], ["updated_at", "2020-04-22 05:38:53.479800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.487854"], ["updated_at", "2020-04-22 05:38:53.487854"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (17.9ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_310603


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (24.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.509774"], ["updated_at", "2020-04-22 05:38:53.509774"]]
 (0.6ms)  begin transaction

CommentTest: test_717297


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.541950"], ["updated_at", "2020-04-22 05:38:53.541950"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.548271"], ["updated_at", "2020-04-22 05:38:53.548271"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.546881"], ["updated_at", "2020-04-22 05:38:53.546881"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.573013"], ["updated_at", "2020-04-22 05:38:53.573013"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.586718"], ["updated_at", "2020-04-22 05:38:53.586718"]]

CommentTest: test_755652


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.594245"], ["updated_at", "2020-04-22 05:38:53.594245"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.613067"], ["updated_at", "2020-04-22 05:38:53.613067"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.620076"], ["updated_at", "2020-04-22 05:38:53.620076"]]
 (3.4ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_847369


 (0.4ms)  SAVEPOINT active_record_1
 (3.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.634536"], ["updated_at", "2020-04-22 05:38:53.634536"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.644881"], ["updated_at", "2020-04-22 05:38:53.644881"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_428571


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.653695"], ["updated_at", "2020-04-22 05:38:53.653695"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.652107"], ["updated_at", "2020-04-22 05:38:53.652107"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.663740"], ["updated_at", "2020-04-22 05:38:53.663740"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.670813"], ["updated_at", "2020-04-22 05:38:53.670813"]]
 (0.2ms)  begin transaction

CommentTest: test_468352


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.688840"], ["updated_at", "2020-04-22 05:38:53.688840"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.697870"], ["updated_at", "2020-04-22 05:38:53.697870"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.710435"], ["updated_at", "2020-04-22 05:38:53.710435"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_146155


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.732511"], ["updated_at", "2020-04-22 05:38:53.732511"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.740589"], ["updated_at", "2020-04-22 05:38:53.740589"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_167753


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.767798"], ["updated_at", "2020-04-22 05:38:53.767798"]]
 (1.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (14.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.774753"], ["updated_at", "2020-04-22 05:38:53.774753"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.796840"], ["updated_at", "2020-04-22 05:38:53.796840"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.805091"], ["updated_at", "2020-04-22 05:38:53.805091"]]
 (0.6ms)  begin transaction

CommentTest: test_297942


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.813213"], ["updated_at", "2020-04-22 05:38:53.813213"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.821752"], ["updated_at", "2020-04-22 05:38:53.821752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (17.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.827643"], ["updated_at", "2020-04-22 05:38:53.827643"]]
 (0.3ms)  begin transaction

CommentTest: test_420282


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.859090"], ["updated_at", "2020-04-22 05:38:53.859090"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_958439


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.884183"], ["updated_at", "2020-04-22 05:38:53.884183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.2ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.900517"], ["updated_at", "2020-04-22 05:38:53.900517"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.887681"], ["updated_at", "2020-04-22 05:38:53.887681"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.919677"], ["updated_at", "2020-04-22 05:38:53.919677"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_394763


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.927463"], ["updated_at", "2020-04-22 05:38:53.927463"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.931731"], ["updated_at", "2020-04-22 05:38:53.931731"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:53.956197"], ["updated_at", "2020-04-22 05:38:53.956197"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_271487


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:53.970678"], ["updated_at", "2020-04-22 05:38:53.970678"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:53.992893"], ["updated_at", "2020-04-22 05:38:53.992893"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.029338"], ["updated_at", "2020-04-22 05:38:54.029338"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.036470"], ["updated_at", "2020-04-22 05:38:54.036470"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_415171


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (73.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.050334"], ["updated_at", "2020-04-22 05:38:54.050334"]]
 (11.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.221787"], ["updated_at", "2020-04-22 05:38:54.221787"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.5ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_621713


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.269683"], ["updated_at", "2020-04-22 05:38:54.269683"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (40.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.244197"], ["updated_at", "2020-04-22 05:38:54.244197"]]
 (1.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.293548"], ["updated_at", "2020-04-22 05:38:54.293548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_992243


 (0.5ms)  SAVEPOINT active_record_1
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.299424"], ["updated_at", "2020-04-22 05:38:54.299424"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (43.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.301163"], ["updated_at", "2020-04-22 05:38:54.301163"]]
 (0.7ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.351412"], ["updated_at", "2020-04-22 05:38:54.351412"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (17.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.357393"], ["updated_at", "2020-04-22 05:38:54.357393"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_503324


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.389472"], ["updated_at", "2020-04-22 05:38:54.389472"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (4.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_933640


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.419856"], ["updated_at", "2020-04-22 05:38:54.419856"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.428697"], ["updated_at", "2020-04-22 05:38:54.428697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.435194"], ["updated_at", "2020-04-22 05:38:54.435194"]]
Bucket Create (14.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.397413"], ["updated_at", "2020-04-22 05:38:54.397413"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.443686"], ["updated_at", "2020-04-22 05:38:54.443686"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (70.6ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (12.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.0ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_129439


 (0.2ms)  begin transaction

CommentTest: test_582718


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.541723"], ["updated_at", "2020-04-22 05:38:54.541723"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.548234"], ["updated_at", "2020-04-22 05:38:54.548234"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.558294"], ["updated_at", "2020-04-22 05:38:54.558294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.554816"], ["updated_at", "2020-04-22 05:38:54.554816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.597008"], ["updated_at", "2020-04-22 05:38:54.597008"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.567209"], ["updated_at", "2020-04-22 05:38:54.567209"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.7ms)  rollback transaction
 (9.7ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_318013


 (0.2ms)  begin transaction

CommentTest: test_865735


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.663965"], ["updated_at", "2020-04-22 05:38:54.663965"]]
 (0.8ms)  SAVEPOINT active_record_1
Course Create (6.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.660881"], ["updated_at", "2020-04-22 05:38:54.660881"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.726600"], ["updated_at", "2020-04-22 05:38:54.726600"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.689785"], ["updated_at", "2020-04-22 05:38:54.689785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.744593"], ["updated_at", "2020-04-22 05:38:54.744593"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.741831"], ["updated_at", "2020-04-22 05:38:54.741831"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.8ms)  rollback transaction
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_252731


 (0.2ms)  begin transaction

CommentTest: test_17035


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.790876"], ["updated_at", "2020-04-22 05:38:54.790876"]]
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.791378"], ["updated_at", "2020-04-22 05:38:54.791378"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.801265"], ["updated_at", "2020-04-22 05:38:54.801265"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.799565"], ["updated_at", "2020-04-22 05:38:54.799565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.819243"], ["updated_at", "2020-04-22 05:38:54.819243"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (4.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.817552"], ["updated_at", "2020-04-22 05:38:54.817552"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  begin transaction

CommentTest: test_881543


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.875349"], ["updated_at", "2020-04-22 05:38:54.875349"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_112523


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.885253"], ["updated_at", "2020-04-22 05:38:54.885253"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.890793"], ["updated_at", "2020-04-22 05:38:54.890793"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:54.901250"], ["updated_at", "2020-04-22 05:38:54.901250"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.892193"], ["updated_at", "2020-04-22 05:38:54.892193"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:54.910813"], ["updated_at", "2020-04-22 05:38:54.910813"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.7ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_610413


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_373809


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.983556"], ["updated_at", "2020-04-22 05:38:54.983556"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:54.990104"], ["updated_at", "2020-04-22 05:38:54.990104"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.020722"], ["updated_at", "2020-04-22 05:38:55.020722"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.027319"], ["updated_at", "2020-04-22 05:38:55.027319"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.029942"], ["updated_at", "2020-04-22 05:38:55.029942"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.035141"], ["updated_at", "2020-04-22 05:38:55.035141"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (3.9ms)  begin transaction

CommentTest: test_553260


 (0.2ms)  begin transaction

CommentTest: test_159471


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.114375"], ["updated_at", "2020-04-22 05:38:55.114375"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.110689"], ["updated_at", "2020-04-22 05:38:55.110689"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.124792"], ["updated_at", "2020-04-22 05:38:55.124792"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.133017"], ["updated_at", "2020-04-22 05:38:55.133017"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.132954"], ["updated_at", "2020-04-22 05:38:55.132954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (42.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.139462"], ["updated_at", "2020-04-22 05:38:55.139462"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (23.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (18.6ms)  RELEASE SAVEPOINT active_record_1
 (38.2ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_284227


 (0.2ms)  begin transaction

CommentTest: test_44606


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.331028"], ["updated_at", "2020-04-22 05:38:55.331028"]]
 (4.7ms)  SAVEPOINT active_record_1
Course Create (9.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.354053"], ["updated_at", "2020-04-22 05:38:55.354053"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.352332"], ["updated_at", "2020-04-22 05:38:55.352332"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.385411"], ["updated_at", "2020-04-22 05:38:55.385411"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.391584"], ["updated_at", "2020-04-22 05:38:55.391584"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.391565"], ["updated_at", "2020-04-22 05:38:55.391565"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  rollback transaction
 (10.9ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.1ms)  begin transaction

CommentTest: test_989624



CommentTest: test_771722


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.431734"], ["updated_at", "2020-04-22 05:38:55.431734"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.433070"], ["updated_at", "2020-04-22 05:38:55.433070"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.446592"], ["updated_at", "2020-04-22 05:38:55.446592"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.463780"], ["updated_at", "2020-04-22 05:38:55.463780"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.478258"], ["updated_at", "2020-04-22 05:38:55.478258"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.478067"], ["updated_at", "2020-04-22 05:38:55.478067"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_545704


 (0.7ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.518915"], ["updated_at", "2020-04-22 05:38:55.518915"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.532000"], ["updated_at", "2020-04-22 05:38:55.532000"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (28.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.539108"], ["updated_at", "2020-04-22 05:38:55.539108"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_455074


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.556143"], ["updated_at", "2020-04-22 05:38:55.556143"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.565300"], ["updated_at", "2020-04-22 05:38:55.565300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.572500"], ["updated_at", "2020-04-22 05:38:55.572500"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_760960


 (8.3ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_816150


 (0.2ms)  SAVEPOINT active_record_1
Course Create (24.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.627202"], ["updated_at", "2020-04-22 05:38:55.627202"]]
Course Create (12.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.643034"], ["updated_at", "2020-04-22 05:38:55.643034"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.663983"], ["updated_at", "2020-04-22 05:38:55.663983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.667523"], ["updated_at", "2020-04-22 05:38:55.667523"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.670571"], ["updated_at", "2020-04-22 05:38:55.670571"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.676066"], ["updated_at", "2020-04-22 05:38:55.676066"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (6.9ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_709145


 (0.2ms)  begin transaction

CommentTest: test_851667


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.736665"], ["updated_at", "2020-04-22 05:38:55.736665"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.740615"], ["updated_at", "2020-04-22 05:38:55.740615"]]
Bucket Create (2.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.748551"], ["updated_at", "2020-04-22 05:38:55.748551"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.757089"], ["updated_at", "2020-04-22 05:38:55.757089"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_243795


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.802711"], ["updated_at", "2020-04-22 05:38:55.802711"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.817745"], ["updated_at", "2020-04-22 05:38:55.817745"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.787452"], ["updated_at", "2020-04-22 05:38:55.787452"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_553003


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.857116"], ["updated_at", "2020-04-22 05:38:55.857116"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.839800"], ["updated_at", "2020-04-22 05:38:55.839800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.867918"], ["updated_at", "2020-04-22 05:38:55.867918"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.876458"], ["updated_at", "2020-04-22 05:38:55.876458"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.886887"], ["updated_at", "2020-04-22 05:38:55.886887"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_63925


 (0.2ms)  begin transaction

CommentTest: test_689477


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.914776"], ["updated_at", "2020-04-22 05:38:55.914776"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.919187"], ["updated_at", "2020-04-22 05:38:55.919187"]]
Bucket Create (2.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.924137"], ["updated_at", "2020-04-22 05:38:55.924137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:55.930302"], ["updated_at", "2020-04-22 05:38:55.930302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.934123"], ["updated_at", "2020-04-22 05:38:55.934123"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:55.944981"], ["updated_at", "2020-04-22 05:38:55.944981"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.6ms)  rollback transaction
 (2.9ms)  begin transaction

CommentTest: test_132020


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_950581


Course Create (22.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:55.984256"], ["updated_at", "2020-04-22 05:38:55.984256"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.012349"], ["updated_at", "2020-04-22 05:38:56.012349"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.018875"], ["updated_at", "2020-04-22 05:38:56.018875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.020254"], ["updated_at", "2020-04-22 05:38:56.020254"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.026062"], ["updated_at", "2020-04-22 05:38:56.026062"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (5.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.037199"], ["updated_at", "2020-04-22 05:38:56.037199"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (1.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_863295


 (1.9ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.081406"], ["updated_at", "2020-04-22 05:38:56.081406"]]
 (0.3ms)  begin transaction

CommentTest: test_263811


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.096718"], ["updated_at", "2020-04-22 05:38:56.096718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.099504"], ["updated_at", "2020-04-22 05:38:56.099504"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.109277"], ["updated_at", "2020-04-22 05:38:56.109277"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.117651"], ["updated_at", "2020-04-22 05:38:56.117651"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.103502"], ["updated_at", "2020-04-22 05:38:56.103502"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_568618


 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (7.5ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.185517"], ["updated_at", "2020-04-22 05:38:56.185517"]]
 (0.2ms)  begin transaction

CommentTest: test_349289


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.195967"], ["updated_at", "2020-04-22 05:38:56.195967"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.198259"], ["updated_at", "2020-04-22 05:38:56.198259"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.215983"], ["updated_at", "2020-04-22 05:38:56.215983"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (28.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.203636"], ["updated_at", "2020-04-22 05:38:56.203636"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.222664"], ["updated_at", "2020-04-22 05:38:56.222664"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_931190


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.264206"], ["updated_at", "2020-04-22 05:38:56.264206"]]
 (0.2ms)  begin transaction

CommentTest: test_170125


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.273121"], ["updated_at", "2020-04-22 05:38:56.273121"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.296731"], ["updated_at", "2020-04-22 05:38:56.296731"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.305472"], ["updated_at", "2020-04-22 05:38:56.305472"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.306480"], ["updated_at", "2020-04-22 05:38:56.306480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.312747"], ["updated_at", "2020-04-22 05:38:56.312747"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_269961


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_150169


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.367521"], ["updated_at", "2020-04-22 05:38:56.367521"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.355469"], ["updated_at", "2020-04-22 05:38:56.355469"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.380009"], ["updated_at", "2020-04-22 05:38:56.380009"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.390075"], ["updated_at", "2020-04-22 05:38:56.390075"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.393052"], ["updated_at", "2020-04-22 05:38:56.393052"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.399969"], ["updated_at", "2020-04-22 05:38:56.399969"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  begin transaction

CommentTest: test_770871


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_339245


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.436493"], ["updated_at", "2020-04-22 05:38:56.436493"]]
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.470877"], ["updated_at", "2020-04-22 05:38:56.470877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.487358"], ["updated_at", "2020-04-22 05:38:56.487358"]]
Course Create (32.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.458060"], ["updated_at", "2020-04-22 05:38:56.458060"]]
 (2.0ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.498568"], ["updated_at", "2020-04-22 05:38:56.498568"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.507064"], ["updated_at", "2020-04-22 05:38:56.507064"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  begin transaction

CommentTest: test_9770


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.534009"], ["updated_at", "2020-04-22 05:38:56.534009"]]
 (0.4ms)  begin transaction

CommentTest: test_180476


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.542501"], ["updated_at", "2020-04-22 05:38:56.542501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.544649"], ["updated_at", "2020-04-22 05:38:56.544649"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.553655"], ["updated_at", "2020-04-22 05:38:56.553655"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.553329"], ["updated_at", "2020-04-22 05:38:56.553329"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.567490"], ["updated_at", "2020-04-22 05:38:56.567490"]]
 (1.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (3.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_943566


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.786300"], ["updated_at", "2020-04-22 05:38:56.786300"]]
 (9.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_440617


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.801685"], ["updated_at", "2020-04-22 05:38:56.801685"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.799831"], ["updated_at", "2020-04-22 05:38:56.799831"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.808190"], ["updated_at", "2020-04-22 05:38:56.808190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.808188"], ["updated_at", "2020-04-22 05:38:56.808188"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.813712"], ["updated_at", "2020-04-22 05:38:56.813712"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_566188


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.834064"], ["updated_at", "2020-04-22 05:38:56.834064"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.846196"], ["updated_at", "2020-04-22 05:38:56.846196"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_792630


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.852834"], ["updated_at", "2020-04-22 05:38:56.852834"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.858160"], ["updated_at", "2020-04-22 05:38:56.858160"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.866403"], ["updated_at", "2020-04-22 05:38:56.866403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.873395"], ["updated_at", "2020-04-22 05:38:56.873395"]]
Comment Create (6.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.1ms)  rollback transaction
 (0.4ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_790405


Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.895559"], ["updated_at", "2020-04-22 05:38:56.895559"]]
 (3.3ms)  rollback transaction
 (0.3ms)  begin transaction
Bucket Create (2.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.907979"], ["updated_at", "2020-04-22 05:38:56.907979"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_722508


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.917071"], ["updated_at", "2020-04-22 05:38:56.917071"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.916947"], ["updated_at", "2020-04-22 05:38:56.916947"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.927063"], ["updated_at", "2020-04-22 05:38:56.927063"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.933581"], ["updated_at", "2020-04-22 05:38:56.933581"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_658923


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.944813"], ["updated_at", "2020-04-22 05:38:56.944813"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.953561"], ["updated_at", "2020-04-22 05:38:56.953561"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_487394


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.968341"], ["updated_at", "2020-04-22 05:38:56.968341"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:56.976128"], ["updated_at", "2020-04-22 05:38:56.976128"]]
 (6.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:56.987571"], ["updated_at", "2020-04-22 05:38:56.987571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:56.997759"], ["updated_at", "2020-04-22 05:38:56.997759"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction
 (1.7ms)  rollback transaction

CommentTest: test_911193


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_748642


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.022952"], ["updated_at", "2020-04-22 05:38:57.022952"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.031744"], ["updated_at", "2020-04-22 05:38:57.031744"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.035686"], ["updated_at", "2020-04-22 05:38:57.035686"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.041131"], ["updated_at", "2020-04-22 05:38:57.041131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.048223"], ["updated_at", "2020-04-22 05:38:57.048223"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.049018"], ["updated_at", "2020-04-22 05:38:57.049018"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction
 (1.6ms)  rollback transaction

CommentTest: test_475250


 (0.2ms)  begin transaction

CommentTest: test_612027


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.078264"], ["updated_at", "2020-04-22 05:38:57.078264"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.088666"], ["updated_at", "2020-04-22 05:38:57.088666"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.082391"], ["updated_at", "2020-04-22 05:38:57.082391"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.097538"], ["updated_at", "2020-04-22 05:38:57.097538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.100347"], ["updated_at", "2020-04-22 05:38:57.100347"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.104586"], ["updated_at", "2020-04-22 05:38:57.104586"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.1ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_647852


 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_628624


Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.133485"], ["updated_at", "2020-04-22 05:38:57.133485"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.139667"], ["updated_at", "2020-04-22 05:38:57.139667"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.142410"], ["updated_at", "2020-04-22 05:38:57.142410"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.149011"], ["updated_at", "2020-04-22 05:38:57.149011"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.149901"], ["updated_at", "2020-04-22 05:38:57.149901"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.156361"], ["updated_at", "2020-04-22 05:38:57.156361"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_573766


 (0.2ms)  begin transaction

CommentTest: test_936538


 (1.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.184160"], ["updated_at", "2020-04-22 05:38:57.184160"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.188317"], ["updated_at", "2020-04-22 05:38:57.188317"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.194633"], ["updated_at", "2020-04-22 05:38:57.194633"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.196624"], ["updated_at", "2020-04-22 05:38:57.196624"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.200896"], ["updated_at", "2020-04-22 05:38:57.200896"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.202991"], ["updated_at", "2020-04-22 05:38:57.202991"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  rollback transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_957341


 (0.1ms)  begin transaction

CommentTest: test_405316


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.227821"], ["updated_at", "2020-04-22 05:38:57.227821"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.229418"], ["updated_at", "2020-04-22 05:38:57.229418"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.238184"], ["updated_at", "2020-04-22 05:38:57.238184"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.240863"], ["updated_at", "2020-04-22 05:38:57.240863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.246826"], ["updated_at", "2020-04-22 05:38:57.246826"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.248410"], ["updated_at", "2020-04-22 05:38:57.248410"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_395644


 (2.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CommentTest: test_947941


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.277193"], ["updated_at", "2020-04-22 05:38:57.277193"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.284197"], ["updated_at", "2020-04-22 05:38:57.284197"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.286467"], ["updated_at", "2020-04-22 05:38:57.286467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.296697"], ["updated_at", "2020-04-22 05:38:57.296697"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.298229"], ["updated_at", "2020-04-22 05:38:57.298229"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.304825"], ["updated_at", "2020-04-22 05:38:57.304825"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_572485


 (0.1ms)  begin transaction

CommentTest: test_450995


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.333886"], ["updated_at", "2020-04-22 05:38:57.333886"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.336137"], ["updated_at", "2020-04-22 05:38:57.336137"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.342387"], ["updated_at", "2020-04-22 05:38:57.342387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.344608"], ["updated_at", "2020-04-22 05:38:57.344608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.347796"], ["updated_at", "2020-04-22 05:38:57.347796"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.350520"], ["updated_at", "2020-04-22 05:38:57.350520"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_788474


 (0.2ms)  begin transaction

CommentTest: test_946137


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.376741"], ["updated_at", "2020-04-22 05:38:57.376741"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.377851"], ["updated_at", "2020-04-22 05:38:57.377851"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.384989"], ["updated_at", "2020-04-22 05:38:57.384989"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.388038"], ["updated_at", "2020-04-22 05:38:57.388038"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.391442"], ["updated_at", "2020-04-22 05:38:57.391442"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.398340"], ["updated_at", "2020-04-22 05:38:57.398340"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_431196

 (1.7ms)  rollback transaction

 (0.2ms)  begin transaction

CommentTest: test_322005


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.431202"], ["updated_at", "2020-04-22 05:38:57.431202"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.426839"], ["updated_at", "2020-04-22 05:38:57.426839"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.440278"], ["updated_at", "2020-04-22 05:38:57.440278"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.445897"], ["updated_at", "2020-04-22 05:38:57.445897"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.447475"], ["updated_at", "2020-04-22 05:38:57.447475"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.453293"], ["updated_at", "2020-04-22 05:38:57.453293"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_263058


 (0.2ms)  begin transaction
 (1.3ms)  SAVEPOINT active_record_1

CommentTest: test_195312


 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.493946"], ["updated_at", "2020-04-22 05:38:57.493946"]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.486799"], ["updated_at", "2020-04-22 05:38:57.486799"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.507873"], ["updated_at", "2020-04-22 05:38:57.507873"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.508552"], ["updated_at", "2020-04-22 05:38:57.508552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.516530"], ["updated_at", "2020-04-22 05:38:57.516530"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.515009"], ["updated_at", "2020-04-22 05:38:57.515009"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_380304


 (9.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.546477"], ["updated_at", "2020-04-22 05:38:57.546477"]]
 (0.3ms)  begin transaction

CommentTest: test_612573


 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.556020"], ["updated_at", "2020-04-22 05:38:57.556020"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.556528"], ["updated_at", "2020-04-22 05:38:57.556528"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.566085"], ["updated_at", "2020-04-22 05:38:57.566085"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.567364"], ["updated_at", "2020-04-22 05:38:57.567364"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.571863"], ["updated_at", "2020-04-22 05:38:57.571863"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_980793


 (0.2ms)  begin transaction

CommentTest: test_906168


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.601621"], ["updated_at", "2020-04-22 05:38:57.601621"]]
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.602847"], ["updated_at", "2020-04-22 05:38:57.602847"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.611208"], ["updated_at", "2020-04-22 05:38:57.611208"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.612584"], ["updated_at", "2020-04-22 05:38:57.612584"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.619164"], ["updated_at", "2020-04-22 05:38:57.619164"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.619604"], ["updated_at", "2020-04-22 05:38:57.619604"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_92134


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.650727"], ["updated_at", "2020-04-22 05:38:57.650727"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.660871"], ["updated_at", "2020-04-22 05:38:57.660871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_692211


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.667659"], ["updated_at", "2020-04-22 05:38:57.667659"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.668243"], ["updated_at", "2020-04-22 05:38:57.668243"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.677966"], ["updated_at", "2020-04-22 05:38:57.677966"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.685310"], ["updated_at", "2020-04-22 05:38:57.685310"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_100309


 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.697780"], ["updated_at", "2020-04-22 05:38:57.697780"]]
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.706829"], ["updated_at", "2020-04-22 05:38:57.706829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.717221"], ["updated_at", "2020-04-22 05:38:57.717221"]]
 (0.2ms)  begin transaction

CommentTest: test_311902


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.725865"], ["updated_at", "2020-04-22 05:38:57.725865"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.735373"], ["updated_at", "2020-04-22 05:38:57.735373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (3.1ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.742791"], ["updated_at", "2020-04-22 05:38:57.742791"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  begin transaction

CommentTest: test_343407


 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.758223"], ["updated_at", "2020-04-22 05:38:57.758223"]]
 (5.9ms)  rollback transaction
 (0.9ms)  begin transaction

CommentTest: test_29507


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.768582"], ["updated_at", "2020-04-22 05:38:57.768582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.775566"], ["updated_at", "2020-04-22 05:38:57.775566"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.774209"], ["updated_at", "2020-04-22 05:38:57.774209"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.782800"], ["updated_at", "2020-04-22 05:38:57.782800"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.788888"], ["updated_at", "2020-04-22 05:38:57.788888"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_78440


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.800487"], ["updated_at", "2020-04-22 05:38:57.800487"]]
 (1.6ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.809276"], ["updated_at", "2020-04-22 05:38:57.809276"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.817661"], ["updated_at", "2020-04-22 05:38:57.817661"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_770235


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.835189"], ["updated_at", "2020-04-22 05:38:57.835189"]]
 (1.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.844495"], ["updated_at", "2020-04-22 05:38:57.844495"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_161658


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.852039"], ["updated_at", "2020-04-22 05:38:57.852039"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.856689"], ["updated_at", "2020-04-22 05:38:57.856689"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_487680


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.877682"], ["updated_at", "2020-04-22 05:38:57.877682"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.882210"], ["updated_at", "2020-04-22 05:38:57.882210"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.886862"], ["updated_at", "2020-04-22 05:38:57.886862"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.891882"], ["updated_at", "2020-04-22 05:38:57.891882"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.898233"], ["updated_at", "2020-04-22 05:38:57.898233"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (11.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_132226


 (0.2ms)  begin transaction

CommentTest: test_503629


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.935923"], ["updated_at", "2020-04-22 05:38:57.935923"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.939540"], ["updated_at", "2020-04-22 05:38:57.939540"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.945964"], ["updated_at", "2020-04-22 05:38:57.945964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:57.952035"], ["updated_at", "2020-04-22 05:38:57.952035"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.953593"], ["updated_at", "2020-04-22 05:38:57.953593"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:57.960669"], ["updated_at", "2020-04-22 05:38:57.960669"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.9ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_562993


 (0.2ms)  begin transaction
 (0.2ms)  SAVEPOINT active_record_1

CommentTest: test_70992


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.989886"], ["updated_at", "2020-04-22 05:38:57.989886"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:57.995848"], ["updated_at", "2020-04-22 05:38:57.995848"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.003128"], ["updated_at", "2020-04-22 05:38:58.003128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.004397"], ["updated_at", "2020-04-22 05:38:58.004397"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.009811"], ["updated_at", "2020-04-22 05:38:58.009811"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.012793"], ["updated_at", "2020-04-22 05:38:58.012793"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_510166


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_210569


Course Create (6.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.049228"], ["updated_at", "2020-04-22 05:38:58.049228"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.060773"], ["updated_at", "2020-04-22 05:38:58.060773"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.063024"], ["updated_at", "2020-04-22 05:38:58.063024"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.069396"], ["updated_at", "2020-04-22 05:38:58.069396"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.070792"], ["updated_at", "2020-04-22 05:38:58.070792"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.076723"], ["updated_at", "2020-04-22 05:38:58.076723"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
 (2.2ms)  rollback transaction

CommentTest: test_726988


 (0.2ms)  begin transaction

CommentTest: test_521722


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (6.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.102138"], ["updated_at", "2020-04-22 05:38:58.102138"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.106164"], ["updated_at", "2020-04-22 05:38:58.106164"]]
Bucket Create (5.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.116199"], ["updated_at", "2020-04-22 05:38:58.116199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.118279"], ["updated_at", "2020-04-22 05:38:58.118279"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.128575"], ["updated_at", "2020-04-22 05:38:58.128575"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.129251"], ["updated_at", "2020-04-22 05:38:58.129251"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction


CommentTest: test_825907 CommentTest: test_436064



 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.152751"], ["updated_at", "2020-04-22 05:38:58.152751"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.152996"], ["updated_at", "2020-04-22 05:38:58.152996"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.163808"], ["updated_at", "2020-04-22 05:38:58.163808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.167739"], ["updated_at", "2020-04-22 05:38:58.167739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.172976"], ["updated_at", "2020-04-22 05:38:58.172976"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.175776"], ["updated_at", "2020-04-22 05:38:58.175776"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_455840


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.205938"], ["updated_at", "2020-04-22 05:38:58.205938"]]
 (0.2ms)  begin transaction

CommentTest: test_789240


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (5.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.221857"], ["updated_at", "2020-04-22 05:38:58.221857"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.223248"], ["updated_at", "2020-04-22 05:38:58.223248"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.233821"], ["updated_at", "2020-04-22 05:38:58.233821"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.235564"], ["updated_at", "2020-04-22 05:38:58.235564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.243507"], ["updated_at", "2020-04-22 05:38:58.243507"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_636431


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.271418"], ["updated_at", "2020-04-22 05:38:58.271418"]]
 (0.2ms)  begin transaction

CommentTest: test_291198


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.279942"], ["updated_at", "2020-04-22 05:38:58.279942"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.283560"], ["updated_at", "2020-04-22 05:38:58.283560"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.286822"], ["updated_at", "2020-04-22 05:38:58.286822"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.291944"], ["updated_at", "2020-04-22 05:38:58.291944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.297684"], ["updated_at", "2020-04-22 05:38:58.297684"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  begin transaction

CommentTest: test_540359


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_907966


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.317545"], ["updated_at", "2020-04-22 05:38:58.317545"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.324781"], ["updated_at", "2020-04-22 05:38:58.324781"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.327766"], ["updated_at", "2020-04-22 05:38:58.327766"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.335328"], ["updated_at", "2020-04-22 05:38:58.335328"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.336510"], ["updated_at", "2020-04-22 05:38:58.336510"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.343050"], ["updated_at", "2020-04-22 05:38:58.343050"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_194127


 (2.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_91315


Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.367691"], ["updated_at", "2020-04-22 05:38:58.367691"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.376349"], ["updated_at", "2020-04-22 05:38:58.376349"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.382040"], ["updated_at", "2020-04-22 05:38:58.382040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.385783"], ["updated_at", "2020-04-22 05:38:58.385783"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.390079"], ["updated_at", "2020-04-22 05:38:58.390079"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.393386"], ["updated_at", "2020-04-22 05:38:58.393386"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_935677


 (1.7ms)  rollback transaction
 (0.6ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_957600


Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.413089"], ["updated_at", "2020-04-22 05:38:58.413089"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.419925"], ["updated_at", "2020-04-22 05:38:58.419925"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.422919"], ["updated_at", "2020-04-22 05:38:58.422919"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.428373"], ["updated_at", "2020-04-22 05:38:58.428373"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.430427"], ["updated_at", "2020-04-22 05:38:58.430427"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.436515"], ["updated_at", "2020-04-22 05:38:58.436515"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_20632


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.460584"], ["updated_at", "2020-04-22 05:38:58.460584"]]
 (1.7ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.471714"], ["updated_at", "2020-04-22 05:38:58.471714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  begin transaction

CommentTest: test_558107


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.482632"], ["updated_at", "2020-04-22 05:38:58.482632"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.491692"], ["updated_at", "2020-04-22 05:38:58.491692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (6.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.486484"], ["updated_at", "2020-04-22 05:38:58.486484"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.498665"], ["updated_at", "2020-04-22 05:38:58.498665"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_105934


 (0.2ms)  begin transaction

CommentTest: test_744259


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.529448"], ["updated_at", "2020-04-22 05:38:58.529448"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.542088"], ["updated_at", "2020-04-22 05:38:58.542088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.538744"], ["updated_at", "2020-04-22 05:38:58.538744"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.552483"], ["updated_at", "2020-04-22 05:38:58.552483"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.551465"], ["updated_at", "2020-04-22 05:38:58.551465"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.558296"], ["updated_at", "2020-04-22 05:38:58.558296"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_515729


 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_47966


Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.589173"], ["updated_at", "2020-04-22 05:38:58.589173"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.599377"], ["updated_at", "2020-04-22 05:38:58.599377"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.604136"], ["updated_at", "2020-04-22 05:38:58.604136"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.611498"], ["updated_at", "2020-04-22 05:38:58.611498"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.608795"], ["updated_at", "2020-04-22 05:38:58.608795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.620765"], ["updated_at", "2020-04-22 05:38:58.620765"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_497502


 (1.4ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_417162


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.643414"], ["updated_at", "2020-04-22 05:38:58.643414"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.651697"], ["updated_at", "2020-04-22 05:38:58.651697"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.650111"], ["updated_at", "2020-04-22 05:38:58.650111"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.660705"], ["updated_at", "2020-04-22 05:38:58.660705"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.659265"], ["updated_at", "2020-04-22 05:38:58.659265"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.667382"], ["updated_at", "2020-04-22 05:38:58.667382"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (5.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_2166


 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_590804


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.742550"], ["updated_at", "2020-04-22 05:38:58.742550"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.752329"], ["updated_at", "2020-04-22 05:38:58.752329"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.757567"], ["updated_at", "2020-04-22 05:38:58.757567"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.762006"], ["updated_at", "2020-04-22 05:38:58.762006"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.764816"], ["updated_at", "2020-04-22 05:38:58.764816"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.770238"], ["updated_at", "2020-04-22 05:38:58.770238"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (4.6ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_340646


 (0.3ms)  begin transaction

CommentTest: test_193304


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.807268"], ["updated_at", "2020-04-22 05:38:58.807268"]]
Course Create (17.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.803713"], ["updated_at", "2020-04-22 05:38:58.803713"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.820102"], ["updated_at", "2020-04-22 05:38:58.820102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.828761"], ["updated_at", "2020-04-22 05:38:58.828761"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.832012"], ["updated_at", "2020-04-22 05:38:58.832012"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.835724"], ["updated_at", "2020-04-22 05:38:58.835724"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_333729


 (0.2ms)  begin transaction

CommentTest: test_744673


 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.867700"], ["updated_at", "2020-04-22 05:38:58.867700"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.870137"], ["updated_at", "2020-04-22 05:38:58.870137"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.877877"], ["updated_at", "2020-04-22 05:38:58.877877"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.879953"], ["updated_at", "2020-04-22 05:38:58.879953"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.883881"], ["updated_at", "2020-04-22 05:38:58.883881"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.886307"], ["updated_at", "2020-04-22 05:38:58.886307"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_48924


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.916898"], ["updated_at", "2020-04-22 05:38:58.916898"]]
 (0.8ms)  begin transaction

CommentTest: test_839195


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.930266"], ["updated_at", "2020-04-22 05:38:58.930266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.931249"], ["updated_at", "2020-04-22 05:38:58.931249"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.937045"], ["updated_at", "2020-04-22 05:38:58.937045"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (2.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.940300"], ["updated_at", "2020-04-22 05:38:58.940300"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (3.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.955989"], ["updated_at", "2020-04-22 05:38:58.955989"]]
 (1.6ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.0ms)  begin transaction

CommentTest: test_182909


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:58.978559"], ["updated_at", "2020-04-22 05:38:58.978559"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:58.989305"], ["updated_at", "2020-04-22 05:38:58.989305"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:58.996157"], ["updated_at", "2020-04-22 05:38:58.996157"]]

CommentTest: test_291828


 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.003377"], ["updated_at", "2020-04-22 05:38:59.003377"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.011878"], ["updated_at", "2020-04-22 05:38:59.011878"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.2ms)  rollback transaction
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.022036"], ["updated_at", "2020-04-22 05:38:59.022036"]]
 (0.2ms)  begin transaction

CommentTest: test_818434


 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.030976"], ["updated_at", "2020-04-22 05:38:59.030976"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.039076"], ["updated_at", "2020-04-22 05:38:59.039076"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.046752"], ["updated_at", "2020-04-22 05:38:59.046752"]]

CommentTest: test_259869


 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.053238"], ["updated_at", "2020-04-22 05:38:59.053238"]]
 (0.6ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.063788"], ["updated_at", "2020-04-22 05:38:59.063788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.071780"], ["updated_at", "2020-04-22 05:38:59.071780"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_914500


 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.082542"], ["updated_at", "2020-04-22 05:38:59.082542"]]
 (7.9ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.095427"], ["updated_at", "2020-04-22 05:38:59.095427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_419763


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.116960"], ["updated_at", "2020-04-22 05:38:59.116960"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.125488"], ["updated_at", "2020-04-22 05:38:59.125488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.131644"], ["updated_at", "2020-04-22 05:38:59.131644"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.134086"], ["updated_at", "2020-04-22 05:38:59.134086"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_920472


 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.165664"], ["updated_at", "2020-04-22 05:38:59.165664"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.176070"], ["updated_at", "2020-04-22 05:38:59.176070"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_710003


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.184799"], ["updated_at", "2020-04-22 05:38:59.184799"]]
 (0.3ms)  SAVEPOINT active_record_1
 (1.0ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.187847"], ["updated_at", "2020-04-22 05:38:59.187847"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.196594"], ["updated_at", "2020-04-22 05:38:59.196594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.202918"], ["updated_at", "2020-04-22 05:38:59.202918"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_175959


 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.213488"], ["updated_at", "2020-04-22 05:38:59.213488"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.222259"], ["updated_at", "2020-04-22 05:38:59.222259"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_763782


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.230197"], ["updated_at", "2020-04-22 05:38:59.230197"]]
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.230013"], ["updated_at", "2020-04-22 05:38:59.230013"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.236702"], ["updated_at", "2020-04-22 05:38:59.236702"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.242031"], ["updated_at", "2020-04-22 05:38:59.242031"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_729382


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.254288"], ["updated_at", "2020-04-22 05:38:59.254288"]]
 (4.2ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_796048


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.267518"], ["updated_at", "2020-04-22 05:38:59.267518"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.272919"], ["updated_at", "2020-04-22 05:38:59.272919"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.281238"], ["updated_at", "2020-04-22 05:38:59.281238"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.281758"], ["updated_at", "2020-04-22 05:38:59.281758"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.288462"], ["updated_at", "2020-04-22 05:38:59.288462"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.7ms)  SAVEPOINT active_record_1

CommentTest: test_952392


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.309114"], ["updated_at", "2020-04-22 05:38:59.309114"]]
 (0.2ms)  begin transaction

CommentTest: test_393724


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.318816"], ["updated_at", "2020-04-22 05:38:59.318816"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.320259"], ["updated_at", "2020-04-22 05:38:59.320259"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.325989"], ["updated_at", "2020-04-22 05:38:59.325989"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.328719"], ["updated_at", "2020-04-22 05:38:59.328719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.334615"], ["updated_at", "2020-04-22 05:38:59.334615"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_4221


Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.353469"], ["updated_at", "2020-04-22 05:38:59.353469"]]
 (0.2ms)  begin transaction

CommentTest: test_226825


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.366744"], ["updated_at", "2020-04-22 05:38:59.366744"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.366786"], ["updated_at", "2020-04-22 05:38:59.366786"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.381552"], ["updated_at", "2020-04-22 05:38:59.381552"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.381102"], ["updated_at", "2020-04-22 05:38:59.381102"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.389224"], ["updated_at", "2020-04-22 05:38:59.389224"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_666683


 (3.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_896073


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.409695"], ["updated_at", "2020-04-22 05:38:59.409695"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.417384"], ["updated_at", "2020-04-22 05:38:59.417384"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.419158"], ["updated_at", "2020-04-22 05:38:59.419158"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.425656"], ["updated_at", "2020-04-22 05:38:59.425656"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.425869"], ["updated_at", "2020-04-22 05:38:59.425869"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.432448"], ["updated_at", "2020-04-22 05:38:59.432448"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_814314


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.450000"], ["updated_at", "2020-04-22 05:38:59.450000"]]
 (0.4ms)  begin transaction

CommentTest: test_636130


Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.459522"], ["updated_at", "2020-04-22 05:38:59.459522"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.467064"], ["updated_at", "2020-04-22 05:38:59.467064"]]
Recording Create (7.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.472859"], ["updated_at", "2020-04-22 05:38:59.472859"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.480791"], ["updated_at", "2020-04-22 05:38:59.480791"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.494084"], ["updated_at", "2020-04-22 05:38:59.494084"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_794139


 (0.3ms)  SAVEPOINT active_record_1
 (3.6ms)  begin transaction

CommentTest: test_637821


Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.518303"], ["updated_at", "2020-04-22 05:38:59.518303"]]
 (0.5ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.528691"], ["updated_at", "2020-04-22 05:38:59.528691"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.527036"], ["updated_at", "2020-04-22 05:38:59.527036"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.535259"], ["updated_at", "2020-04-22 05:38:59.535259"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.538140"], ["updated_at", "2020-04-22 05:38:59.538140"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.546110"], ["updated_at", "2020-04-22 05:38:59.546110"]]
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_86565


 (1.6ms)  rollback transaction
 (1.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.570784"], ["updated_at", "2020-04-22 05:38:59.570784"]]
 (0.3ms)  begin transaction

CommentTest: test_150970


 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.581213"], ["updated_at", "2020-04-22 05:38:59.581213"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.586096"], ["updated_at", "2020-04-22 05:38:59.586096"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.594487"], ["updated_at", "2020-04-22 05:38:59.594487"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.593943"], ["updated_at", "2020-04-22 05:38:59.593943"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.600888"], ["updated_at", "2020-04-22 05:38:59.600888"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_208613


 (0.2ms)  begin transaction

CommentTest: test_148823


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.622994"], ["updated_at", "2020-04-22 05:38:59.622994"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.627785"], ["updated_at", "2020-04-22 05:38:59.627785"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.633353"], ["updated_at", "2020-04-22 05:38:59.633353"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.637865"], ["updated_at", "2020-04-22 05:38:59.637865"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.638572"], ["updated_at", "2020-04-22 05:38:59.638572"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.645299"], ["updated_at", "2020-04-22 05:38:59.645299"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (15.5ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_380948


 (0.7ms)  begin transaction

CommentTest: test_696501


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.696107"], ["updated_at", "2020-04-22 05:38:59.696107"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.713633"], ["updated_at", "2020-04-22 05:38:59.713633"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.713689"], ["updated_at", "2020-04-22 05:38:59.713689"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.728338"], ["updated_at", "2020-04-22 05:38:59.728338"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.735294"], ["updated_at", "2020-04-22 05:38:59.735294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (4.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.745184"], ["updated_at", "2020-04-22 05:38:59.745184"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_461547


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.769211"], ["updated_at", "2020-04-22 05:38:59.769211"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.780089"], ["updated_at", "2020-04-22 05:38:59.780089"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_905493


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.786323"], ["updated_at", "2020-04-22 05:38:59.786323"]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.786743"], ["updated_at", "2020-04-22 05:38:59.786743"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.794147"], ["updated_at", "2020-04-22 05:38:59.794147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.800335"], ["updated_at", "2020-04-22 05:38:59.800335"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.4ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_759787


Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.819655"], ["updated_at", "2020-04-22 05:38:59.819655"]]
 (0.2ms)  begin transaction

CommentTest: test_96782


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.831853"], ["updated_at", "2020-04-22 05:38:59.831853"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.834577"], ["updated_at", "2020-04-22 05:38:59.834577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.840924"], ["updated_at", "2020-04-22 05:38:59.840924"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.842402"], ["updated_at", "2020-04-22 05:38:59.842402"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.848970"], ["updated_at", "2020-04-22 05:38:59.848970"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_200737


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.873299"], ["updated_at", "2020-04-22 05:38:59.873299"]]
 (0.2ms)  begin transaction

CommentTest: test_881180


Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.884673"], ["updated_at", "2020-04-22 05:38:59.884673"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.887350"], ["updated_at", "2020-04-22 05:38:59.887350"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.892860"], ["updated_at", "2020-04-22 05:38:59.892860"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.896762"], ["updated_at", "2020-04-22 05:38:59.896762"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.906402"], ["updated_at", "2020-04-22 05:38:59.906402"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_120619

Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.928410"], ["updated_at", "2020-04-22 05:38:59.928410"]]
 (0.3ms)  begin transaction

CommentTest: test_943928


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.938622"], ["updated_at", "2020-04-22 05:38:59.938622"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.938071"], ["updated_at", "2020-04-22 05:38:59.938071"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.948023"], ["updated_at", "2020-04-22 05:38:59.948023"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.947750"], ["updated_at", "2020-04-22 05:38:59.947750"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.954631"], ["updated_at", "2020-04-22 05:38:59.954631"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction

CommentTest: test_48258


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (1.0ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_267257


Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.974758"], ["updated_at", "2020-04-22 05:38:59.974758"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.983894"], ["updated_at", "2020-04-22 05:38:59.983894"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:38:59.982281"], ["updated_at", "2020-04-22 05:38:59.982281"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:38:59.989510"], ["updated_at", "2020-04-22 05:38:59.989510"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:38:59.990610"], ["updated_at", "2020-04-22 05:38:59.990610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (6.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (4.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.000719"], ["updated_at", "2020-04-22 05:39:00.000719"]]
 (1.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  begin transaction

CommentTest: test_670055


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.025928"], ["updated_at", "2020-04-22 05:39:00.025928"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.035490"], ["updated_at", "2020-04-22 05:39:00.035490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_829611


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.042900"], ["updated_at", "2020-04-22 05:39:00.042900"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (2.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (5.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.048454"], ["updated_at", "2020-04-22 05:39:00.048454"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.062805"], ["updated_at", "2020-04-22 05:39:00.062805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (4.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.072751"], ["updated_at", "2020-04-22 05:39:00.072751"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_105710


Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.081342"], ["updated_at", "2020-04-22 05:39:00.081342"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.090442"], ["updated_at", "2020-04-22 05:39:00.090442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_357706


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.104153"], ["updated_at", "2020-04-22 05:39:00.104153"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.102391"], ["updated_at", "2020-04-22 05:39:00.102391"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.115128"], ["updated_at", "2020-04-22 05:39:00.115128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.124833"], ["updated_at", "2020-04-22 05:39:00.124833"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

CommentTest: test_505395


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.133546"], ["updated_at", "2020-04-22 05:39:00.133546"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.142737"], ["updated_at", "2020-04-22 05:39:00.142737"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_855386


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.148399"], ["updated_at", "2020-04-22 05:39:00.148399"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.153464"], ["updated_at", "2020-04-22 05:39:00.153464"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.162311"], ["updated_at", "2020-04-22 05:39:00.162311"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.168752"], ["updated_at", "2020-04-22 05:39:00.168752"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_372971


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.176440"], ["updated_at", "2020-04-22 05:39:00.176440"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.187005"], ["updated_at", "2020-04-22 05:39:00.187005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_820299


 (1.7ms)  SAVEPOINT active_record_1
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.196491"], ["updated_at", "2020-04-22 05:39:00.196491"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.199751"], ["updated_at", "2020-04-22 05:39:00.199751"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.213511"], ["updated_at", "2020-04-22 05:39:00.213511"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.222200"], ["updated_at", "2020-04-22 05:39:00.222200"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_39516


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.231498"], ["updated_at", "2020-04-22 05:39:00.231498"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.243472"], ["updated_at", "2020-04-22 05:39:00.243472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  begin transaction

CommentTest: test_919183


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.251400"], ["updated_at", "2020-04-22 05:39:00.251400"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.251677"], ["updated_at", "2020-04-22 05:39:00.251677"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.260403"], ["updated_at", "2020-04-22 05:39:00.260403"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.267577"], ["updated_at", "2020-04-22 05:39:00.267577"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_824429


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.280415"], ["updated_at", "2020-04-22 05:39:00.280415"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.288597"], ["updated_at", "2020-04-22 05:39:00.288597"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_111719


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.294924"], ["updated_at", "2020-04-22 05:39:00.294924"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.299550"], ["updated_at", "2020-04-22 05:39:00.299550"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.308734"], ["updated_at", "2020-04-22 05:39:00.308734"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (9.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.315372"], ["updated_at", "2020-04-22 05:39:00.315372"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_114941


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.336066"], ["updated_at", "2020-04-22 05:39:00.336066"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.346604"], ["updated_at", "2020-04-22 05:39:00.346604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_712009


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.354552"], ["updated_at", "2020-04-22 05:39:00.354552"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.357663"], ["updated_at", "2020-04-22 05:39:00.357663"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.366750"], ["updated_at", "2020-04-22 05:39:00.366750"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.373692"], ["updated_at", "2020-04-22 05:39:00.373692"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_658662


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.380967"], ["updated_at", "2020-04-22 05:39:00.380967"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.388590"], ["updated_at", "2020-04-22 05:39:00.388590"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CommentTest: test_494608


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.394781"], ["updated_at", "2020-04-22 05:39:00.394781"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.397636"], ["updated_at", "2020-04-22 05:39:00.397636"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.405754"], ["updated_at", "2020-04-22 05:39:00.405754"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.419112"], ["updated_at", "2020-04-22 05:39:00.419112"]]
 (0.2ms)  begin transaction

 (0.3ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_902123


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.427461"], ["updated_at", "2020-04-22 05:39:00.427461"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.436807"], ["updated_at", "2020-04-22 05:39:00.436807"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_514967


Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.443255"], ["updated_at", "2020-04-22 05:39:00.443255"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.450116"], ["updated_at", "2020-04-22 05:39:00.450116"]]
Bucket Load (3.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.466934"], ["updated_at", "2020-04-22 05:39:00.466934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.475431"], ["updated_at", "2020-04-22 05:39:00.475431"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_358526


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.490501"], ["updated_at", "2020-04-22 05:39:00.490501"]]
 (1.6ms)  rollback transaction
 (0.4ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.498987"], ["updated_at", "2020-04-22 05:39:00.498987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

CommentTest: test_406588


 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.506858"], ["updated_at", "2020-04-22 05:39:00.506858"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.505628"], ["updated_at", "2020-04-22 05:39:00.505628"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.517708"], ["updated_at", "2020-04-22 05:39:00.517708"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.532577"], ["updated_at", "2020-04-22 05:39:00.532577"]]
 (0.2ms)  begin transaction

CommentTest: test_35224


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.539028"], ["updated_at", "2020-04-22 05:39:00.539028"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.550252"], ["updated_at", "2020-04-22 05:39:00.550252"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.557365"], ["updated_at", "2020-04-22 05:39:00.557365"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (40.2ms)  rollback transaction
 (4.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_723723


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_777012


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.601844"], ["updated_at", "2020-04-22 05:39:00.601844"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.608426"], ["updated_at", "2020-04-22 05:39:00.608426"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.610647"], ["updated_at", "2020-04-22 05:39:00.610647"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.617389"], ["updated_at", "2020-04-22 05:39:00.617389"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.617895"], ["updated_at", "2020-04-22 05:39:00.617895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.628135"], ["updated_at", "2020-04-22 05:39:00.628135"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_164919


 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.643525"], ["updated_at", "2020-04-22 05:39:00.643525"]]
 (2.2ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.653138"], ["updated_at", "2020-04-22 05:39:00.653138"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_839211


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.663046"], ["updated_at", "2020-04-22 05:39:00.663046"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_366782

 (0.3ms)  SAVEPOINT active_record_1

Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.736433"], ["updated_at", "2020-04-22 05:39:00.736433"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.741808"], ["updated_at", "2020-04-22 05:39:00.741808"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.746364"], ["updated_at", "2020-04-22 05:39:00.746364"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.753226"], ["updated_at", "2020-04-22 05:39:00.753226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.754395"], ["updated_at", "2020-04-22 05:39:00.754395"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.760121"], ["updated_at", "2020-04-22 05:39:00.760121"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
 (3.2ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_799241


 (0.2ms)  begin transaction

CommentTest: test_161288


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.796145"], ["updated_at", "2020-04-22 05:39:00.796145"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.794595"], ["updated_at", "2020-04-22 05:39:00.794595"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.807159"], ["updated_at", "2020-04-22 05:39:00.807159"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.809493"], ["updated_at", "2020-04-22 05:39:00.809493"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.815585"], ["updated_at", "2020-04-22 05:39:00.815585"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.818388"], ["updated_at", "2020-04-22 05:39:00.818388"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_265082


 (0.1ms)  begin transaction

CommentTest: test_387886


 (0.2ms)  SAVEPOINT active_record_1
 (2.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.850905"], ["updated_at", "2020-04-22 05:39:00.850905"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.849305"], ["updated_at", "2020-04-22 05:39:00.849305"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.859036"], ["updated_at", "2020-04-22 05:39:00.859036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.860057"], ["updated_at", "2020-04-22 05:39:00.860057"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.866201"], ["updated_at", "2020-04-22 05:39:00.866201"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.865605"], ["updated_at", "2020-04-22 05:39:00.865605"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_412673


 (0.3ms)  SAVEPOINT active_record_1
 (2.5ms)  begin transaction

CommentTest: test_116953


Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.892709"], ["updated_at", "2020-04-22 05:39:00.892709"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.901902"], ["updated_at", "2020-04-22 05:39:00.901902"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.900680"], ["updated_at", "2020-04-22 05:39:00.900680"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.910835"], ["updated_at", "2020-04-22 05:39:00.910835"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.912467"], ["updated_at", "2020-04-22 05:39:00.912467"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.920691"], ["updated_at", "2020-04-22 05:39:00.920691"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.3ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_687325


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.943849"], ["updated_at", "2020-04-22 05:39:00.943849"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.953086"], ["updated_at", "2020-04-22 05:39:00.953086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  begin transaction

CommentTest: test_806239


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.960281"], ["updated_at", "2020-04-22 05:39:00.960281"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:00.962491"], ["updated_at", "2020-04-22 05:39:00.962491"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:00.971435"], ["updated_at", "2020-04-22 05:39:00.971435"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:00.977982"], ["updated_at", "2020-04-22 05:39:00.977982"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.9ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_695828


 (0.6ms)  begin transaction

 (0.3ms)  SAVEPOINT active_record_1

CommentTest: test_870623


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.003650"], ["updated_at", "2020-04-22 05:39:01.003650"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.012126"], ["updated_at", "2020-04-22 05:39:01.012126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.008887"], ["updated_at", "2020-04-22 05:39:01.008887"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.019162"], ["updated_at", "2020-04-22 05:39:01.019162"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.020852"], ["updated_at", "2020-04-22 05:39:01.020852"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.027396"], ["updated_at", "2020-04-22 05:39:01.027396"]]
 (1.7ms)  rollback transaction
 (1.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_942127


 (0.2ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.048829"], ["updated_at", "2020-04-22 05:39:01.048829"]]
 (1.7ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.056830"], ["updated_at", "2020-04-22 05:39:01.056830"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_565775


Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.063142"], ["updated_at", "2020-04-22 05:39:01.063142"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.067255"], ["updated_at", "2020-04-22 05:39:01.067255"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.076651"], ["updated_at", "2020-04-22 05:39:01.076651"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.082049"], ["updated_at", "2020-04-22 05:39:01.082049"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_391103


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.089757"], ["updated_at", "2020-04-22 05:39:01.089757"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.099416"], ["updated_at", "2020-04-22 05:39:01.099416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.106471"], ["updated_at", "2020-04-22 05:39:01.106471"]]
 (0.6ms)  begin transaction

CommentTest: test_918615


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.114645"], ["updated_at", "2020-04-22 05:39:01.114645"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.124220"], ["updated_at", "2020-04-22 05:39:01.124220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_383117


Recording Create (7.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.132743"], ["updated_at", "2020-04-22 05:39:01.132743"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.145650"], ["updated_at", "2020-04-22 05:39:01.145650"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.154044"], ["updated_at", "2020-04-22 05:39:01.154044"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (2.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.162199"], ["updated_at", "2020-04-22 05:39:01.162199"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  begin transaction

CommentTest: test_550374


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.179244"], ["updated_at", "2020-04-22 05:39:01.179244"]]
 (0.2ms)  begin transaction

CommentTest: test_830862


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.192704"], ["updated_at", "2020-04-22 05:39:01.192704"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.192271"], ["updated_at", "2020-04-22 05:39:01.192271"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.200570"], ["updated_at", "2020-04-22 05:39:01.200570"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.203577"], ["updated_at", "2020-04-22 05:39:01.203577"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.213427"], ["updated_at", "2020-04-22 05:39:01.213427"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_721039


 (0.4ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.230953"], ["updated_at", "2020-04-22 05:39:01.230953"]]
 (1.6ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.238530"], ["updated_at", "2020-04-22 05:39:01.238530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_335836


Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.245606"], ["updated_at", "2020-04-22 05:39:01.245606"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.247332"], ["updated_at", "2020-04-22 05:39:01.247332"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.254955"], ["updated_at", "2020-04-22 05:39:01.254955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.260288"], ["updated_at", "2020-04-22 05:39:01.260288"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_383217


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.277256"], ["updated_at", "2020-04-22 05:39:01.277256"]]
 (0.2ms)  begin transaction

CommentTest: test_215823


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.286219"], ["updated_at", "2020-04-22 05:39:01.286219"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.289382"], ["updated_at", "2020-04-22 05:39:01.289382"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.293108"], ["updated_at", "2020-04-22 05:39:01.293108"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.298514"], ["updated_at", "2020-04-22 05:39:01.298514"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.305343"], ["updated_at", "2020-04-22 05:39:01.305343"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_374795


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.322694"], ["updated_at", "2020-04-22 05:39:01.322694"]]
 (0.2ms)  begin transaction

CommentTest: test_773387


Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.332226"], ["updated_at", "2020-04-22 05:39:01.332226"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (5.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.340631"], ["updated_at", "2020-04-22 05:39:01.340631"]]
Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.336167"], ["updated_at", "2020-04-22 05:39:01.336167"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.351780"], ["updated_at", "2020-04-22 05:39:01.351780"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.358273"], ["updated_at", "2020-04-22 05:39:01.358273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_617824


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.373921"], ["updated_at", "2020-04-22 05:39:01.373921"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.383199"], ["updated_at", "2020-04-22 05:39:01.383199"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_531173


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.391233"], ["updated_at", "2020-04-22 05:39:01.391233"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.391494"], ["updated_at", "2020-04-22 05:39:01.391494"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.399890"], ["updated_at", "2020-04-22 05:39:01.399890"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.405574"], ["updated_at", "2020-04-22 05:39:01.405574"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_902023


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (2.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.418324"], ["updated_at", "2020-04-22 05:39:01.418324"]]
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_38024


Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.427437"], ["updated_at", "2020-04-22 05:39:01.427437"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.433792"], ["updated_at", "2020-04-22 05:39:01.433792"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.437080"], ["updated_at", "2020-04-22 05:39:01.437080"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.443183"], ["updated_at", "2020-04-22 05:39:01.443183"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.449698"], ["updated_at", "2020-04-22 05:39:01.449698"]]
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_225895


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.465991"], ["updated_at", "2020-04-22 05:39:01.465991"]]
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_782830


Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.475813"], ["updated_at", "2020-04-22 05:39:01.475813"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.478859"], ["updated_at", "2020-04-22 05:39:01.478859"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.483796"], ["updated_at", "2020-04-22 05:39:01.483796"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.490247"], ["updated_at", "2020-04-22 05:39:01.490247"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.500676"], ["updated_at", "2020-04-22 05:39:01.500676"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_105364


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.515057"], ["updated_at", "2020-04-22 05:39:01.515057"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.530720"], ["updated_at", "2020-04-22 05:39:01.530720"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_62705


Recording Create (4.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.537866"], ["updated_at", "2020-04-22 05:39:01.537866"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.543402"], ["updated_at", "2020-04-22 05:39:01.543402"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.553829"], ["updated_at", "2020-04-22 05:39:01.553829"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.561098"], ["updated_at", "2020-04-22 05:39:01.561098"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Bucket Load (1.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_172406


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.580279"], ["updated_at", "2020-04-22 05:39:01.580279"]]
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_718071


Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.588562"], ["updated_at", "2020-04-22 05:39:01.588562"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.594582"], ["updated_at", "2020-04-22 05:39:01.594582"]]
Recording Create (3.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.597888"], ["updated_at", "2020-04-22 05:39:01.597888"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.608304"], ["updated_at", "2020-04-22 05:39:01.608304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.616505"], ["updated_at", "2020-04-22 05:39:01.616505"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  begin transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]

CommentTest: test_928412


 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.636314"], ["updated_at", "2020-04-22 05:39:01.636314"]]
 (9.5ms)  rollback transaction
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.646840"], ["updated_at", "2020-04-22 05:39:01.646840"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

CommentTest: test_810711


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.659837"], ["updated_at", "2020-04-22 05:39:01.659837"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.661470"], ["updated_at", "2020-04-22 05:39:01.661470"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.669370"], ["updated_at", "2020-04-22 05:39:01.669370"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.676217"], ["updated_at", "2020-04-22 05:39:01.676217"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_786470


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.688318"], ["updated_at", "2020-04-22 05:39:01.688318"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.695861"], ["updated_at", "2020-04-22 05:39:01.695861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_268087


 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.701577"], ["updated_at", "2020-04-22 05:39:01.701577"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.702646"], ["updated_at", "2020-04-22 05:39:01.702646"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.710211"], ["updated_at", "2020-04-22 05:39:01.710211"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.720292"], ["updated_at", "2020-04-22 05:39:01.720292"]]
 (0.2ms)  begin transaction

CommentTest: test_234391


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.729845"], ["updated_at", "2020-04-22 05:39:01.729845"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Bucket Create (4.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.743709"], ["updated_at", "2020-04-22 05:39:01.743709"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_284196


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.754005"], ["updated_at", "2020-04-22 05:39:01.754005"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.757636"], ["updated_at", "2020-04-22 05:39:01.757636"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.6ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.776923"], ["updated_at", "2020-04-22 05:39:01.776923"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.784158"], ["updated_at", "2020-04-22 05:39:01.784158"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_509551


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.796076"], ["updated_at", "2020-04-22 05:39:01.796076"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_586262


Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.805987"], ["updated_at", "2020-04-22 05:39:01.805987"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.814644"], ["updated_at", "2020-04-22 05:39:01.814644"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.816755"], ["updated_at", "2020-04-22 05:39:01.816755"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.823040"], ["updated_at", "2020-04-22 05:39:01.823040"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.829660"], ["updated_at", "2020-04-22 05:39:01.829660"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_292248


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.845787"], ["updated_at", "2020-04-22 05:39:01.845787"]]
 (0.5ms)  begin transaction

CommentTest: test_396332


Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.856743"], ["updated_at", "2020-04-22 05:39:01.856743"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.864144"], ["updated_at", "2020-04-22 05:39:01.864144"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.866961"], ["updated_at", "2020-04-22 05:39:01.866961"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.873446"], ["updated_at", "2020-04-22 05:39:01.873446"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.879609"], ["updated_at", "2020-04-22 05:39:01.879609"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.1ms)  begin transaction

CommentTest: test_240344


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.893114"], ["updated_at", "2020-04-22 05:39:01.893114"]]
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_101169


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.900245"], ["updated_at", "2020-04-22 05:39:01.900245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.904133"], ["updated_at", "2020-04-22 05:39:01.904133"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.906418"], ["updated_at", "2020-04-22 05:39:01.906418"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.911443"], ["updated_at", "2020-04-22 05:39:01.911443"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.917293"], ["updated_at", "2020-04-22 05:39:01.917293"]]
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_32394


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.935132"], ["updated_at", "2020-04-22 05:39:01.935132"]]
 (2.3ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_397714


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.944679"], ["updated_at", "2020-04-22 05:39:01.944679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.951489"], ["updated_at", "2020-04-22 05:39:01.951489"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.951562"], ["updated_at", "2020-04-22 05:39:01.951562"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:01.965785"], ["updated_at", "2020-04-22 05:39:01.965785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (12.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:01.973825"], ["updated_at", "2020-04-22 05:39:01.973825"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  begin transaction

CommentTest: test_585314

 (1.9ms)  rollback transaction

 (0.3ms)  SAVEPOINT active_record_1
 (0.6ms)  begin transaction

CommentTest: test_823029


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:01.998085"], ["updated_at", "2020-04-22 05:39:01.998085"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.006805"], ["updated_at", "2020-04-22 05:39:02.006805"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.005337"], ["updated_at", "2020-04-22 05:39:02.005337"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.013868"], ["updated_at", "2020-04-22 05:39:02.013868"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.017093"], ["updated_at", "2020-04-22 05:39:02.017093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.024720"], ["updated_at", "2020-04-22 05:39:02.024720"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_827980


 (0.2ms)  begin transaction

CommentTest: test_848461


 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.049787"], ["updated_at", "2020-04-22 05:39:02.049787"]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.052154"], ["updated_at", "2020-04-22 05:39:02.052154"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.066207"], ["updated_at", "2020-04-22 05:39:02.066207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.063771"], ["updated_at", "2020-04-22 05:39:02.063771"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.075735"], ["updated_at", "2020-04-22 05:39:02.075735"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.075375"], ["updated_at", "2020-04-22 05:39:02.075375"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (2.3ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_313798


 (0.2ms)  begin transaction

CommentTest: test_718883


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.101204"], ["updated_at", "2020-04-22 05:39:02.101204"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.103620"], ["updated_at", "2020-04-22 05:39:02.103620"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.109756"], ["updated_at", "2020-04-22 05:39:02.109756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.112739"], ["updated_at", "2020-04-22 05:39:02.112739"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.115898"], ["updated_at", "2020-04-22 05:39:02.115898"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.119478"], ["updated_at", "2020-04-22 05:39:02.119478"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (2.4ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_673147


 (0.8ms)  begin transaction

CommentTest: test_895368


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.149336"], ["updated_at", "2020-04-22 05:39:02.149336"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.152039"], ["updated_at", "2020-04-22 05:39:02.152039"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.159030"], ["updated_at", "2020-04-22 05:39:02.159030"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.162141"], ["updated_at", "2020-04-22 05:39:02.162141"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.166029"], ["updated_at", "2020-04-22 05:39:02.166029"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.172373"], ["updated_at", "2020-04-22 05:39:02.172373"]]
 (0.2ms)  begin transaction

CommentTest: test_736796


 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.194728"], ["updated_at", "2020-04-22 05:39:02.194728"]]
 (0.2ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.204063"], ["updated_at", "2020-04-22 05:39:02.204063"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.211577"], ["updated_at", "2020-04-22 05:39:02.211577"]]
 (2.3ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_830748


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.224939"], ["updated_at", "2020-04-22 05:39:02.224939"]]
 (2.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.238861"], ["updated_at", "2020-04-22 05:39:02.238861"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  begin transaction

CommentTest: test_891726


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.248280"], ["updated_at", "2020-04-22 05:39:02.248280"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.250691"], ["updated_at", "2020-04-22 05:39:02.250691"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.264898"], ["updated_at", "2020-04-22 05:39:02.264898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.272278"], ["updated_at", "2020-04-22 05:39:02.272278"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_984880


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.293731"], ["updated_at", "2020-04-22 05:39:02.293731"]]
 (0.5ms)  begin transaction

CommentTest: test_611473


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.303675"], ["updated_at", "2020-04-22 05:39:02.303675"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.307198"], ["updated_at", "2020-04-22 05:39:02.307198"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.310306"], ["updated_at", "2020-04-22 05:39:02.310306"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.318099"], ["updated_at", "2020-04-22 05:39:02.318099"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.326432"], ["updated_at", "2020-04-22 05:39:02.326432"]]
 (1.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_6109


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.337829"], ["updated_at", "2020-04-22 05:39:02.337829"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.346394"], ["updated_at", "2020-04-22 05:39:02.346394"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  begin transaction

CommentTest: test_351077


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.353874"], ["updated_at", "2020-04-22 05:39:02.353874"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.354567"], ["updated_at", "2020-04-22 05:39:02.354567"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.363565"], ["updated_at", "2020-04-22 05:39:02.363565"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.370873"], ["updated_at", "2020-04-22 05:39:02.370873"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_797367


 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.387187"], ["updated_at", "2020-04-22 05:39:02.387187"]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_415047


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.395608"], ["updated_at", "2020-04-22 05:39:02.395608"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.402196"], ["updated_at", "2020-04-22 05:39:02.402196"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.404685"], ["updated_at", "2020-04-22 05:39:02.404685"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.410863"], ["updated_at", "2020-04-22 05:39:02.410863"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.416415"], ["updated_at", "2020-04-22 05:39:02.416415"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  begin transaction

CommentTest: test_620675


 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.432591"], ["updated_at", "2020-04-22 05:39:02.432591"]]
 (2.7ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_922897


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.442480"], ["updated_at", "2020-04-22 05:39:02.442480"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.445871"], ["updated_at", "2020-04-22 05:39:02.445871"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.448931"], ["updated_at", "2020-04-22 05:39:02.448931"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.454808"], ["updated_at", "2020-04-22 05:39:02.454808"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.462201"], ["updated_at", "2020-04-22 05:39:02.462201"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_31059


 (0.9ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.480667"], ["updated_at", "2020-04-22 05:39:02.480667"]]
 (0.6ms)  begin transaction

CommentTest: test_135394


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.501130"], ["updated_at", "2020-04-22 05:39:02.501130"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.509838"], ["updated_at", "2020-04-22 05:39:02.509838"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.507329"], ["updated_at", "2020-04-22 05:39:02.507329"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.518880"], ["updated_at", "2020-04-22 05:39:02.518880"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_383648


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.531943"], ["updated_at", "2020-04-22 05:39:02.531943"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (3.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.537330"], ["updated_at", "2020-04-22 05:39:02.537330"]]
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.548371"], ["updated_at", "2020-04-22 05:39:02.548371"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.556076"], ["updated_at", "2020-04-22 05:39:02.556076"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_653863


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.572548"], ["updated_at", "2020-04-22 05:39:02.572548"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (5.9ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.585273"], ["updated_at", "2020-04-22 05:39:02.585273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_3994


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.596247"], ["updated_at", "2020-04-22 05:39:02.596247"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.598978"], ["updated_at", "2020-04-22 05:39:02.598978"]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.607374"], ["updated_at", "2020-04-22 05:39:02.607374"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.614083"], ["updated_at", "2020-04-22 05:39:02.614083"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_42445


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.625985"], ["updated_at", "2020-04-22 05:39:02.625985"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_952735


Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.635255"], ["updated_at", "2020-04-22 05:39:02.635255"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.641333"], ["updated_at", "2020-04-22 05:39:02.641333"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.644420"], ["updated_at", "2020-04-22 05:39:02.644420"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.649995"], ["updated_at", "2020-04-22 05:39:02.649995"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.656673"], ["updated_at", "2020-04-22 05:39:02.656673"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_16143


 (1.1ms)  SAVEPOINT active_record_1
Course Create (4.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.685934"], ["updated_at", "2020-04-22 05:39:02.685934"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.710820"], ["updated_at", "2020-04-22 05:39:02.710820"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.3ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_334625


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.720635"], ["updated_at", "2020-04-22 05:39:02.720635"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.737518"], ["updated_at", "2020-04-22 05:39:02.737518"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.748181"], ["updated_at", "2020-04-22 05:39:02.748181"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.755697"], ["updated_at", "2020-04-22 05:39:02.755697"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_742897


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.771681"], ["updated_at", "2020-04-22 05:39:02.771681"]]
 (1.7ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_622692


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.789684"], ["updated_at", "2020-04-22 05:39:02.789684"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.793720"], ["updated_at", "2020-04-22 05:39:02.793720"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.800860"], ["updated_at", "2020-04-22 05:39:02.800860"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.804095"], ["updated_at", "2020-04-22 05:39:02.804095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (17.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.829232"], ["updated_at", "2020-04-22 05:39:02.829232"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_941395


Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
 (3.4ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_843630


Course Create (2.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.847027"], ["updated_at", "2020-04-22 05:39:02.847027"]]
 (1.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.859398"], ["updated_at", "2020-04-22 05:39:02.859398"]]
Bucket Create (3.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.864451"], ["updated_at", "2020-04-22 05:39:02.864451"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.869998"], ["updated_at", "2020-04-22 05:39:02.869998"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.875272"], ["updated_at", "2020-04-22 05:39:02.875272"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.879858"], ["updated_at", "2020-04-22 05:39:02.879858"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.7ms)  begin transaction

CommentTest: test_41258


 (0.2ms)  begin transaction

CommentTest: test_228756


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.910910"], ["updated_at", "2020-04-22 05:39:02.910910"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.915449"], ["updated_at", "2020-04-22 05:39:02.915449"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.922853"], ["updated_at", "2020-04-22 05:39:02.922853"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.925244"], ["updated_at", "2020-04-22 05:39:02.925244"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.932544"], ["updated_at", "2020-04-22 05:39:02.932544"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.932060"], ["updated_at", "2020-04-22 05:39:02.932060"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_973048


 (0.2ms)  begin transaction

CommentTest: test_279913


 (0.5ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.962808"], ["updated_at", "2020-04-22 05:39:02.962808"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:02.967159"], ["updated_at", "2020-04-22 05:39:02.967159"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.976895"], ["updated_at", "2020-04-22 05:39:02.976895"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:02.978646"], ["updated_at", "2020-04-22 05:39:02.978646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.984145"], ["updated_at", "2020-04-22 05:39:02.984145"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:02.987146"], ["updated_at", "2020-04-22 05:39:02.987146"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (6.0ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.6ms)  begin transaction
 (0.2ms)  begin transaction


CommentTest: test_341772 CommentTest: test_708870



 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.024715"], ["updated_at", "2020-04-22 05:39:03.024715"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.024412"], ["updated_at", "2020-04-22 05:39:03.024412"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.033598"], ["updated_at", "2020-04-22 05:39:03.033598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.037161"], ["updated_at", "2020-04-22 05:39:03.037161"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.040362"], ["updated_at", "2020-04-22 05:39:03.040362"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.046048"], ["updated_at", "2020-04-22 05:39:03.046048"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_632660


 (0.2ms)  begin transaction

CommentTest: test_3003


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.075475"], ["updated_at", "2020-04-22 05:39:03.075475"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.076486"], ["updated_at", "2020-04-22 05:39:03.076486"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.084027"], ["updated_at", "2020-04-22 05:39:03.084027"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.084981"], ["updated_at", "2020-04-22 05:39:03.084981"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.090421"], ["updated_at", "2020-04-22 05:39:03.090421"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.091773"], ["updated_at", "2020-04-22 05:39:03.091773"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (2.4ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.8ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_623713


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.126730"], ["updated_at", "2020-04-22 05:39:03.126730"]]
 (0.2ms)  begin transaction

CommentTest: test_821785


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.140262"], ["updated_at", "2020-04-22 05:39:03.140262"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.140941"], ["updated_at", "2020-04-22 05:39:03.140941"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.149304"], ["updated_at", "2020-04-22 05:39:03.149304"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.149935"], ["updated_at", "2020-04-22 05:39:03.149935"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.154948"], ["updated_at", "2020-04-22 05:39:03.154948"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_595095


 (0.1ms)  begin transaction

CommentTest: test_487096


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.177309"], ["updated_at", "2020-04-22 05:39:03.177309"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.180269"], ["updated_at", "2020-04-22 05:39:03.180269"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.186788"], ["updated_at", "2020-04-22 05:39:03.186788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.188466"], ["updated_at", "2020-04-22 05:39:03.188466"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.194646"], ["updated_at", "2020-04-22 05:39:03.194646"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.193697"], ["updated_at", "2020-04-22 05:39:03.193697"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (3.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_657788


 (0.2ms)  begin transaction

CommentTest: test_768533


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.223131"], ["updated_at", "2020-04-22 05:39:03.223131"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.225546"], ["updated_at", "2020-04-22 05:39:03.225546"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.231582"], ["updated_at", "2020-04-22 05:39:03.231582"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.237519"], ["updated_at", "2020-04-22 05:39:03.237519"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.238336"], ["updated_at", "2020-04-22 05:39:03.238336"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.245733"], ["updated_at", "2020-04-22 05:39:03.245733"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_287933


 (0.8ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.266682"], ["updated_at", "2020-04-22 05:39:03.266682"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.276670"], ["updated_at", "2020-04-22 05:39:03.276670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (10.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.285573"], ["updated_at", "2020-04-22 05:39:03.285573"]]
 (1.7ms)  rollback transaction
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_983061


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.298603"], ["updated_at", "2020-04-22 05:39:03.298603"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.308333"], ["updated_at", "2020-04-22 05:39:03.308333"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_663999


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.316227"], ["updated_at", "2020-04-22 05:39:03.316227"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.319458"], ["updated_at", "2020-04-22 05:39:03.319458"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.329974"], ["updated_at", "2020-04-22 05:39:03.329974"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.339046"], ["updated_at", "2020-04-22 05:39:03.339046"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_263632


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.348076"], ["updated_at", "2020-04-22 05:39:03.348076"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.360326"], ["updated_at", "2020-04-22 05:39:03.360326"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_943413


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.368647"], ["updated_at", "2020-04-22 05:39:03.368647"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.368254"], ["updated_at", "2020-04-22 05:39:03.368254"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.379986"], ["updated_at", "2020-04-22 05:39:03.379986"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.8ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.386627"], ["updated_at", "2020-04-22 05:39:03.386627"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_787171


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.399902"], ["updated_at", "2020-04-22 05:39:03.399902"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.411313"], ["updated_at", "2020-04-22 05:39:03.411313"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.418779"], ["updated_at", "2020-04-22 05:39:03.418779"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_378106


Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_728886


 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.438857"], ["updated_at", "2020-04-22 05:39:03.438857"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.446939"], ["updated_at", "2020-04-22 05:39:03.446939"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.455552"], ["updated_at", "2020-04-22 05:39:03.455552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.456680"], ["updated_at", "2020-04-22 05:39:03.456680"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.465254"], ["updated_at", "2020-04-22 05:39:03.465254"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.465569"], ["updated_at", "2020-04-22 05:39:03.465569"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_942118


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.495823"], ["updated_at", "2020-04-22 05:39:03.495823"]]
 (0.6ms)  begin transaction

CommentTest: test_795999


Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.504665"], ["updated_at", "2020-04-22 05:39:03.504665"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.509119"], ["updated_at", "2020-04-22 05:39:03.509119"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.513314"], ["updated_at", "2020-04-22 05:39:03.513314"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (3.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.519788"], ["updated_at", "2020-04-22 05:39:03.519788"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.532515"], ["updated_at", "2020-04-22 05:39:03.532515"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_982451


 (1.8ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_127873


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.555587"], ["updated_at", "2020-04-22 05:39:03.555587"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.563089"], ["updated_at", "2020-04-22 05:39:03.563089"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.568934"], ["updated_at", "2020-04-22 05:39:03.568934"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.572687"], ["updated_at", "2020-04-22 05:39:03.572687"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.577405"], ["updated_at", "2020-04-22 05:39:03.577405"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.582331"], ["updated_at", "2020-04-22 05:39:03.582331"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_24230


 (0.7ms)  begin transaction

CommentTest: test_719334


 (0.8ms)  SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Course Create (5.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.606541"], ["updated_at", "2020-04-22 05:39:03.606541"]]
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.611016"], ["updated_at", "2020-04-22 05:39:03.611016"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.620484"], ["updated_at", "2020-04-22 05:39:03.620484"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.626719"], ["updated_at", "2020-04-22 05:39:03.626719"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.636478"], ["updated_at", "2020-04-22 05:39:03.636478"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.642349"], ["updated_at", "2020-04-22 05:39:03.642349"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_81107


 (0.2ms)  begin transaction

CommentTest: test_948745


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.676712"], ["updated_at", "2020-04-22 05:39:03.676712"]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.677297"], ["updated_at", "2020-04-22 05:39:03.677297"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.685508"], ["updated_at", "2020-04-22 05:39:03.685508"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.686494"], ["updated_at", "2020-04-22 05:39:03.686494"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.692312"], ["updated_at", "2020-04-22 05:39:03.692312"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.693640"], ["updated_at", "2020-04-22 05:39:03.693640"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (3.4ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_982464


 (0.2ms)  begin transaction

CommentTest: test_148213


 (0.9ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.721383"], ["updated_at", "2020-04-22 05:39:03.721383"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.730696"], ["updated_at", "2020-04-22 05:39:03.730696"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.723547"], ["updated_at", "2020-04-22 05:39:03.723547"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.738637"], ["updated_at", "2020-04-22 05:39:03.738637"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.740005"], ["updated_at", "2020-04-22 05:39:03.740005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.747789"], ["updated_at", "2020-04-22 05:39:03.747789"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_822960

 (0.6ms)  SAVEPOINT active_record_1

Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.768218"], ["updated_at", "2020-04-22 05:39:03.768218"]]
 (0.2ms)  begin transaction

CommentTest: test_443279


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.777546"], ["updated_at", "2020-04-22 05:39:03.777546"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.786866"], ["updated_at", "2020-04-22 05:39:03.786866"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.780158"], ["updated_at", "2020-04-22 05:39:03.780158"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.805176"], ["updated_at", "2020-04-22 05:39:03.805176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.812698"], ["updated_at", "2020-04-22 05:39:03.812698"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Create (2.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (3.0ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_639061


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.848423"], ["updated_at", "2020-04-22 05:39:03.848423"]]
 (0.8ms)  begin transaction

CommentTest: test_592375


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.858571"], ["updated_at", "2020-04-22 05:39:03.858571"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.860917"], ["updated_at", "2020-04-22 05:39:03.860917"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.866341"], ["updated_at", "2020-04-22 05:39:03.866341"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.870794"], ["updated_at", "2020-04-22 05:39:03.870794"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.877958"], ["updated_at", "2020-04-22 05:39:03.877958"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction
 (1.8ms)  rollback transaction

CommentTest: test_481995


 (0.2ms)  begin transaction

CommentTest: test_148440


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.905340"], ["updated_at", "2020-04-22 05:39:03.905340"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.909919"], ["updated_at", "2020-04-22 05:39:03.909919"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.914294"], ["updated_at", "2020-04-22 05:39:03.914294"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.919910"], ["updated_at", "2020-04-22 05:39:03.919910"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.921606"], ["updated_at", "2020-04-22 05:39:03.921606"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.927379"], ["updated_at", "2020-04-22 05:39:03.927379"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_530803


 (0.2ms)  begin transaction

CommentTest: test_463308


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.960266"], ["updated_at", "2020-04-22 05:39:03.960266"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:03.964292"], ["updated_at", "2020-04-22 05:39:03.964292"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.969315"], ["updated_at", "2020-04-22 05:39:03.969315"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:03.973086"], ["updated_at", "2020-04-22 05:39:03.973086"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.975415"], ["updated_at", "2020-04-22 05:39:03.975415"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:03.981965"], ["updated_at", "2020-04-22 05:39:03.981965"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_870930


 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (3.8ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.006505"], ["updated_at", "2020-04-22 05:39:04.006505"]]
 (1.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_185360


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.018932"], ["updated_at", "2020-04-22 05:39:04.018932"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.023836"], ["updated_at", "2020-04-22 05:39:04.023836"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.030395"], ["updated_at", "2020-04-22 05:39:04.030395"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.032944"], ["updated_at", "2020-04-22 05:39:04.032944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (5.9ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.038958"], ["updated_at", "2020-04-22 05:39:04.038958"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_568923


 (0.2ms)  begin transaction

CommentTest: test_306980


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.071296"], ["updated_at", "2020-04-22 05:39:04.071296"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.073994"], ["updated_at", "2020-04-22 05:39:04.073994"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.082645"], ["updated_at", "2020-04-22 05:39:04.082645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.082322"], ["updated_at", "2020-04-22 05:39:04.082322"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.088793"], ["updated_at", "2020-04-22 05:39:04.088793"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.089469"], ["updated_at", "2020-04-22 05:39:04.089469"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_225543


 (0.2ms)  begin transaction

CommentTest: test_154199


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.118413"], ["updated_at", "2020-04-22 05:39:04.118413"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.121295"], ["updated_at", "2020-04-22 05:39:04.121295"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.129668"], ["updated_at", "2020-04-22 05:39:04.129668"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.132909"], ["updated_at", "2020-04-22 05:39:04.132909"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.137190"], ["updated_at", "2020-04-22 05:39:04.137190"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.140571"], ["updated_at", "2020-04-22 05:39:04.140571"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (1.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_487787


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.176046"], ["updated_at", "2020-04-22 05:39:04.176046"]]
 (0.2ms)  begin transaction

CommentTest: test_730295


 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.186795"], ["updated_at", "2020-04-22 05:39:04.186795"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.185996"], ["updated_at", "2020-04-22 05:39:04.185996"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.193925"], ["updated_at", "2020-04-22 05:39:04.193925"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.193782"], ["updated_at", "2020-04-22 05:39:04.193782"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.200760"], ["updated_at", "2020-04-22 05:39:04.200760"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (2.1ms)  rollback transaction
 (0.6ms)  begin transaction

CommentTest: test_374958


 (0.5ms)  begin transaction

CommentTest: test_632355


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.228324"], ["updated_at", "2020-04-22 05:39:04.228324"]]
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.226478"], ["updated_at", "2020-04-22 05:39:04.226478"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.237826"], ["updated_at", "2020-04-22 05:39:04.237826"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.246149"], ["updated_at", "2020-04-22 05:39:04.246149"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.239575"], ["updated_at", "2020-04-22 05:39:04.239575"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.258353"], ["updated_at", "2020-04-22 05:39:04.258353"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_694218


 (0.9ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.277982"], ["updated_at", "2020-04-22 05:39:04.277982"]]
 (2.8ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_906725


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.287066"], ["updated_at", "2020-04-22 05:39:04.287066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.294070"], ["updated_at", "2020-04-22 05:39:04.294070"]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.292892"], ["updated_at", "2020-04-22 05:39:04.292892"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.301780"], ["updated_at", "2020-04-22 05:39:04.301780"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.308394"], ["updated_at", "2020-04-22 05:39:04.308394"]]
 (1.7ms)  rollback transaction
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

CommentTest: test_85075


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.320822"], ["updated_at", "2020-04-22 05:39:04.320822"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.329526"], ["updated_at", "2020-04-22 05:39:04.329526"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  begin transaction

CommentTest: test_824060


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.335712"], ["updated_at", "2020-04-22 05:39:04.335712"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.339029"], ["updated_at", "2020-04-22 05:39:04.339029"]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.351227"], ["updated_at", "2020-04-22 05:39:04.351227"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_74784


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.358788"], ["updated_at", "2020-04-22 05:39:04.358788"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.365937"], ["updated_at", "2020-04-22 05:39:04.365937"]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.374756"], ["updated_at", "2020-04-22 05:39:04.374756"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.7ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.381471"], ["updated_at", "2020-04-22 05:39:04.381471"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_264689


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.398425"], ["updated_at", "2020-04-22 05:39:04.398425"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.3ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.407257"], ["updated_at", "2020-04-22 05:39:04.407257"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_768658


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.415354"], ["updated_at", "2020-04-22 05:39:04.415354"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.418298"], ["updated_at", "2020-04-22 05:39:04.418298"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.430095"], ["updated_at", "2020-04-22 05:39:04.430095"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.437222"], ["updated_at", "2020-04-22 05:39:04.437222"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_295526


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.446819"], ["updated_at", "2020-04-22 05:39:04.446819"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.459005"], ["updated_at", "2020-04-22 05:39:04.459005"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.9ms)  begin transaction

CommentTest: test_714423


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.467181"], ["updated_at", "2020-04-22 05:39:04.467181"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.472632"], ["updated_at", "2020-04-22 05:39:04.472632"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.481417"], ["updated_at", "2020-04-22 05:39:04.481417"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (5.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.488026"], ["updated_at", "2020-04-22 05:39:04.488026"]]
 (1.7ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

CommentTest: test_135403


 (0.7ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.511824"], ["updated_at", "2020-04-22 05:39:04.511824"]]
 (2.7ms)  rollback transaction
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.520335"], ["updated_at", "2020-04-22 05:39:04.520335"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_944540


Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.529940"], ["updated_at", "2020-04-22 05:39:04.529940"]]
 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.529679"], ["updated_at", "2020-04-22 05:39:04.529679"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.542735"], ["updated_at", "2020-04-22 05:39:04.542735"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (1.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.551706"], ["updated_at", "2020-04-22 05:39:04.551706"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_653631

Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]

 (0.7ms)  SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.566029"], ["updated_at", "2020-04-22 05:39:04.566029"]]
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.575036"], ["updated_at", "2020-04-22 05:39:04.575036"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

CommentTest: test_598408


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.582495"], ["updated_at", "2020-04-22 05:39:04.582495"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.586449"], ["updated_at", "2020-04-22 05:39:04.586449"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.597081"], ["updated_at", "2020-04-22 05:39:04.597081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.607170"], ["updated_at", "2020-04-22 05:39:04.607170"]]
 (0.2ms)  begin transaction

CommentTest: test_772472


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (3.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (3.4ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.615102"], ["updated_at", "2020-04-22 05:39:04.615102"]]
 (0.2ms)  begin transaction

CommentTest: test_709858


Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.637064"], ["updated_at", "2020-04-22 05:39:04.637064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.641592"], ["updated_at", "2020-04-22 05:39:04.641592"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.646789"], ["updated_at", "2020-04-22 05:39:04.646789"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.650888"], ["updated_at", "2020-04-22 05:39:04.650888"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.658964"], ["updated_at", "2020-04-22 05:39:04.658964"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (4.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (2.6ms)  rollback transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  begin transaction

CommentTest: test_767878


 (0.3ms)  SAVEPOINT active_record_1
 (12.3ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_512519


Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.732832"], ["updated_at", "2020-04-22 05:39:04.732832"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.745181"], ["updated_at", "2020-04-22 05:39:04.745181"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.749202"], ["updated_at", "2020-04-22 05:39:04.749202"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.756548"], ["updated_at", "2020-04-22 05:39:04.756548"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.757069"], ["updated_at", "2020-04-22 05:39:04.757069"]]
 (26.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (3.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.763912"], ["updated_at", "2020-04-22 05:39:04.763912"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (1.1ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (34.3ms)  rollback transaction
 (44.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_369493


 (2.1ms)  begin transaction

CommentTest: test_924033


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.911272"], ["updated_at", "2020-04-22 05:39:04.911272"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.904670"], ["updated_at", "2020-04-22 05:39:04.904670"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.927104"], ["updated_at", "2020-04-22 05:39:04.927104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (6.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.922955"], ["updated_at", "2020-04-22 05:39:04.922955"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.937628"], ["updated_at", "2020-04-22 05:39:04.937628"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:04.951102"], ["updated_at", "2020-04-22 05:39:04.951102"]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_954109


 (0.2ms)  begin transaction

CommentTest: test_210073


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.989109"], ["updated_at", "2020-04-22 05:39:04.989109"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:04.990075"], ["updated_at", "2020-04-22 05:39:04.990075"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.997692"], ["updated_at", "2020-04-22 05:39:04.997692"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:04.998599"], ["updated_at", "2020-04-22 05:39:04.998599"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.004509"], ["updated_at", "2020-04-22 05:39:05.004509"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (2.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.005133"], ["updated_at", "2020-04-22 05:39:05.005133"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_414293


 (0.2ms)  begin transaction

CommentTest: test_194345


 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:05.040316"], ["updated_at", "2020-04-22 05:39:05.040316"]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:05.038919"], ["updated_at", "2020-04-22 05:39:05.038919"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:05.049460"], ["updated_at", "2020-04-22 05:39:05.049460"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:05.050871"], ["updated_at", "2020-04-22 05:39:05.050871"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.058381"], ["updated_at", "2020-04-22 05:39:05.058381"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.056569"], ["updated_at", "2020-04-22 05:39:05.056569"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.0ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

CommentTest: test_971074



CommentTest: test_945330


 (0.2ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:05.100383"], ["updated_at", "2020-04-22 05:39:05.100383"]]
Course Create (5.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:05.100204"], ["updated_at", "2020-04-22 05:39:05.100204"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:05.112442"], ["updated_at", "2020-04-22 05:39:05.112442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:05.112280"], ["updated_at", "2020-04-22 05:39:05.112280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.120340"], ["updated_at", "2020-04-22 05:39:05.120340"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.122151"], ["updated_at", "2020-04-22 05:39:05.122151"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  begin transaction
 (0.2ms)  RELEASE SAVEPOINT active_record_1

CommentTest: test_358514


 (1.7ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 05:39:05.150778"], ["updated_at", "2020-04-22 05:39:05.150778"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 05:39:05.162922"], ["updated_at", "2020-04-22 05:39:05.162922"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 05:39:05.171587"], ["updated_at", "2020-04-22 05:39:05.171587"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (10.3ms)  rollback transaction
 (16.8ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.6ms)  SELECT sqlite_version(*)
 (4.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (3.3ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.0ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.8ms)  SELECT sqlite_version(*)
 (3.7ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (1.1ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (56.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
Truncate Tables (143.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.5ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (1.2ms)  begin transaction
Fixtures Load (7.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:42:50.149527', '2020-04-22 06:42:50.149527'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:42:50.149527', '2020-04-22 06:42:50.149527'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:42:50.168748', '2020-04-22 06:42:50.168748', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:42:50.168748', '2020-04-22 06:42:50.168748', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:42:50.320581', '2020-04-22 06:42:50.320581'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:42:50.320581', '2020-04-22 06:42:50.320581'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:42:50.332330', '2020-04-22 06:42:50.332330'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:42:50.332330', '2020-04-22 06:42:50.332330'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:42:50.437184', '2020-04-22 06:42:50.437184'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:42:50.437184', '2020-04-22 06:42:50.437184'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:42:50.456926', '2020-04-22 06:42:50.456926'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:42:50.456926', '2020-04-22 06:42:50.456926'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:42:50.485150', '2020-04-22 06:42:50.485150'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:42:50.485150', '2020-04-22 06:42:50.485150')

 (16.9ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.4ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.3ms)  SAVEPOINT active_record_1
Vault Create (2.9ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:42:50.659862"], ["updated_at", "2020-04-22 06:42:50.659862"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:42:51.101657"], ["updated_at", "2020-04-22 06:42:51.101657"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (29.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:42:51.347634"], ["updated_at", "2020-04-22 06:42:51.347634"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.5ms)  rollback transaction
 (13.9ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.5ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (68.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (3.8ms)  PRAGMA foreign_keys = 1
Truncate Tables (79.5ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.9ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (4.9ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:43:28.397949', '2020-04-22 06:43:28.397949'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:43:28.397949', '2020-04-22 06:43:28.397949'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:43:28.421769', '2020-04-22 06:43:28.421769', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:43:28.421769', '2020-04-22 06:43:28.421769', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:43:28.436548', '2020-04-22 06:43:28.436548'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:28.436548', '2020-04-22 06:43:28.436548'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:28.458367', '2020-04-22 06:43:28.458367'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:28.458367', '2020-04-22 06:43:28.458367'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:43:28.473619', '2020-04-22 06:43:28.473619'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:43:28.473619', '2020-04-22 06:43:28.473619'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:43:28.483545', '2020-04-22 06:43:28.483545'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:43:28.483545', '2020-04-22 06:43:28.483545'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:43:28.492429', '2020-04-22 06:43:28.492429'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:28.492429', '2020-04-22 06:43:28.492429')

 (13.2ms)  commit transaction
 (0.6ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.4ms)  PRAGMA foreign_keys
 (2.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  begin transaction
Fixtures Load (11.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:43:28.443349', '2020-04-22 06:43:28.443349'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:43:28.443349', '2020-04-22 06:43:28.443349'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:43:28.467842', '2020-04-22 06:43:28.467842', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:43:28.467842', '2020-04-22 06:43:28.467842', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:43:28.491543', '2020-04-22 06:43:28.491543'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:28.491543', '2020-04-22 06:43:28.491543'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:28.508427', '2020-04-22 06:43:28.508427'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:28.508427', '2020-04-22 06:43:28.508427'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:43:28.519721', '2020-04-22 06:43:28.519721'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:43:28.519721', '2020-04-22 06:43:28.519721'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:43:28.529988', '2020-04-22 06:43:28.529988'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:43:28.529988', '2020-04-22 06:43:28.529988'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:43:28.542322', '2020-04-22 06:43:28.542322'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:28.542322', '2020-04-22 06:43:28.542322')

 (4.7ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.4ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:28.687566"], ["updated_at", "2020-04-22 06:43:28.687566"]]
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (8.6ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 06:43:28.740142"], ["updated_at", "2020-04-22 06:43:28.740142"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:28.792933"], ["updated_at", "2020-04-22 06:43:28.792933"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:28.857488"], ["updated_at", "2020-04-22 06:43:28.857488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:28.890033"], ["updated_at", "2020-04-22 06:43:28.890033"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (10.2ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:28.920317"], ["updated_at", "2020-04-22 06:43:28.920317"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


Course Load (1.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  rollback transaction
Course Create (3.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:43:29.018878"], ["updated_at", "2020-04-22 06:43:29.018878"]]
 (0.3ms)  begin transaction
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.030301"], ["updated_at", "2020-04-22 06:43:29.030301"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.037976"], ["updated_at", "2020-04-22 06:43:29.037976"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (1.1ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (5.3ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:43:29.078495"], ["updated_at", "2020-04-22 06:43:29.078495"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.092288"], ["updated_at", "2020-04-22 06:43:29.092288"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.099616"], ["updated_at", "2020-04-22 06:43:29.099616"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.7ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:43:29.128950"], ["updated_at", "2020-04-22 06:43:29.128950"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.144952"], ["updated_at", "2020-04-22 06:43:29.144952"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.154759"], ["updated_at", "2020-04-22 06:43:29.154759"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.211400"], ["updated_at", "2020-04-22 06:43:29.211400"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.222490"], ["updated_at", "2020-04-22 06:43:29.222490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.243134"], ["updated_at", "2020-04-22 06:43:29.243134"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (3.4ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.287658"], ["updated_at", "2020-04-22 06:43:29.287658"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.295714"], ["updated_at", "2020-04-22 06:43:29.295714"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.303999"], ["updated_at", "2020-04-22 06:43:29.303999"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (2.7ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.329625"], ["updated_at", "2020-04-22 06:43:29.329625"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.338970"], ["updated_at", "2020-04-22 06:43:29.338970"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.352941"], ["updated_at", "2020-04-22 06:43:29.352941"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (2.9ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (2.1ms)  rollback transaction
 (0.5ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.410617"], ["updated_at", "2020-04-22 06:43:29.410617"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.421411"], ["updated_at", "2020-04-22 06:43:29.421411"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.425727"], ["updated_at", "2020-04-22 06:43:29.425727"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.448765"], ["updated_at", "2020-04-22 06:43:29.448765"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.460423"], ["updated_at", "2020-04-22 06:43:29.460423"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (14.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.472287"], ["updated_at", "2020-04-22 06:43:29.472287"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (7.1ms)  rollback transaction
 (0.4ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.553343"], ["updated_at", "2020-04-22 06:43:29.553343"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.567280"], ["updated_at", "2020-04-22 06:43:29.567280"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.577214"], ["updated_at", "2020-04-22 06:43:29.577214"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Load (1.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.1ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.4ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:29.657849"], ["updated_at", "2020-04-22 06:43:29.657849"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.668424"], ["updated_at", "2020-04-22 06:43:29.668424"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.675528"], ["updated_at", "2020-04-22 06:43:29.675528"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.9ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:43:29.731797"], ["updated_at", "2020-04-22 06:43:29.731797"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (0.9ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:43:29.741908"], ["updated_at", "2020-04-22 06:43:29.741908"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Lesson Create (0.4ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:43:29.753529"], ["updated_at", "2020-04-22 06:43:29.753529"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (11.7ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_lesson_valid


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (9.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:29.827583"], ["updated_at", "2020-04-22 06:43:29.827583"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.848954"], ["updated_at", "2020-04-22 06:43:29.848954"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.866050"], ["updated_at", "2020-04-22 06:43:29.866050"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SAVEPOINT active_record_1
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.9ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:43:29.897608"], ["updated_at", "2020-04-22 06:43:29.897608"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:29.970634"], ["updated_at", "2020-04-22 06:43:29.970634"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:29.982646"], ["updated_at", "2020-04-22 06:43:29.982646"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:29.988891"], ["updated_at", "2020-04-22 06:43:29.988891"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (5.6ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (10.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.083271"], ["updated_at", "2020-04-22 06:43:30.083271"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.096944"], ["updated_at", "2020-04-22 06:43:30.096944"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.105586"], ["updated_at", "2020-04-22 06:43:30.105586"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.4ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (2.5ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (1.4ms)  SAVEPOINT active_record_1
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.153918"], ["updated_at", "2020-04-22 06:43:30.153918"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.166215"], ["updated_at", "2020-04-22 06:43:30.166215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.172506"], ["updated_at", "2020-04-22 06:43:30.172506"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.3ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (3.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.250913"], ["updated_at", "2020-04-22 06:43:30.250913"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.262736"], ["updated_at", "2020-04-22 06:43:30.262736"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.268512"], ["updated_at", "2020-04-22 06:43:30.268512"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.315559"], ["updated_at", "2020-04-22 06:43:30.315559"]]
Bucket Create (1.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.332864"], ["updated_at", "2020-04-22 06:43:30.332864"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.341114"], ["updated_at", "2020-04-22 06:43:30.341114"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.9ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.2ms)  SAVEPOINT active_record_1
Course Create (8.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.399662"], ["updated_at", "2020-04-22 06:43:30.399662"]]
Bucket Create (3.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.417472"], ["updated_at", "2020-04-22 06:43:30.417472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.430690"], ["updated_at", "2020-04-22 06:43:30.430690"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.457775"], ["updated_at", "2020-04-22 06:43:30.457775"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.467564"], ["updated_at", "2020-04-22 06:43:30.467564"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.479940"], ["updated_at", "2020-04-22 06:43:30.479940"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_associations


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.6ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.5ms)  SAVEPOINT active_record_1
Course Create (5.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.570401"], ["updated_at", "2020-04-22 06:43:30.570401"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.584260"], ["updated_at", "2020-04-22 06:43:30.584260"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.597447"], ["updated_at", "2020-04-22 06:43:30.597447"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Track Create (1.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:43:30.606018"], ["updated_at", "2020-04-22 06:43:30.606018"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:43:30.616464"], ["updated_at", "2020-04-22 06:43:30.616464"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:30.623225"], ["updated_at", "2020-04-22 06:43:30.623225"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:30.629836"], ["updated_at", "2020-04-22 06:43:30.629836"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Track Create (2.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 06:43:30.635993"], ["updated_at", "2020-04-22 06:43:30.635993"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.2ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_track_valid


 (0.2ms)  rollback transaction
 (0.7ms)  begin transaction

CoursesControllerTest: test_index


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.3ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:43:31.044711"], ["updated_at", "2020-04-22 06:43:31.044711"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:31.052419"], ["updated_at", "2020-04-22 06:43:31.052419"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:31.057799"], ["updated_at", "2020-04-22 06:43:31.057799"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (16.6ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.2ms)  SAVEPOINT active_record_1
Vault Create (1.7ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:43:31.138573"], ["updated_at", "2020-04-22 06:43:31.138573"]]
Bucket Create (1.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:31.147524"], ["updated_at", "2020-04-22 06:43:31.147524"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:31.155417"], ["updated_at", "2020-04-22 06:43:31.155417"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:31.167593"], ["updated_at", "2020-04-22 06:43:31.167593"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:31.182245"], ["updated_at", "2020-04-22 06:43:31.182245"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:31.191987"], ["updated_at", "2020-04-22 06:43:31.191987"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.8ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 13.0ms | Allocations: 656)
 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.8ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:43:31.430409"], ["updated_at", "2020-04-22 06:43:31.430409"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: f1095c79-397f-4df8-ada6-ad5cd53a9513) to Async(default)

 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (1.5ms)  rollback transaction
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 305ms (Views: 281.2ms | ActiveRecord: 0.8ms | Allocations: 11446)

 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course



ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:43:31.689555"], ["updated_at", "2020-04-22 06:43:31.689555"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


ContentRecommendation Load (0.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (5.6ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:31.951542"], ["updated_at", "2020-04-22 06:43:31.951542"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:31.964471"], ["updated_at", "2020-04-22 06:43:31.964471"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:31.971743"], ["updated_at", "2020-04-22 06:43:31.971743"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.8ms | Allocations: 154)

Completed 200 OK in 32ms (Views: 20.4ms | ActiveRecord: 2.2ms | Allocations: 2297)

 (2.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:43:32.204530"], ["updated_at", "2020-04-22 06:43:32.204530"]]
Bucket Create (3.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:43:32.218789"], ["updated_at", "2020-04-22 06:43:32.218789"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:43:32.229853"], ["updated_at", "2020-04-22 06:43:32.229853"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 10.9ms | Allocations: 487)

Completed 200 OK in 130ms (Views: 81.0ms | ActiveRecord: 1.2ms | Allocations: 4627)

 (11.7ms)  rollback transaction
 (9.4ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (4.7ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.6ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.6ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (44.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.7ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
Truncate Tables (46.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.5ms)  PRAGMA defer_foreign_keys = 0
 (0.5ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (5.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:43:59.529931', '2020-04-22 06:43:59.529931'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:43:59.529931', '2020-04-22 06:43:59.529931'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:43:59.550968', '2020-04-22 06:43:59.550968', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:43:59.550968', '2020-04-22 06:43:59.550968', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:43:59.561453', '2020-04-22 06:43:59.561453'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:59.561453', '2020-04-22 06:43:59.561453'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:59.584360', '2020-04-22 06:43:59.584360'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:59.584360', '2020-04-22 06:43:59.584360'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:43:59.601514', '2020-04-22 06:43:59.601514'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:43:59.601514', '2020-04-22 06:43:59.601514'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:43:59.608690', '2020-04-22 06:43:59.608690'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:43:59.608690', '2020-04-22 06:43:59.608690'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:43:59.630213', '2020-04-22 06:43:59.630213'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:59.630213', '2020-04-22 06:43:59.630213')

 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  begin transaction
Fixtures Load (4.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:43:59.542801', '2020-04-22 06:43:59.542801'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:43:59.542801', '2020-04-22 06:43:59.542801'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:43:59.577396', '2020-04-22 06:43:59.577396', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:43:59.577396', '2020-04-22 06:43:59.577396', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:43:59.596614', '2020-04-22 06:43:59.596614'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:59.596614', '2020-04-22 06:43:59.596614'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:59.609260', '2020-04-22 06:43:59.609260'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:43:59.609260', '2020-04-22 06:43:59.609260'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:43:59.621163', '2020-04-22 06:43:59.621163'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:43:59.621163', '2020-04-22 06:43:59.621163'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:43:59.634655', '2020-04-22 06:43:59.634655'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:43:59.634655', '2020-04-22 06:43:59.634655'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:43:59.654759', '2020-04-22 06:43:59.654759'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:43:59.654759', '2020-04-22 06:43:59.654759')

 (11.8ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (5.3ms)  commit transaction
 (0.8ms)  PRAGMA foreign_keys = 1
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction
 (0.3ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails



CourseTest: test_belongs_to_:vault_association


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.3ms)  rollback transaction
 (0.5ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 06:44:00.216848"], ["updated_at", "2020-04-22 06:44:00.216848"]]
 (0.3ms)  rollback transaction
 (1.4ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:44:00.550003"], ["updated_at", "2020-04-22 06:44:00.550003"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:00.902093"], ["updated_at", "2020-04-22 06:44:00.902093"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (7.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:01.017046"], ["updated_at", "2020-04-22 06:44:01.017046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:01.052584"], ["updated_at", "2020-04-22 06:44:01.052584"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (12.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:01.297170"], ["updated_at", "2020-04-22 06:44:01.297170"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (16.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.3ms)  rollback transaction
 (12.6ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.2ms)  rollback transaction
 (7.4ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (2.4ms)  SAVEPOINT active_record_1
Course Load (2.0ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (3.1ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:44:01.490547"], ["updated_at", "2020-04-22 06:44:01.490547"]]
Bucket Create (40.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:01.504122"], ["updated_at", "2020-04-22 06:44:01.504122"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (42.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:01.551355"], ["updated_at", "2020-04-22 06:44:01.551355"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (3.7ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:44:01.678791"], ["updated_at", "2020-04-22 06:44:01.678791"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:01.698131"], ["updated_at", "2020-04-22 06:44:01.698131"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:01.719791"], ["updated_at", "2020-04-22 06:44:01.719791"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (13.4ms)  rollback transaction
 (0.3ms)  begin transaction

UserTest: test_the_truth


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:01.767727"], ["updated_at", "2020-04-22 06:44:01.767727"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:01.829862"], ["updated_at", "2020-04-22 06:44:01.829862"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:01.933963"], ["updated_at", "2020-04-22 06:44:01.933963"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (10.6ms)  rollback transaction
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (40.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:01.972268"], ["updated_at", "2020-04-22 06:44:01.972268"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:02.021477"], ["updated_at", "2020-04-22 06:44:02.021477"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:02.035412"], ["updated_at", "2020-04-22 06:44:02.035412"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.4ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (10.9ms)  rollback transaction
 (0.2ms)  begin transaction

CoursesControllerTest: test_index


 (0.6ms)  SAVEPOINT active_record_1
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:03.336019"], ["updated_at", "2020-04-22 06:44:03.336019"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:03.355416"], ["updated_at", "2020-04-22 06:44:03.355416"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:03.367849"], ["updated_at", "2020-04-22 06:44:03.367849"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.7ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 80.6ms | Allocations: 668)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 871ms (Views: 748.3ms | ActiveRecord: 0.7ms | Allocations: 11478)

 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.3ms)  rollback transaction
 (0.5ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.3ms)  rollback transaction
 (0.5ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (5.4ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.3ms)  rollback transaction
 (0.6ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (3.0ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:44:04.726531"], ["updated_at", "2020-04-22 06:44:04.726531"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:04.736376"], ["updated_at", "2020-04-22 06:44:04.736376"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:04.744344"], ["updated_at", "2020-04-22 06:44:04.744344"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Load (1.8ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (11.5ms)  rollback transaction
 (1.2ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_lesson_valid


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (1.5ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:05.253228"], ["updated_at", "2020-04-22 06:44:05.253228"]]
Bucket Create (2.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.266490"], ["updated_at", "2020-04-22 06:44:05.266490"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.281393"], ["updated_at", "2020-04-22 06:44:05.281393"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Load (2.0ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (2.6ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:44:05.333778"], ["updated_at", "2020-04-22 06:44:05.333778"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (11.2ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.396646"], ["updated_at", "2020-04-22 06:44:05.396646"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.410855"], ["updated_at", "2020-04-22 06:44:05.410855"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (4.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.445468"], ["updated_at", "2020-04-22 06:44:05.445468"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.9ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:44:05.466792"], ["updated_at", "2020-04-22 06:44:05.466792"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (1.4ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:44:05.475966"], ["updated_at", "2020-04-22 06:44:05.475966"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Lesson Create (0.6ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:44:05.485262"], ["updated_at", "2020-04-22 06:44:05.485262"], ["track_id", 980190963]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.2ms)  SAVEPOINT active_record_1
Vault Create (1.9ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:44:05.559640"], ["updated_at", "2020-04-22 06:44:05.559640"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.572178"], ["updated_at", "2020-04-22 06:44:05.572178"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (2.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.587263"], ["updated_at", "2020-04-22 06:44:05.587263"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_validity


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.616177"], ["updated_at", "2020-04-22 06:44:05.616177"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.632088"], ["updated_at", "2020-04-22 06:44:05.632088"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.638681"], ["updated_at", "2020-04-22 06:44:05.638681"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.9ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (4.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  rollback transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  begin transaction

CommentTest: test_no_bucket_no_comment

Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.714187"], ["updated_at", "2020-04-22 06:44:05.714187"]]

 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.725150"], ["updated_at", "2020-04-22 06:44:05.725150"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.724941"], ["updated_at", "2020-04-22 06:44:05.724941"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.732009"], ["updated_at", "2020-04-22 06:44:05.732009"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.0ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Create (5.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.738287"], ["updated_at", "2020-04-22 06:44:05.738287"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.752567"], ["updated_at", "2020-04-22 06:44:05.752567"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (4.4ms)  rollback transaction
 (1.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.7ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (3.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.820466"], ["updated_at", "2020-04-22 06:44:05.820466"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.839137"], ["updated_at", "2020-04-22 06:44:05.839137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Review Create (0.4ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.852842"], ["updated_at", "2020-04-22 06:44:05.852842"]]
Comment Load (0.6ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (3.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.8ms)  rollback transaction
 (0.5ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.883456"], ["updated_at", "2020-04-22 06:44:05.883456"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.891615"], ["updated_at", "2020-04-22 06:44:05.891615"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Comment Create (3.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.898802"], ["updated_at", "2020-04-22 06:44:05.898802"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (4.7ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (6.3ms)  RELEASE SAVEPOINT active_record_1
 (2.7ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy

 (0.3ms)  SAVEPOINT active_record_1

Course Create (3.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.941699"], ["updated_at", "2020-04-22 06:44:05.941699"]]
 (5.4ms)  SAVEPOINT active_record_1
Course Create (4.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:05.947065"], ["updated_at", "2020-04-22 06:44:05.947065"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.965147"], ["updated_at", "2020-04-22 06:44:05.965147"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:05.979283"], ["updated_at", "2020-04-22 06:44:05.979283"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:05.988361"], ["updated_at", "2020-04-22 06:44:05.988361"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.001704"], ["updated_at", "2020-04-22 06:44:06.001704"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_associations


 (0.2ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_track_valid


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.3ms)  SAVEPOINT active_record_1
Course Create (4.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.158040"], ["updated_at", "2020-04-22 06:44:06.158040"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.171191"], ["updated_at", "2020-04-22 06:44:06.171191"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.184103"], ["updated_at", "2020-04-22 06:44:06.184103"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:06.181902"], ["updated_at", "2020-04-22 06:44:06.181902"]]
 (2.9ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.194607"], ["updated_at", "2020-04-22 06:44:06.194607"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Recording Create (1.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.204375"], ["updated_at", "2020-04-22 06:44:06.204375"]]
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.3ms)  SAVEPOINT active_record_1
 (2.9ms)  rollback transaction
Track Create (2.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:44:06.214821"], ["updated_at", "2020-04-22 06:44:06.214821"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:44:06.228579"], ["updated_at", "2020-04-22 06:44:06.228579"]]
 (0.2ms)  begin transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.237527"], ["updated_at", "2020-04-22 06:44:06.237527"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]

SearchableTest: test_find_all_matches_classes


Recording Create (3.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.244081"], ["updated_at", "2020-04-22 06:44:06.244081"]]
 (0.3ms)  SAVEPOINT active_record_1
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.244417"], ["updated_at", "2020-04-22 06:44:06.244417"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.264144"], ["updated_at", "2020-04-22 06:44:06.264144"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 06:44:06.262728"], ["updated_at", "2020-04-22 06:44:06.262728"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.4ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.271244"], ["updated_at", "2020-04-22 06:44:06.271244"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.4ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.286863"], ["updated_at", "2020-04-22 06:44:06.286863"]]
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_matches_classes


Bucket Create (2.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.300172"], ["updated_at", "2020-04-22 06:44:06.300172"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.307224"], ["updated_at", "2020-04-22 06:44:06.307224"]]
Recording Create (21.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.309502"], ["updated_at", "2020-04-22 06:44:06.309502"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.333029"], ["updated_at", "2020-04-22 06:44:06.333029"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.346799"], ["updated_at", "2020-04-22 06:44:06.346799"]]
 (1.0ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (2.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.8ms)  rollback transaction
Course Load (3.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.6ms)  rollback transaction
 (0.4ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.6ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.401041"], ["updated_at", "2020-04-22 06:44:06.401041"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.410501"], ["updated_at", "2020-04-22 06:44:06.410501"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
ContentRecommendation Load (0.9ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.419091"], ["updated_at", "2020-04-22 06:44:06.419091"]]
 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  begin transaction
Course Load (1.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (2.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (1.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.1ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:44:06.559823"], ["updated_at", "2020-04-22 06:44:06.559823"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.3ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.640911"], ["updated_at", "2020-04-22 06:44:06.640911"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.656541"], ["updated_at", "2020-04-22 06:44:06.656541"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.671553"], ["updated_at", "2020-04-22 06:44:06.671553"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (8.4ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:44:06.717009"], ["updated_at", "2020-04-22 06:44:06.717009"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.4ms | Allocations: 151)

Completed 200 OK in 57ms (Views: 45.5ms | ActiveRecord: 1.0ms | Allocations: 2302)

ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 02093c3a-365c-44ad-9698-207d8294527e) to Async(default)

 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (1.9ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:44:06.771071"], ["updated_at", "2020-04-22 06:44:06.771071"]]
Bucket Create (2.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:44:06.792951"], ["updated_at", "2020-04-22 06:44:06.792951"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:44:06.801573"], ["updated_at", "2020-04-22 06:44:06.801573"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.3ms | Allocations: 8)

Completed 200 OK in 18ms (Views: 3.0ms | ActiveRecord: 1.5ms | Allocations: 673)

 (6.5ms)  rollback transaction
 (4.2ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (8.7ms)  SELECT sqlite_version(*)
 (0.7ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (2.3ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  PRAGMA foreign_keys
 (0.5ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (53.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
Truncate Tables (147.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.2ms)  PRAGMA foreign_keys = 1
 (0.4ms)  PRAGMA foreign_keys
 (0.5ms)  PRAGMA defer_foreign_keys
 (0.5ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (5.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:45:34.984812', '2020-04-22 06:45:34.984812'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:45:34.984812', '2020-04-22 06:45:34.984812'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:45:35.012710', '2020-04-22 06:45:35.012710', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:45:35.012710', '2020-04-22 06:45:35.012710', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:45:35.024863', '2020-04-22 06:45:35.024863'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:35.024863', '2020-04-22 06:45:35.024863'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:35.037869', '2020-04-22 06:45:35.037869'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:35.037869', '2020-04-22 06:45:35.037869'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:45:35.063486', '2020-04-22 06:45:35.063486'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:45:35.063486', '2020-04-22 06:45:35.063486'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:45:35.070733', '2020-04-22 06:45:35.070733'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:45:35.070733', '2020-04-22 06:45:35.070733'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:45:35.079831', '2020-04-22 06:45:35.079831'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:35.079831', '2020-04-22 06:45:35.079831')

 (11.5ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

UserTest: test_the_truth


 (0.5ms)  rollback transaction
 (8.5ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.5ms)  SELECT sqlite_version(*)
 (3.6ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.7ms)  PRAGMA foreign_keys = OFF
Truncate Tables (68.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
Truncate Tables (73.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.4ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (1.2ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.5ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
 (0.3ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
Fixtures Load (5.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:45:59.563524', '2020-04-22 06:45:59.563524'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:45:59.563524', '2020-04-22 06:45:59.563524'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:45:59.578091', '2020-04-22 06:45:59.578091', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:45:59.578091', '2020-04-22 06:45:59.578091', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:45:59.586588', '2020-04-22 06:45:59.586588'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:59.586588', '2020-04-22 06:45:59.586588'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:59.599951', '2020-04-22 06:45:59.599951'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:59.599951', '2020-04-22 06:45:59.599951'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:45:59.618498', '2020-04-22 06:45:59.618498'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:45:59.618498', '2020-04-22 06:45:59.618498'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:45:59.625464', '2020-04-22 06:45:59.625464'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:45:59.625464', '2020-04-22 06:45:59.625464'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:45:59.631148', '2020-04-22 06:45:59.631148'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:59.631148', '2020-04-22 06:45:59.631148')

 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
 (4.3ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction
Fixtures Load (4.9ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:45:59.565850', '2020-04-22 06:45:59.565850'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:45:59.565850', '2020-04-22 06:45:59.565850'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:45:59.586594', '2020-04-22 06:45:59.586594', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:45:59.586594', '2020-04-22 06:45:59.586594', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:45:59.592092', '2020-04-22 06:45:59.592092'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:59.592092', '2020-04-22 06:45:59.592092'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:59.614635', '2020-04-22 06:45:59.614635'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:45:59.614635', '2020-04-22 06:45:59.614635'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:45:59.624821', '2020-04-22 06:45:59.624821'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:45:59.624821', '2020-04-22 06:45:59.624821'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:45:59.633091', '2020-04-22 06:45:59.633091'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:45:59.633091', '2020-04-22 06:45:59.633091'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:45:59.639949', '2020-04-22 06:45:59.639949'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:45:59.639949', '2020-04-22 06:45:59.639949')


RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (5.7ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.5ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:45:59.799733"], ["updated_at", "2020-04-22 06:45:59.799733"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:45:59.889318"], ["updated_at", "2020-04-22 06:45:59.889318"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:45:59.900802"], ["updated_at", "2020-04-22 06:45:59.900802"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:45:59.953565"], ["updated_at", "2020-04-22 06:45:59.953565"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:45:59.960738"], ["updated_at", "2020-04-22 06:45:59.960738"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Load (0.4ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.5ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_associations


Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.041592"], ["updated_at", "2020-04-22 06:46:00.041592"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:00.052220"], ["updated_at", "2020-04-22 06:46:00.052220"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
 (1.5ms)  SAVEPOINT active_record_1
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.061884"], ["updated_at", "2020-04-22 06:46:00.061884"]]
 (0.2ms)  begin transaction
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.073102"], ["updated_at", "2020-04-22 06:46:00.073102"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]

TrackTest: test_track_valid


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.082708"], ["updated_at", "2020-04-22 06:46:00.082708"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 06:46:00.099589"], ["updated_at", "2020-04-22 06:46:00.099589"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (3.0ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  rollback transaction

VaultTest: test_has_many_:courses_association


 (2.7ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.183512"], ["updated_at", "2020-04-22 06:46:00.183512"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.205031"], ["updated_at", "2020-04-22 06:46:00.205031"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.4ms)  SAVEPOINT active_record_1
Vault Create (4.0ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:46:00.206691"], ["updated_at", "2020-04-22 06:46:00.206691"]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.212008"], ["updated_at", "2020-04-22 06:46:00.212008"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.218975"], ["updated_at", "2020-04-22 06:46:00.218975"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.226184"], ["updated_at", "2020-04-22 06:46:00.226184"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.246108"], ["updated_at", "2020-04-22 06:46:00.246108"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.255594"], ["updated_at", "2020-04-22 06:46:00.255594"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Load (0.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.267924"], ["updated_at", "2020-04-22 06:46:00.267924"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (1.6ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.405021"], ["updated_at", "2020-04-22 06:46:00.405021"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.420097"], ["updated_at", "2020-04-22 06:46:00.420097"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.433141"], ["updated_at", "2020-04-22 06:46:00.433141"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (2.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Load (0.4ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (5.2ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_created_success


 (1.1ms)  SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.489909"], ["updated_at", "2020-04-22 06:46:00.489909"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.506066"], ["updated_at", "2020-04-22 06:46:00.506066"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.522094"], ["updated_at", "2020-04-22 06:46:00.522094"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (5.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.4ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (1.7ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
 (2.3ms)  rollback transaction
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.583217"], ["updated_at", "2020-04-22 06:46:00.583217"]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.585695"], ["updated_at", "2020-04-22 06:46:00.585695"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.592012"], ["updated_at", "2020-04-22 06:46:00.592012"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.595604"], ["updated_at", "2020-04-22 06:46:00.595604"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.605774"], ["updated_at", "2020-04-22 06:46:00.605774"]]
 (1.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.605804"], ["updated_at", "2020-04-22 06:46:00.605804"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (7.7ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.4ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:00.665662"], ["updated_at", "2020-04-22 06:46:00.665662"]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.677982"], ["updated_at", "2020-04-22 06:46:00.677982"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.8ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.685027"], ["updated_at", "2020-04-22 06:46:00.685027"]]
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (4.2ms)  rollback transaction
 (0.3ms)  begin transaction
 (0.7ms)  SELECT "buckets"."bucketable_type" FROM "buckets"

SearchableTest: test_find_catchall_matches_classes


 (0.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.724953"], ["updated_at", "2020-04-22 06:46:00.724953"]]
 (0.2ms)  begin transaction

SearchableTest: test_find_none_matches_classes


Bucket Create (4.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.738472"], ["updated_at", "2020-04-22 06:46:00.738472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.751488"], ["updated_at", "2020-04-22 06:46:00.751488"]]
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Create (7.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.750245"], ["updated_at", "2020-04-22 06:46:00.750245"]]
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.768298"], ["updated_at", "2020-04-22 06:46:00.768298"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (2.0ms)  rollback transaction
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.779610"], ["updated_at", "2020-04-22 06:46:00.779610"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


Course Load (1.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Create (3.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.797085"], ["updated_at", "2020-04-22 06:46:00.797085"]]
 (11.2ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.811169"], ["updated_at", "2020-04-22 06:46:00.811169"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.3ms)  SAVEPOINT active_record_1
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.824053"], ["updated_at", "2020-04-22 06:46:00.824053"]]
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.841990"], ["updated_at", "2020-04-22 06:46:00.841990"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.853215"], ["updated_at", "2020-04-22 06:46:00.853215"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (4.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.875171"], ["updated_at", "2020-04-22 06:46:00.875171"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

SearchableTest: test_find_all_matches_classes


 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.912314"], ["updated_at", "2020-04-22 06:46:00.912314"]]
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.0ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.925048"], ["updated_at", "2020-04-22 06:46:00.925048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.5ms)  rollback transaction
Recording Create (2.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.934449"], ["updated_at", "2020-04-22 06:46:00.934449"]]
 (0.2ms)  begin transaction
 (0.3ms)  RELEASE SAVEPOINT active_record_1

 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.9ms)  SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.5ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


Course Create (7.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:00.955567"], ["updated_at", "2020-04-22 06:46:00.955567"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:00.975836"], ["updated_at", "2020-04-22 06:46:00.975836"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:00.985716"], ["updated_at", "2020-04-22 06:46:00.985716"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (4.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
ContentRecommendation Load (4.2ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (1.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (6.2ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:46:01.287728"], ["updated_at", "2020-04-22 06:46:01.287728"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (19.0ms)  rollback transaction
 (2.9ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


ContentRecommendation Create (3.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:46:01.308990"], ["updated_at", "2020-04-22 06:46:01.308990"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 7c123f66-7129-4471-9cbd-845f1d1a415c) to Async(default)

 (0.6ms)  SELECT COUNT(*) FROM "content_recommendations"
 (1.8ms)  rollback transaction
 (3.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

CoursesControllerTest: test_index


 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.7ms)  rollback transaction
 (0.4ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (1.0ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 06:46:01.496062"], ["updated_at", "2020-04-22 06:46:01.496062"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:01.507635"], ["updated_at", "2020-04-22 06:46:01.507635"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:01.527334"], ["updated_at", "2020-04-22 06:46:01.527334"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.8ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.3ms)  begin transaction

UserTest: test_the_truth


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.3ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.4ms)  rollback transaction
 (0.7ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.7ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  SAVEPOINT active_record_1
Course Load (1.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (5.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:01.706473"], ["updated_at", "2020-04-22 06:46:01.706473"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:01.719426"], ["updated_at", "2020-04-22 06:46:01.719426"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:01.727013"], ["updated_at", "2020-04-22 06:46:01.727013"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.6ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (5.5ms)  rollback transaction
 (1.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.8ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:01.763126"], ["updated_at", "2020-04-22 06:46:01.763126"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:01.771642"], ["updated_at", "2020-04-22 06:46:01.771642"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:01.786731"], ["updated_at", "2020-04-22 06:46:01.786731"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (1.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.9ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:01.843577"], ["updated_at", "2020-04-22 06:46:01.843577"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:01.853003"], ["updated_at", "2020-04-22 06:46:01.853003"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:01.870435"], ["updated_at", "2020-04-22 06:46:01.870435"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.3ms)  SAVEPOINT active_record_1
Course Create (5.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:01.972747"], ["updated_at", "2020-04-22 06:46:01.972747"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:01.993061"], ["updated_at", "2020-04-22 06:46:01.993061"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.002431"], ["updated_at", "2020-04-22 06:46:02.002431"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.4ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 8.1ms | Allocations: 660)
ActiveJob
CourseRecommendationMailerJob
7c123f66-7129-4471-9cbd-845f1d1a415c

Performing CourseRecommendationMailerJob (Job ID: 7c123f66-7129-4471-9cbd-845f1d1a415c) from Async(default) enqueued at 2020-04-22T06:46:01Z

ActiveJob
CourseRecommendationMailerJob
7c123f66-7129-4471-9cbd-845f1d1a415c

Performed CourseRecommendationMailerJob (Job ID: 7c123f66-7129-4471-9cbd-845f1d1a415c) from Async(default) in 0.42ms

Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 265ms (Views: 241.3ms | ActiveRecord: 0.4ms | Allocations: 11095)

 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (2.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:02.419655"], ["updated_at", "2020-04-22 06:46:02.419655"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:02.434238"], ["updated_at", "2020-04-22 06:46:02.434238"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.442028"], ["updated_at", "2020-04-22 06:46:02.442028"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.5ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.4ms)  SAVEPOINT active_record_1
Course Create (4.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:02.489015"], ["updated_at", "2020-04-22 06:46:02.489015"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:02.501849"], ["updated_at", "2020-04-22 06:46:02.501849"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.509740"], ["updated_at", "2020-04-22 06:46:02.509740"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 2.9ms | Allocations: 154)

Completed 200 OK in 89ms (Views: 70.8ms | ActiveRecord: 1.0ms | Allocations: 2297)

 (2.3ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:02.639394"], ["updated_at", "2020-04-22 06:46:02.639394"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:02.653785"], ["updated_at", "2020-04-22 06:46:02.653785"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.661378"], ["updated_at", "2020-04-22 06:46:02.661378"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 5)

Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 0.9ms | Allocations: 679)

 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:02.752441"], ["updated_at", "2020-04-22 06:46:02.752441"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:02.763898"], ["updated_at", "2020-04-22 06:46:02.763898"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.769296"], ["updated_at", "2020-04-22 06:46:02.769296"]]
 (1.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Track Create (1.1ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:02.784267"], ["updated_at", "2020-04-22 06:46:02.784267"]]
 (5.9ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (0.9ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:46:02.801558"], ["updated_at", "2020-04-22 06:46:02.801558"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (1.2ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:46:02.809298"], ["updated_at", "2020-04-22 06:46:02.809298"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (1.0ms)  begin transaction

LessonTest: test_lesson_valid


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:02.856191"], ["updated_at", "2020-04-22 06:46:02.856191"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:02.865133"], ["updated_at", "2020-04-22 06:46:02.865133"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:02.873993"], ["updated_at", "2020-04-22 06:46:02.873993"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (1.2ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:02.888651"], ["updated_at", "2020-04-22 06:46:02.888651"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.2ms)  rollback transaction
 (0.2ms)  rollback transaction
 (5.6ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (3.2ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (1.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.7ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.9ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (83.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (62.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (1.3ms)  PRAGMA defer_foreign_keys = 0
 (1.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.9ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (2.3ms)  begin transaction
 (0.3ms)  PRAGMA foreign_keys
 (0.6ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
Fixtures Load (7.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:46:45.493276', '2020-04-22 06:46:45.493276'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:46:45.493276', '2020-04-22 06:46:45.493276'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:46:45.510560', '2020-04-22 06:46:45.510560', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:46:45.510560', '2020-04-22 06:46:45.510560', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:46:45.521273', '2020-04-22 06:46:45.521273'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:46:45.521273', '2020-04-22 06:46:45.521273'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:46:45.533723', '2020-04-22 06:46:45.533723'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:46:45.533723', '2020-04-22 06:46:45.533723'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:46:45.539476', '2020-04-22 06:46:45.539476'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:46:45.539476', '2020-04-22 06:46:45.539476'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:46:45.545254', '2020-04-22 06:46:45.545254'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:46:45.545254', '2020-04-22 06:46:45.545254'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:46:45.556731', '2020-04-22 06:46:45.556731'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:46:45.556731', '2020-04-22 06:46:45.556731')

 (1.1ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (3.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:46:45.508018', '2020-04-22 06:46:45.508018'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:46:45.508018', '2020-04-22 06:46:45.508018'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:46:45.521842', '2020-04-22 06:46:45.521842', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:46:45.521842', '2020-04-22 06:46:45.521842', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:46:45.533441', '2020-04-22 06:46:45.533441'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:46:45.533441', '2020-04-22 06:46:45.533441'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:46:45.542169', '2020-04-22 06:46:45.542169'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:46:45.542169', '2020-04-22 06:46:45.542169'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:46:45.548534', '2020-04-22 06:46:45.548534'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:46:45.548534', '2020-04-22 06:46:45.548534'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:46:45.559379', '2020-04-22 06:46:45.559379'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:46:45.559379', '2020-04-22 06:46:45.559379'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:46:45.569277', '2020-04-22 06:46:45.569277'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:46:45.569277', '2020-04-22 06:46:45.569277')

 (7.3ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (15.6ms)  commit transaction
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.6ms)  begin transaction
 (0.2ms)  begin transaction


Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:45.771725"], ["updated_at", "2020-04-22 06:46:45.771725"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:45.801450"], ["updated_at", "2020-04-22 06:46:45.801450"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:45.856879"], ["updated_at", "2020-04-22 06:46:45.856879"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:45.875875"], ["updated_at", "2020-04-22 06:46:45.875875"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:45.924507"], ["updated_at", "2020-04-22 06:46:45.924507"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:45.935261"], ["updated_at", "2020-04-22 06:46:45.935261"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.4ms)  rollback transaction
 (9.5ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.4ms)  rollback transaction
 (1.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:46.016824"], ["updated_at", "2020-04-22 06:46:46.016824"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.025627"], ["updated_at", "2020-04-22 06:46:46.025627"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.032943"], ["updated_at", "2020-04-22 06:46:46.032943"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.161001"], ["updated_at", "2020-04-22 06:46:46.161001"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.169770"], ["updated_at", "2020-04-22 06:46:46.169770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.182787"], ["updated_at", "2020-04-22 06:46:46.182787"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.9ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:46.220467"], ["updated_at", "2020-04-22 06:46:46.220467"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.8ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:46:46.234548"], ["updated_at", "2020-04-22 06:46:46.234548"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (1.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:46:46.240523"], ["updated_at", "2020-04-22 06:46:46.240523"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:46.269458"], ["updated_at", "2020-04-22 06:46:46.269458"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.276629"], ["updated_at", "2020-04-22 06:46:46.276629"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.286543"], ["updated_at", "2020-04-22 06:46:46.286543"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Load (1.2ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (1.6ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:46.322627"], ["updated_at", "2020-04-22 06:46:46.322627"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (8.8ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_lesson_valid


 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.4ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.397124"], ["updated_at", "2020-04-22 06:46:46.397124"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.409764"], ["updated_at", "2020-04-22 06:46:46.409764"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.420373"], ["updated_at", "2020-04-22 06:46:46.420373"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (9.5ms)  rollback transaction
 (1.4ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.515837"], ["updated_at", "2020-04-22 06:46:46.515837"]]
Bucket Create (5.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.524302"], ["updated_at", "2020-04-22 06:46:46.524302"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.536491"], ["updated_at", "2020-04-22 06:46:46.536491"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.9ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.3ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.576453"], ["updated_at", "2020-04-22 06:46:46.576453"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.583964"], ["updated_at", "2020-04-22 06:46:46.583964"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.590754"], ["updated_at", "2020-04-22 06:46:46.590754"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.4ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.8ms)  begin transaction

CommentTest: test_comment_validity


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.627748"], ["updated_at", "2020-04-22 06:46:46.627748"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.636839"], ["updated_at", "2020-04-22 06:46:46.636839"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.641613"], ["updated_at", "2020-04-22 06:46:46.641613"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.2ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (1.6ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.692483"], ["updated_at", "2020-04-22 06:46:46.692483"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.702752"], ["updated_at", "2020-04-22 06:46:46.702752"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.708694"], ["updated_at", "2020-04-22 06:46:46.708694"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Review Create (0.5ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_created_success


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.796295"], ["updated_at", "2020-04-22 06:46:46.796295"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.803544"], ["updated_at", "2020-04-22 06:46:46.803544"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.810940"], ["updated_at", "2020-04-22 06:46:46.810940"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (3.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (1.8ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:46.864547"], ["updated_at", "2020-04-22 06:46:46.864547"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.875445"], ["updated_at", "2020-04-22 06:46:46.875445"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.881855"], ["updated_at", "2020-04-22 06:46:46.881855"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.0ms)  SAVEPOINT active_record_1
Comment Create (1.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.4ms)  SAVEPOINT active_record_1
Vault Create (3.5ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:46:46.965971"], ["updated_at", "2020-04-22 06:46:46.965971"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:46.977543"], ["updated_at", "2020-04-22 06:46:46.977543"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:46.990980"], ["updated_at", "2020-04-22 06:46:46.990980"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.3ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:47.361460"], ["updated_at", "2020-04-22 06:46:47.361460"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.368489"], ["updated_at", "2020-04-22 06:46:47.368489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.372981"], ["updated_at", "2020-04-22 06:46:47.372981"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 5.3ms | Allocations: 445)

Completed 200 OK in 71ms (Views: 34.1ms | ActiveRecord: 1.1ms | Allocations: 5624)

 (9.3ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:47.486244"], ["updated_at", "2020-04-22 06:46:47.486244"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.496240"], ["updated_at", "2020-04-22 06:46:47.496240"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.503083"], ["updated_at", "2020-04-22 06:46:47.503083"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.1ms | Allocations: 5)

Completed 200 OK in 8ms (Views: 2.3ms | ActiveRecord: 0.7ms | Allocations: 679)

 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_associations


 (0.2ms)  rollback transaction
 (1.4ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (3.0ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:47.590002"], ["updated_at", "2020-04-22 06:46:47.590002"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.602162"], ["updated_at", "2020-04-22 06:46:47.602162"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (12.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.606920"], ["updated_at", "2020-04-22 06:46:47.606920"]]
 (1.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (1.0ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:46:47.631223"], ["updated_at", "2020-04-22 06:46:47.631223"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:46:47.640765"], ["updated_at", "2020-04-22 06:46:47.640765"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.649378"], ["updated_at", "2020-04-22 06:46:47.649378"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.654648"], ["updated_at", "2020-04-22 06:46:47.654648"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Track Create (0.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 06:46:47.660310"], ["updated_at", "2020-04-22 06:46:47.660310"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_track_valid


 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

UserTest: test_the_truth


 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.4ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 06:46:47.902954"], ["updated_at", "2020-04-22 06:46:47.902954"]]
Bucket Create (1.3ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.909538"], ["updated_at", "2020-04-22 06:46:47.909538"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (3.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.916238"], ["updated_at", "2020-04-22 06:46:47.916238"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:47.952633"], ["updated_at", "2020-04-22 06:46:47.952633"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.962427"], ["updated_at", "2020-04-22 06:46:47.962427"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:47.969831"], ["updated_at", "2020-04-22 06:46:47.969831"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.5ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:47.990169"], ["updated_at", "2020-04-22 06:46:47.990169"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:47.996914"], ["updated_at", "2020-04-22 06:46:47.996914"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.001336"], ["updated_at", "2020-04-22 06:46:48.001336"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.037913"], ["updated_at", "2020-04-22 06:46:48.037913"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.044679"], ["updated_at", "2020-04-22 06:46:48.044679"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.058810"], ["updated_at", "2020-04-22 06:46:48.058810"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.091117"], ["updated_at", "2020-04-22 06:46:48.091117"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.100621"], ["updated_at", "2020-04-22 06:46:48.100621"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.105783"], ["updated_at", "2020-04-22 06:46:48.105783"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.3ms)  SAVEPOINT active_record_1
Course Create (7.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.125564"], ["updated_at", "2020-04-22 06:46:48.125564"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.141610"], ["updated_at", "2020-04-22 06:46:48.141610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.150202"], ["updated_at", "2020-04-22 06:46:48.150202"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.178217"], ["updated_at", "2020-04-22 06:46:48.178217"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.188025"], ["updated_at", "2020-04-22 06:46:48.188025"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.192071"], ["updated_at", "2020-04-22 06:46:48.192071"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.9ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (1.1ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.6ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:46:48.278117"], ["updated_at", "2020-04-22 06:46:48.278117"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 3b524436-82b7-4de2-9bf1-d5f02f007668) to Async(default)

 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (9.1ms)  rollback transaction
 (0.4ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (1.0ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:46:48.405316"], ["updated_at", "2020-04-22 06:46:48.405316"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:46:48.556250"], ["updated_at", "2020-04-22 06:46:48.556250"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.566126"], ["updated_at", "2020-04-22 06:46:48.566126"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.574278"], ["updated_at", "2020-04-22 06:46:48.574278"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.7ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (7.0ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
3b524436-82b7-4de2-9bf1-d5f02f007668

Performing CourseRecommendationMailerJob (Job ID: 3b524436-82b7-4de2-9bf1-d5f02f007668) from Async(default) enqueued at 2020-04-22T06:46:48Z

ActiveJob
CourseRecommendationMailerJob
3b524436-82b7-4de2-9bf1-d5f02f007668

Performed CourseRecommendationMailerJob (Job ID: 3b524436-82b7-4de2-9bf1-d5f02f007668) from Async(default) in 0.29ms

 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.771582"], ["updated_at", "2020-04-22 06:46:48.771582"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.778670"], ["updated_at", "2020-04-22 06:46:48.778670"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.800381"], ["updated_at", "2020-04-22 06:46:48.800381"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (9.6ms)  rollback transaction
 (0.2ms)  begin transaction

CoursesControllerTest: test_index


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:46:48.911826"], ["updated_at", "2020-04-22 06:46:48.911826"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:46:48.921688"], ["updated_at", "2020-04-22 06:46:48.921688"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:46:48.928454"], ["updated_at", "2020-04-22 06:46:48.928454"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.5ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 3.0ms | Allocations: 364)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 144ms (Views: 141.6ms | ActiveRecord: 0.5ms | Allocations: 8551)

 (0.9ms)  rollback transaction
 (0.3ms)  rollback transaction
 (3.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (41.0ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (47.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Fixtures Load (4.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:52:23.196739', '2020-04-22 06:52:23.196739'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:52:23.196739', '2020-04-22 06:52:23.196739'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:52:23.206805', '2020-04-22 06:52:23.206805', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:52:23.206805', '2020-04-22 06:52:23.206805', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:52:23.214289', '2020-04-22 06:52:23.214289'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:52:23.214289', '2020-04-22 06:52:23.214289'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:52:23.229630', '2020-04-22 06:52:23.229630'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:52:23.229630', '2020-04-22 06:52:23.229630'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:52:23.235429', '2020-04-22 06:52:23.235429'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:52:23.235429', '2020-04-22 06:52:23.235429'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:52:23.242689', '2020-04-22 06:52:23.242689'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:52:23.242689', '2020-04-22 06:52:23.242689'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:52:23.249821', '2020-04-22 06:52:23.249821'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:52:23.249821', '2020-04-22 06:52:23.249821')

 (3.4ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Fixtures Load (4.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:52:23.224659', '2020-04-22 06:52:23.224659'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:52:23.224659', '2020-04-22 06:52:23.224659'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:52:23.239643', '2020-04-22 06:52:23.239643', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:52:23.239643', '2020-04-22 06:52:23.239643', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:52:23.246828', '2020-04-22 06:52:23.246828'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:52:23.246828', '2020-04-22 06:52:23.246828'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:52:23.257139', '2020-04-22 06:52:23.257139'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:52:23.257139', '2020-04-22 06:52:23.257139'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:52:23.266747', '2020-04-22 06:52:23.266747'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:52:23.266747', '2020-04-22 06:52:23.266747'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:52:23.274843', '2020-04-22 06:52:23.274843'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:52:23.274843', '2020-04-22 06:52:23.274843'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:52:23.283534', '2020-04-22 06:52:23.283534'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:52:23.283534', '2020-04-22 06:52:23.283534')

 (3.3ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.8ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:52:23.399233"], ["updated_at", "2020-04-22 06:52:23.399233"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:23.499190"], ["updated_at", "2020-04-22 06:52:23.499190"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:23.566571"], ["updated_at", "2020-04-22 06:52:23.566571"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (11.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:52:23.645905"], ["updated_at", "2020-04-22 06:52:23.645905"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:23.655063"], ["updated_at", "2020-04-22 06:52:23.655063"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:23.664662"], ["updated_at", "2020-04-22 06:52:23.664662"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:52:23.689341"], ["updated_at", "2020-04-22 06:52:23.689341"]]
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:23.701478"], ["updated_at", "2020-04-22 06:52:23.701478"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:23.710965"], ["updated_at", "2020-04-22 06:52:23.710965"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

CoursesControllerTest: test_index


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:24.126686"], ["updated_at", "2020-04-22 06:52:24.126686"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.135233"], ["updated_at", "2020-04-22 06:52:24.135233"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.141283"], ["updated_at", "2020-04-22 06:52:24.141283"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

Rendering courses/index.html.erb within layouts/application
Course Load (0.9ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 9.0ms | Allocations: 645)
Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 166ms (Views: 147.7ms | ActiveRecord: 0.9ms | Allocations: 11360)

 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association


 (0.3ms)  SAVEPOINT active_record_1
Vault Create (1.7ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 06:52:24.374087"], ["updated_at", "2020-04-22 06:52:24.374087"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.385380"], ["updated_at", "2020-04-22 06:52:24.385380"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.393250"], ["updated_at", "2020-04-22 06:52:24.393250"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (2.0ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.410043"], ["updated_at", "2020-04-22 06:52:24.410043"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.417116"], ["updated_at", "2020-04-22 06:52:24.417116"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.421778"], ["updated_at", "2020-04-22 06:52:24.421778"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.3ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.5ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.519195"], ["updated_at", "2020-04-22 06:52:24.519195"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.528173"], ["updated_at", "2020-04-22 06:52:24.528173"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.536294"], ["updated_at", "2020-04-22 06:52:24.536294"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (12.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.584342"], ["updated_at", "2020-04-22 06:52:24.584342"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.599569"], ["updated_at", "2020-04-22 06:52:24.599569"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.609207"], ["updated_at", "2020-04-22 06:52:24.609207"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.7ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.6ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.644342"], ["updated_at", "2020-04-22 06:52:24.644342"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.650658"], ["updated_at", "2020-04-22 06:52:24.650658"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.656131"], ["updated_at", "2020-04-22 06:52:24.656131"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.691897"], ["updated_at", "2020-04-22 06:52:24.691897"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.698273"], ["updated_at", "2020-04-22 06:52:24.698273"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.702386"], ["updated_at", "2020-04-22 06:52:24.702386"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.1ms)  rollback transaction
 (0.4ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.726520"], ["updated_at", "2020-04-22 06:52:24.726520"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.732640"], ["updated_at", "2020-04-22 06:52:24.732640"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.737629"], ["updated_at", "2020-04-22 06:52:24.737629"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.6ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.8ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.764524"], ["updated_at", "2020-04-22 06:52:24.764524"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.774949"], ["updated_at", "2020-04-22 06:52:24.774949"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.785717"], ["updated_at", "2020-04-22 06:52:24.785717"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_track_valid


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.872857"], ["updated_at", "2020-04-22 06:52:24.872857"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.880064"], ["updated_at", "2020-04-22 06:52:24.880064"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.887201"], ["updated_at", "2020-04-22 06:52:24.887201"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Track Create (0.7ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:52:24.894367"], ["updated_at", "2020-04-22 06:52:24.894367"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Course Create (0.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:24.899422"], ["updated_at", "2020-04-22 06:52:24.899422"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.904667"], ["updated_at", "2020-04-22 06:52:24.904667"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
Recording Create (0.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.908678"], ["updated_at", "2020-04-22 06:52:24.908678"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Track Create (0.3ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 06:52:24.913035"], ["updated_at", "2020-04-22 06:52:24.913035"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.4ms)  rollback transaction
 (0.1ms)  begin transaction

TrackTest: test_associations


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.4ms)  SAVEPOINT active_record_1
Course Create (3.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:24.951523"], ["updated_at", "2020-04-22 06:52:24.951523"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:24.961489"], ["updated_at", "2020-04-22 06:52:24.961489"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:24.968394"], ["updated_at", "2020-04-22 06:52:24.968394"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.4ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Load (0.2ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

UserTest: test_the_truth


 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:24.997909"], ["updated_at", "2020-04-22 06:52:24.997909"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.005112"], ["updated_at", "2020-04-22 06:52:25.005112"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.014984"], ["updated_at", "2020-04-22 06:52:25.014984"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


 (0.4ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.039081"], ["updated_at", "2020-04-22 06:52:25.039081"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.046941"], ["updated_at", "2020-04-22 06:52:25.046941"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.051222"], ["updated_at", "2020-04-22 06:52:25.051222"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (1.1ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.071811"], ["updated_at", "2020-04-22 06:52:25.071811"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.079078"], ["updated_at", "2020-04-22 06:52:25.079078"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.083469"], ["updated_at", "2020-04-22 06:52:25.083469"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.104021"], ["updated_at", "2020-04-22 06:52:25.104021"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.115046"], ["updated_at", "2020-04-22 06:52:25.115046"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.120291"], ["updated_at", "2020-04-22 06:52:25.120291"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.1ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.3ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.138456"], ["updated_at", "2020-04-22 06:52:25.138456"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.146823"], ["updated_at", "2020-04-22 06:52:25.146823"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.151821"], ["updated_at", "2020-04-22 06:52:25.151821"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.5ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.185486"], ["updated_at", "2020-04-22 06:52:25.185486"]]
Bucket Create (1.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.194176"], ["updated_at", "2020-04-22 06:52:25.194176"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.203743"], ["updated_at", "2020-04-22 06:52:25.203743"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 1.4ms | Allocations: 149)

Completed 200 OK in 25ms (Views: 16.8ms | ActiveRecord: 0.9ms | Allocations: 2300)

 (1.8ms)  rollback transaction
 (0.3ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.9ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.265228"], ["updated_at", "2020-04-22 06:52:25.265228"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.282960"], ["updated_at", "2020-04-22 06:52:25.282960"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.289778"], ["updated_at", "2020-04-22 06:52:25.289778"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.2ms | Allocations: 8)

Completed 200 OK in 8ms (Views: 2.0ms | ActiveRecord: 0.7ms | Allocations: 673)

 (1.5ms)  rollback transaction
 (0.3ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.6ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.5ms)  rollback transaction
 (1.7ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:25.341900"], ["updated_at", "2020-04-22 06:52:25.341900"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.357524"], ["updated_at", "2020-04-22 06:52:25.357524"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.366255"], ["updated_at", "2020-04-22 06:52:25.366255"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 06:52:25.401105"], ["updated_at", "2020-04-22 06:52:25.401105"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.416904"], ["updated_at", "2020-04-22 06:52:25.416904"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.424492"], ["updated_at", "2020-04-22 06:52:25.424492"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.7ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.7ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.4ms)  SAVEPOINT active_record_1
ContentRecommendation Create (3.5ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:52:25.656888"], ["updated_at", "2020-04-22 06:52:25.656888"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.5ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.3ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:52:25.704912"], ["updated_at", "2020-04-22 06:52:25.704912"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: bacd0134-50a2-4a62-88b8-6b57d4faeecf) to Async(default)

 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (1.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (3.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 06:52:25.769804"], ["updated_at", "2020-04-22 06:52:25.769804"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:25.781137"], ["updated_at", "2020-04-22 06:52:25.781137"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:25.789603"], ["updated_at", "2020-04-22 06:52:25.789603"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.1ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.6ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.3ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
bacd0134-50a2-4a62-88b8-6b57d4faeecf

Performing CourseRecommendationMailerJob (Job ID: bacd0134-50a2-4a62-88b8-6b57d4faeecf) from Async(default) enqueued at 2020-04-22T06:52:25Z

 (0.5ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
bacd0134-50a2-4a62-88b8-6b57d4faeecf

Performed CourseRecommendationMailerJob (Job ID: bacd0134-50a2-4a62-88b8-6b57d4faeecf) from Async(default) in 0.52ms

 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 06:52:26.016564"], ["updated_at", "2020-04-22 06:52:26.016564"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:26.027821"], ["updated_at", "2020-04-22 06:52:26.027821"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:26.044729"], ["updated_at", "2020-04-22 06:52:26.044729"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.6ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:52:26.055312"], ["updated_at", "2020-04-22 06:52:26.055312"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.6ms)  rollback transaction
 (0.7ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 06:52:26.081529"], ["updated_at", "2020-04-22 06:52:26.081529"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 06:52:26.087470"], ["updated_at", "2020-04-22 06:52:26.087470"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 06:52:26.092247"], ["updated_at", "2020-04-22 06:52:26.092247"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 06:52:26.098406"], ["updated_at", "2020-04-22 06:52:26.098406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (1.1ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:52:26.104124"], ["updated_at", "2020-04-22 06:52:26.104124"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 06:52:26.110414"], ["updated_at", "2020-04-22 06:52:26.110414"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_lesson_valid


 (0.1ms)  rollback transaction
 (0.2ms)  rollback transaction
 (7.6ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (1.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (1.2ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (52.7ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (60.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.9ms)  PRAGMA defer_foreign_keys = 0
 (0.5ms)  PRAGMA defer_foreign_keys = 0
 (0.8ms)  PRAGMA foreign_keys = 1
 (0.8ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.8ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (10.0ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:53:12.421294', '2020-04-22 06:53:12.421294'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:53:12.421294', '2020-04-22 06:53:12.421294'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:53:12.452297', '2020-04-22 06:53:12.452297', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:53:12.452297', '2020-04-22 06:53:12.452297', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:53:12.474506', '2020-04-22 06:53:12.474506'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:12.474506', '2020-04-22 06:53:12.474506'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:12.488697', '2020-04-22 06:53:12.488697'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:12.488697', '2020-04-22 06:53:12.488697'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:53:12.503306', '2020-04-22 06:53:12.503306'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:53:12.503306', '2020-04-22 06:53:12.503306'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:53:12.516185', '2020-04-22 06:53:12.516185'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:53:12.516185', '2020-04-22 06:53:12.516185'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:53:12.527469', '2020-04-22 06:53:12.527469'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:12.527469', '2020-04-22 06:53:12.527469')

 (19.6ms)  commit transaction
 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.4ms)  begin transaction

UserTest: test_the_truth


 (0.6ms)  rollback transaction
 (5.4ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
 (1.4ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.7ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA foreign_keys
 (0.8ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (114.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
Truncate Tables (121.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (4.5ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:53:33.574372', '2020-04-22 06:53:33.574372'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:53:33.574372', '2020-04-22 06:53:33.574372'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:53:33.590943', '2020-04-22 06:53:33.590943', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:53:33.590943', '2020-04-22 06:53:33.590943', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:53:33.611910', '2020-04-22 06:53:33.611910'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:33.611910', '2020-04-22 06:53:33.611910'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:33.652236', '2020-04-22 06:53:33.652236'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:33.652236', '2020-04-22 06:53:33.652236'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:53:33.662260', '2020-04-22 06:53:33.662260'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:53:33.662260', '2020-04-22 06:53:33.662260'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:53:33.677709', '2020-04-22 06:53:33.677709'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:53:33.677709', '2020-04-22 06:53:33.677709'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:53:33.690360', '2020-04-22 06:53:33.690360'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:33.690360', '2020-04-22 06:53:33.690360')

 (11.3ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction

UserTest: test_the_truth


 (0.3ms)  rollback transaction
 (5.8ms)  SELECT sqlite_version(*)
 (1.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (3.1ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (1.6ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  PRAGMA foreign_keys
 (1.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.4ms)  PRAGMA foreign_keys = OFF
Truncate Tables (70.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
Truncate Tables (101.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (17.8ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:53:50.265831', '2020-04-22 06:53:50.265831'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:53:50.265831', '2020-04-22 06:53:50.265831'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:53:50.301199', '2020-04-22 06:53:50.301199', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:53:50.301199', '2020-04-22 06:53:50.301199', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:53:50.339596', '2020-04-22 06:53:50.339596'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:50.339596', '2020-04-22 06:53:50.339596'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:50.367446', '2020-04-22 06:53:50.367446'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:50.367446', '2020-04-22 06:53:50.367446'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:53:50.382244', '2020-04-22 06:53:50.382244'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:53:50.382244', '2020-04-22 06:53:50.382244'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:53:50.397547', '2020-04-22 06:53:50.397547'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:53:50.397547', '2020-04-22 06:53:50.397547'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:53:50.425867', '2020-04-22 06:53:50.425867'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:50.425867', '2020-04-22 06:53:50.425867')

 (13.3ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

UserTest: test_should_do_a_thing


 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

UserTest: test_the_truth


 (0.3ms)  rollback transaction
 (0.2ms)  PRAGMA foreign_keys
 (0.7ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
Fixtures Load (8.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:53:50.353338', '2020-04-22 06:53:50.353338'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:53:50.353338', '2020-04-22 06:53:50.353338'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:53:50.394329', '2020-04-22 06:53:50.394329', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:53:50.394329', '2020-04-22 06:53:50.394329', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:53:50.415240', '2020-04-22 06:53:50.415240'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:50.415240', '2020-04-22 06:53:50.415240'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:50.438650', '2020-04-22 06:53:50.438650'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:53:50.438650', '2020-04-22 06:53:50.438650'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:53:50.463103', '2020-04-22 06:53:50.463103'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:53:50.463103', '2020-04-22 06:53:50.463103'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:53:50.474666', '2020-04-22 06:53:50.474666'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:53:50.474666', '2020-04-22 06:53:50.474666'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:53:50.523746', '2020-04-22 06:53:50.523746'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:53:50.523746', '2020-04-22 06:53:50.523746')

 (13.1ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

UserTest: test_testing_a_thing


 (0.3ms)  rollback transaction
 (4.2ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.4ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.5ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (46.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
Truncate Tables (53.6ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.3ms)  PRAGMA foreign_keys = 1
 (0.4ms)  SELECT sqlite_version(*)
 (0.4ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (1.2ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (7.3ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:54:14.805397', '2020-04-22 06:54:14.805397'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:54:14.805397', '2020-04-22 06:54:14.805397'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:54:14.834476', '2020-04-22 06:54:14.834476', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:54:14.834476', '2020-04-22 06:54:14.834476', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:54:14.849029', '2020-04-22 06:54:14.849029'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:54:14.849029', '2020-04-22 06:54:14.849029'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:54:14.860472', '2020-04-22 06:54:14.860472'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:54:14.860472', '2020-04-22 06:54:14.860472'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:54:14.874147', '2020-04-22 06:54:14.874147'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:54:14.874147', '2020-04-22 06:54:14.874147'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:54:14.899092', '2020-04-22 06:54:14.899092'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:54:14.899092', '2020-04-22 06:54:14.899092'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:54:14.923549', '2020-04-22 06:54:14.923549'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:54:14.923549', '2020-04-22 06:54:14.923549')

 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.9ms)  PRAGMA foreign_keys = OFF
 (0.6ms)  begin transaction
 (14.4ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction
Fixtures Load (6.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:54:14.808974', '2020-04-22 06:54:14.808974'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:54:14.808974', '2020-04-22 06:54:14.808974'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:54:14.826500', '2020-04-22 06:54:14.826500', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:54:14.826500', '2020-04-22 06:54:14.826500', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:54:14.850851', '2020-04-22 06:54:14.850851'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:54:14.850851', '2020-04-22 06:54:14.850851'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:54:14.863121', '2020-04-22 06:54:14.863121'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:54:14.863121', '2020-04-22 06:54:14.863121'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:54:14.902290', '2020-04-22 06:54:14.902290'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:54:14.902290', '2020-04-22 06:54:14.902290'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:54:14.915472', '2020-04-22 06:54:14.915472'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:54:14.915472', '2020-04-22 06:54:14.915472'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:54:14.930766', '2020-04-22 06:54:14.930766'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:54:14.930766', '2020-04-22 06:54:14.930766')


CourseRecommenderTest: test_creates_a_recommendation


 (4.5ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (1.0ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (16.1ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.1ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:54:15.863232"], ["updated_at", "2020-04-22 06:54:15.863232"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.0ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.2ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:54:15.942746"], ["updated_at", "2020-04-22 06:54:15.942746"]]
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: fd6393ab-992b-4e6a-8a44-c3cb6ceece85) to Async(default)

 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SELECT COUNT(*) FROM "content_recommendations"
 (1.7ms)  rollback transaction
 (2.7ms)  rollback transaction
 (6.9ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (2.0ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (4.7ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
 (0.6ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.8ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT sqlite_version(*)
 (0.5ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (176.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.0ms)  PRAGMA foreign_keys = 1
Truncate Tables (187.8ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.4ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (4.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:58:33.060975', '2020-04-22 06:58:33.060975'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:58:33.060975', '2020-04-22 06:58:33.060975'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:58:33.090937', '2020-04-22 06:58:33.090937', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:58:33.090937', '2020-04-22 06:58:33.090937', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:58:33.100948', '2020-04-22 06:58:33.100948'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:58:33.100948', '2020-04-22 06:58:33.100948'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:58:33.121556', '2020-04-22 06:58:33.121556'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:58:33.121556', '2020-04-22 06:58:33.121556'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:58:33.132557', '2020-04-22 06:58:33.132557'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:58:33.132557', '2020-04-22 06:58:33.132557'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:58:33.143198', '2020-04-22 06:58:33.143198'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:58:33.143198', '2020-04-22 06:58:33.143198'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:58:33.157590', '2020-04-22 06:58:33.157590'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:58:33.157590', '2020-04-22 06:58:33.157590')

 (12.6ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction

UserTest: test_the_truth


 (0.3ms)  rollback transaction
 (4.9ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
 (1.1ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.5ms)  PRAGMA foreign_keys
 (1.2ms)  PRAGMA defer_foreign_keys
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.8ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
Truncate Tables (96.3ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (96.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.4ms)  PRAGMA defer_foreign_keys = 0
 (0.5ms)  PRAGMA foreign_keys = 1
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.8ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
 (0.3ms)  begin transaction
Fixtures Load (6.6ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:59:08.211349', '2020-04-22 06:59:08.211349'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:59:08.211349', '2020-04-22 06:59:08.211349'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:59:08.313172', '2020-04-22 06:59:08.313172', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:59:08.313172', '2020-04-22 06:59:08.313172', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:59:08.366541', '2020-04-22 06:59:08.366541'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:59:08.366541', '2020-04-22 06:59:08.366541'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:59:08.398531', '2020-04-22 06:59:08.398531'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:59:08.398531', '2020-04-22 06:59:08.398531'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:59:08.454330', '2020-04-22 06:59:08.454330'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:59:08.454330', '2020-04-22 06:59:08.454330'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:59:08.466634', '2020-04-22 06:59:08.466634'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:59:08.466634', '2020-04-22 06:59:08.466634'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:59:08.479908', '2020-04-22 06:59:08.479908'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:59:08.479908', '2020-04-22 06:59:08.479908')

Fixtures Load (7.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 06:59:08.320716', '2020-04-22 06:59:08.320716'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 06:59:08.320716', '2020-04-22 06:59:08.320716'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 06:59:08.372184', '2020-04-22 06:59:08.372184', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 06:59:08.372184', '2020-04-22 06:59:08.372184', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 06:59:08.424791', '2020-04-22 06:59:08.424791'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:59:08.424791', '2020-04-22 06:59:08.424791'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:59:08.443591', '2020-04-22 06:59:08.443591'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 06:59:08.443591', '2020-04-22 06:59:08.443591'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 06:59:08.488518', '2020-04-22 06:59:08.488518'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 06:59:08.488518', '2020-04-22 06:59:08.488518'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 06:59:08.500152', '2020-04-22 06:59:08.500152'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 06:59:08.500152', '2020-04-22 06:59:08.500152'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 06:59:08.512737', '2020-04-22 06:59:08.512737'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 06:59:08.512737', '2020-04-22 06:59:08.512737')

 (10.9ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.2ms)  begin transaction
 (9.5ms)  commit transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


 (0.6ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  begin transaction

CourseRecommenderTest: test_testing


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (8.0ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:59:09.082913"], ["updated_at", "2020-04-22 06:59:09.082913"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 93bf1b08-653d-44f9-b892-2269ebffb4bb) to Async(default)

 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (11.2ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 06:59:09.205271"], ["updated_at", "2020-04-22 06:59:09.205271"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (18.1ms)  rollback transaction
 (7.1ms)  SELECT sqlite_version(*)
 (1.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (2.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
 (1.0ms)  SELECT sqlite_version(*)
 (1.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
Truncate Tables (40.4ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

Truncate Tables (40.1ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  SELECT sqlite_version(*)
 (0.2ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction
Fixtures Load (4.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 14:21:01.930579', '2020-04-22 14:21:01.930579'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 14:21:01.930579', '2020-04-22 14:21:01.930579'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 14:21:01.940549', '2020-04-22 14:21:01.940549', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 14:21:01.940549', '2020-04-22 14:21:01.940549', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 14:21:01.944431', '2020-04-22 14:21:01.944431'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:21:01.944431', '2020-04-22 14:21:01.944431'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:21:01.949246', '2020-04-22 14:21:01.949246'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:21:01.949246', '2020-04-22 14:21:01.949246'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 14:21:01.953765', '2020-04-22 14:21:01.953765'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 14:21:01.953765', '2020-04-22 14:21:01.953765'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 14:21:01.957920', '2020-04-22 14:21:01.957920'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 14:21:01.957920', '2020-04-22 14:21:01.957920'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 14:21:01.962372', '2020-04-22 14:21:01.962372'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:21:01.962372', '2020-04-22 14:21:01.962372')

Fixtures Load (4.4ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 14:21:01.930581', '2020-04-22 14:21:01.930581'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 14:21:01.930581', '2020-04-22 14:21:01.930581'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 14:21:01.940656', '2020-04-22 14:21:01.940656', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 14:21:01.940656', '2020-04-22 14:21:01.940656', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 14:21:01.944582', '2020-04-22 14:21:01.944582'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:21:01.944582', '2020-04-22 14:21:01.944582'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:21:01.949555', '2020-04-22 14:21:01.949555'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:21:01.949555', '2020-04-22 14:21:01.949555'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 14:21:01.954135', '2020-04-22 14:21:01.954135'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 14:21:01.954135', '2020-04-22 14:21:01.954135'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 14:21:01.958265', '2020-04-22 14:21:01.958265'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 14:21:01.958265', '2020-04-22 14:21:01.958265'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 14:21:01.962731', '2020-04-22 14:21:01.962731'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:21:01.962731', '2020-04-22 14:21:01.962731')

 (2.9ms)  commit transaction
 (3.1ms)  commit transaction
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.1ms)  PRAGMA foreign_keys = 1
 (0.1ms)  begin transaction
 (0.1ms)  begin transaction

LessonTest: test_associations



LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:02.024747"], ["updated_at", "2020-04-22 14:21:02.024747"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.082911"], ["updated_at", "2020-04-22 14:21:02.082911"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:02.102577"], ["updated_at", "2020-04-22 14:21:02.102577"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.113960"], ["updated_at", "2020-04-22 14:21:02.113960"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.129536"], ["updated_at", "2020-04-22 14:21:02.129536"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.3ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:21:02.149832"], ["updated_at", "2020-04-22 14:21:02.149832"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.158850"], ["updated_at", "2020-04-22 14:21:02.158850"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.3ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_lesson_valid


 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.8ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:21:02.182195"], ["updated_at", "2020-04-22 14:21:02.182195"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.6ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 14:21:02.190268"], ["updated_at", "2020-04-22 14:21:02.190268"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 14:21:02.195487"], ["updated_at", "2020-04-22 14:21:02.195487"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


 (0.2ms)  rollback transaction
 (0.1ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_testing


 (0.1ms)  rollback transaction
ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.1ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.3ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.3ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 14:21:02.350278"], ["updated_at", "2020-04-22 14:21:02.350278"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 14:21:02.360724"], ["updated_at", "2020-04-22 14:21:02.360724"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: 11162845-7a30-4ec3-a521-aea1f922f828) to Async(default)

 (0.3ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (2.6ms)  rollback transaction
 (0.3ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.5ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.1ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

CourseTest: test_has_one_:bucket_association



CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 14:21:02.421527"], ["updated_at", "2020-04-22 14:21:02.421527"]]
 (0.1ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.427598"], ["updated_at", "2020-04-22 14:21:02.427598"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.432632"], ["updated_at", "2020-04-22 14:21:02.432632"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  rollback transaction
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  begin transaction
 (1.7ms)  rollback transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


 (0.2ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.3ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.3ms)  rollback transaction
 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  begin transaction

Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.1ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
Course Create (1.4ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:21:02.519232"], ["updated_at", "2020-04-22 14:21:02.519232"]]
 (0.3ms)  begin transaction

VaultTest: test_has_many_:courses_association


Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.526479"], ["updated_at", "2020-04-22 14:21:02.526479"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.530436"], ["updated_at", "2020-04-22 14:21:02.530436"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Load (0.4ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
Vault Create (1.2ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 14:21:02.534875"], ["updated_at", "2020-04-22 14:21:02.534875"]]
 (1.5ms)  rollback transaction
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.540581"], ["updated_at", "2020-04-22 14:21:02.540581"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
 (0.2ms)  begin transaction

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.545530"], ["updated_at", "2020-04-22 14:21:02.545530"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
 (1.2ms)  rollback transaction
Course Create (1.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:02.549840"], ["updated_at", "2020-04-22 14:21:02.549840"]]
 (0.2ms)  begin transaction

TrackTest: test_associations


Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.558258"], ["updated_at", "2020-04-22 14:21:02.558258"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.564827"], ["updated_at", "2020-04-22 14:21:02.564827"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
Bucket Load (1.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.1ms)  begin transaction

TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (3.2ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:02.586941"], ["updated_at", "2020-04-22 14:21:02.586941"]]

TrackTest: test_track_valid


Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.598969"], ["updated_at", "2020-04-22 14:21:02.598969"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.604677"], ["updated_at", "2020-04-22 14:21:02.604677"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.6ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:21:02.613609"], ["updated_at", "2020-04-22 14:21:02.613609"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  SAVEPOINT active_record_1
 (0.2ms)  rollback transaction
Course Create (0.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:02.620339"], ["updated_at", "2020-04-22 14:21:02.620339"]]
Bucket Create (0.4ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.625391"], ["updated_at", "2020-04-22 14:21:02.625391"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.1ms)  begin transaction

CoursesControllerTest: test_index


Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.630289"], ["updated_at", "2020-04-22 14:21:02.630289"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Track Create (0.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 14:21:02.635219"], ["updated_at", "2020-04-22 14:21:02.635219"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:02.871118"], ["updated_at", "2020-04-22 14:21:02.871118"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.878770"], ["updated_at", "2020-04-22 14:21:02.878770"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.883305"], ["updated_at", "2020-04-22 14:21:02.883305"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by CoursesController#index as HTML

 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:02.926617"], ["updated_at", "2020-04-22 14:21:02.926617"]]
ActiveJob
CourseRecommendationMailerJob
11162845-7a30-4ec3-a521-aea1f922f828

Performing CourseRecommendationMailerJob (Job ID: 11162845-7a30-4ec3-a521-aea1f922f828) from Async(default) enqueued at 2020-04-22T14:21:02Z

Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:02.933472"], ["updated_at", "2020-04-22 14:21:02.933472"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
ActiveJob
CourseRecommendationMailerJob
11162845-7a30-4ec3-a521-aea1f922f828

Performed CourseRecommendationMailerJob (Job ID: 11162845-7a30-4ec3-a521-aea1f922f828) from Async(default) in 0.35ms

Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:02.938320"], ["updated_at", "2020-04-22 14:21:02.938320"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Rendering courses/index.html.erb within layouts/application
Course Load (0.5ms)  SELECT "courses".* FROM "courses"

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}
Rendered courses/index.html.erb within layouts/application (Duration: 8.3ms | Allocations: 655)
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 5.5ms | Allocations: 442)

Completed 200 OK in 54ms (Views: 29.7ms | ActiveRecord: 0.9ms | Allocations: 5268)

 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.021433"], ["updated_at", "2020-04-22 14:21:03.021433"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.030499"], ["updated_at", "2020-04-22 14:21:03.030499"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.034965"], ["updated_at", "2020-04-22 14:21:03.034965"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 0.4ms | Allocations: 9)

Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 1.1ms | Allocations: 675)

 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

UserTest: test_the_truth


 (0.1ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.075917"], ["updated_at", "2020-04-22 14:21:03.075917"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.081718"], ["updated_at", "2020-04-22 14:21:03.081718"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.088255"], ["updated_at", "2020-04-22 14:21:03.088255"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.4ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


Webpacker

Everything's up-to-date. Nothing to do

 (0.6ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.111046"], ["updated_at", "2020-04-22 14:21:03.111046"]]

Completed 200 OK in 214ms (Views: 198.5ms | ActiveRecord: 0.5ms | Allocations: 11021)

Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.121552"], ["updated_at", "2020-04-22 14:21:03.121552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
 (0.3ms)  begin transaction

SearchableTest: test_find_all_by_count


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.128587"], ["updated_at", "2020-04-22 14:21:03.128587"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.134989"], ["updated_at", "2020-04-22 14:21:03.134989"]]
Course Load (1.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.144392"], ["updated_at", "2020-04-22 14:21:03.144392"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_all_matches_classes


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.150937"], ["updated_at", "2020-04-22 14:21:03.150937"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.160394"], ["updated_at", "2020-04-22 14:21:03.160394"]]
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (1.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.171698"], ["updated_at", "2020-04-22 14:21:03.171698"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.180573"], ["updated_at", "2020-04-22 14:21:03.180573"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.185689"], ["updated_at", "2020-04-22 14:21:03.185689"]]
 (0.3ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.205552"], ["updated_at", "2020-04-22 14:21:03.205552"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.206874"], ["updated_at", "2020-04-22 14:21:03.206874"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.212736"], ["updated_at", "2020-04-22 14:21:03.212736"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.217207"], ["updated_at", "2020-04-22 14:21:03.217207"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.223932"], ["updated_at", "2020-04-22 14:21:03.223932"]]
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.242316"], ["updated_at", "2020-04-22 14:21:03.242316"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.249048"], ["updated_at", "2020-04-22 14:21:03.249048"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.253481"], ["updated_at", "2020-04-22 14:21:03.253481"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_created_success


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.290778"], ["updated_at", "2020-04-22 14:21:03.290778"]]
Bucket Create (0.6ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.296994"], ["updated_at", "2020-04-22 14:21:03.296994"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.6ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.301534"], ["updated_at", "2020-04-22 14:21:03.301534"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.5ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.2ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (6.9ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_validity


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.336325"], ["updated_at", "2020-04-22 14:21:03.336325"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.346553"], ["updated_at", "2020-04-22 14:21:03.346553"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.353053"], ["updated_at", "2020-04-22 14:21:03.353053"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (1.0ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.8ms)  rollback transaction
 (0.1ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.383009"], ["updated_at", "2020-04-22 14:21:03.383009"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.389513"], ["updated_at", "2020-04-22 14:21:03.389513"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.396286"], ["updated_at", "2020-04-22 14:21:03.396286"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
Comment Load (0.4ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (1.8ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.422071"], ["updated_at", "2020-04-22 14:21:03.422071"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.430837"], ["updated_at", "2020-04-22 14:21:03.430837"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (2.7ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:21:03.429330"], ["updated_at", "2020-04-22 14:21:03.429330"]]
Recording Create (1.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.436926"], ["updated_at", "2020-04-22 14:21:03.436926"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.438676"], ["updated_at", "2020-04-22 14:21:03.438676"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.445237"], ["updated_at", "2020-04-22 14:21:03.445237"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
Bucket Load (1.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:21:03.469423"], ["updated_at", "2020-04-22 14:21:03.469423"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.480334"], ["updated_at", "2020-04-22 14:21:03.480334"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.486300"], ["updated_at", "2020-04-22 14:21:03.486300"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.4ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
Recording Load (0.6ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (1.9ms)  rollback transaction
 (2.3ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (0.4ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Course Create (2.2ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:21:03.517000"], ["updated_at", "2020-04-22 14:21:03.517000"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.524128"], ["updated_at", "2020-04-22 14:21:03.524128"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.531132"], ["updated_at", "2020-04-22 14:21:03.531132"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:21:03.559967"], ["updated_at", "2020-04-22 14:21:03.559967"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.568449"], ["updated_at", "2020-04-22 14:21:03.568449"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.577048"], ["updated_at", "2020-04-22 14:21:03.577048"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.4ms)  rollback transaction
 (0.1ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (1.2ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:21:03.594294"], ["updated_at", "2020-04-22 14:21:03.594294"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:21:03.600579"], ["updated_at", "2020-04-22 14:21:03.600579"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.3ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:21:03.605802"], ["updated_at", "2020-04-22 14:21:03.605802"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.4ms)  rollback transaction
 (0.2ms)  rollback transaction
 (43.2ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.4ms)  SELECT sqlite_version(*)
 (1.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (1.3ms)  SELECT sqlite_version(*)
 (0.9ms)  SELECT sqlite_version(*)
 (0.4ms)  PRAGMA foreign_keys
 (0.9ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ?  [["key", "schema_sha1"]]
 (0.3ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.4ms)  SELECT sqlite_version(*)
 (0.8ms)  PRAGMA foreign_keys
 (0.4ms)  PRAGMA defer_foreign_keys
 (0.6ms)  PRAGMA defer_foreign_keys = ON
 (0.3ms)  PRAGMA foreign_keys = OFF
Truncate Tables (193.2ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (1.7ms)  PRAGMA foreign_keys = 1
Truncate Tables (72.9ms)  DELETE FROM "buckets";

DELETE FROM “content_recommendations”; DELETE FROM “courses”; DELETE FROM “lessons”; DELETE FROM “recordings”; DELETE FROM “users”; DELETE FROM “vaults”; DELETE FROM “comments”; DELETE FROM “statuses”; DELETE FROM “tracks”

 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  SELECT sqlite_version(*)
 (0.3ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
 (0.4ms)  PRAGMA foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys
 (0.2ms)  PRAGMA defer_foreign_keys = ON
 (0.2ms)  PRAGMA foreign_keys = OFF
 (0.3ms)  begin transaction
Fixtures Load (4.1ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 14:32:09.051853', '2020-04-22 14:32:09.051853'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 14:32:09.051853', '2020-04-22 14:32:09.051853'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 14:32:09.099828', '2020-04-22 14:32:09.099828', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 14:32:09.099828', '2020-04-22 14:32:09.099828', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 14:32:09.107172', '2020-04-22 14:32:09.107172'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:32:09.107172', '2020-04-22 14:32:09.107172'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:32:09.135322', '2020-04-22 14:32:09.135322'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:32:09.135322', '2020-04-22 14:32:09.135322'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 14:32:09.172113', '2020-04-22 14:32:09.172113'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 14:32:09.172113', '2020-04-22 14:32:09.172113'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 14:32:09.179808', '2020-04-22 14:32:09.179808'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 14:32:09.179808', '2020-04-22 14:32:09.179808'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 14:32:09.186138', '2020-04-22 14:32:09.186138'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:32:09.186138', '2020-04-22 14:32:09.186138')

Fixtures Load (4.2ms)  DELETE FROM "tracks";

DELETE FROM “lessons”; DELETE FROM “users”; DELETE FROM “courses”; DELETE FROM “buckets”; DELETE FROM “statuses”; DELETE FROM “vaults”; INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 'MyText', '2020-04-22 14:32:09.082216', '2020-04-22 14:32:09.082216'); INSERT INTO “tracks” (“id”, “course_id”, “title”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 'MyText', '2020-04-22 14:32:09.082216', '2020-04-22 14:32:09.082216'); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (980190962, 'MyText', 'MyText', '2020-04-22 14:32:09.124460', '2020-04-22 14:32:09.124460', 980190962); INSERT INTO “lessons” (“id”, “title”, “body”, “created_at”, “updated_at”, “track_id”) VALUES (298486374, 'MyText', 'MyText', '2020-04-22 14:32:09.124460', '2020-04-22 14:32:09.124460', 298486374); INSERT INTO “users” (“id”, “email”, “created_at”, “updated_at”) VALUES (980190962, 'd@dain.io', '2020-04-22 14:32:09.141653', '2020-04-22 14:32:09.141653'); INSERT INTO “users” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:32:09.141653', '2020-04-22 14:32:09.141653'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (980190962, 'abc-course', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:32:09.168890', '2020-04-22 14:32:09.168890'); INSERT INTO “courses” (“id”, “title”, “status”, “description”, “topic”, “url”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', 'MyString', 'MyText', 'MyString', 'MyString', '2020-04-22 14:32:09.168890', '2020-04-22 14:32:09.168890'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (980190962, 'MyString', '2020-04-22 14:32:09.176468', '2020-04-22 14:32:09.176468'); INSERT INTO “buckets” (“id”, “status”, “created_at”, “updated_at”) VALUES (298486374, 'MyString', '2020-04-22 14:32:09.176468', '2020-04-22 14:32:09.176468'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (980190962, 980190962, 980190962, 'MyString', '2020-04-22 14:32:09.184041', '2020-04-22 14:32:09.184041'); INSERT INTO “statuses” (“id”, “bucket_id”, “user_id”, “state”, “created_at”, “updated_at”) VALUES (298486374, 298486374, 298486374, 'MyString', '2020-04-22 14:32:09.184041', '2020-04-22 14:32:09.184041'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (980190962, '2020-04-22 14:32:09.190579', '2020-04-22 14:32:09.190579'); INSERT INTO “vaults” (“id”, “created_at”, “updated_at”) VALUES (298486374, '2020-04-22 14:32:09.190579', '2020-04-22 14:32:09.190579')

 (8.4ms)  commit transaction
 (12.4ms)  commit transaction
 (0.3ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA defer_foreign_keys = 0
 (0.2ms)  PRAGMA foreign_keys = 1
 (0.4ms)  PRAGMA foreign_keys = 1
 (0.5ms)  begin transaction

SearchableTest: test_find_all_matches_classes


 (0.2ms)  begin transaction

SearchableTest: test_find_all_by_count


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:09.282542"], ["updated_at", "2020-04-22 14:32:09.282542"]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.8ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:09.286710"], ["updated_at", "2020-04-22 14:32:09.286710"]]
Bucket Create (1.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:09.355274"], ["updated_at", "2020-04-22 14:32:09.355274"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:09.364585"], ["updated_at", "2020-04-22 14:32:09.364585"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (5.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:09.467403"], ["updated_at", "2020-04-22 14:32:09.467403"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (1.1ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.4ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (9.9ms)  rollback transaction
Recording Create (31.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:09.479024"], ["updated_at", "2020-04-22 14:32:09.479024"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  begin transaction

SearchableTest: test_find_none_by_count


 (0.2ms)  SAVEPOINT active_record_1
 (0.4ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Create (8.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:09.535513"], ["updated_at", "2020-04-22 14:32:09.535513"]]
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:09.555216"], ["updated_at", "2020-04-22 14:32:09.555216"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (2.3ms)  rollback transaction
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:09.572685"], ["updated_at", "2020-04-22 14:32:09.572685"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  begin transaction

SearchableTest: test_find_none_matches_classes


 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.8ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.4ms)  SAVEPOINT active_record_1
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
Course Create (3.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:09.584280"], ["updated_at", "2020-04-22 14:32:09.584280"]]
 (3.0ms)  rollback transaction
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:09.597784"], ["updated_at", "2020-04-22 14:32:09.597784"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (0.3ms)  begin transaction

SearchableTest: test_find_catchall_matches_classes


Recording Create (1.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:09.604674"], ["updated_at", "2020-04-22 14:32:09.604674"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:09.614604"], ["updated_at", "2020-04-22 14:32:09.614604"]]
 (2.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (1.7ms)  rollback transaction
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:09.623390"], ["updated_at", "2020-04-22 14:32:09.623390"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
 (1.6ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.each_instance_method_that_iterates_over_repos


Recording Create (1.4ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:09.640719"], ["updated_at", "2020-04-22 14:32:09.640719"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%something-else%')
 (0.5ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%n%')
 (3.0ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exists


 (0.3ms)  rollback transaction
 (8.4ms)  begin transaction

Clients::GithubTest: test_github_client_builds_Repo_classes_for_each_repo_in_github_org


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_org_constant_set


 (0.2ms)  rollback transaction
 (0.5ms)  begin transaction

Clients::GithubTest: test_github_client_includes_route_to_generic_'/contents'_path


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_exposes_a_#.all_method_that_proxies_#.new_class_method


 (0.3ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::GithubTest: test_github_client_fetches_repos_from_org


 (0.2ms)  rollback transaction
 (0.3ms)  rollback transaction
 (1.0ms)  begin transaction

Clients::GithubTest: test_github_client_saves_repos_as_courses_when_building_out_the_data_models


 (0.2ms)  begin transaction
 (0.3ms)  SAVEPOINT active_record_1

BucketableTest: test_creates_a_bucket_after_the_creation_of_a_related_object


Course Load (0.7ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.7ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:32:10.067166"], ["updated_at", "2020-04-22 14:32:10.067166"]]
Course Create (28.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:10.065345"], ["updated_at", "2020-04-22 14:32:10.065345"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:10.121104"], ["updated_at", "2020-04-22 14:32:10.121104"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (1.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:10.084639"], ["updated_at", "2020-04-22 14:32:10.084639"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.1ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:10.212627"], ["updated_at", "2020-04-22 14:32:10.212627"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:10.218967"], ["updated_at", "2020-04-22 14:32:10.218967"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (2.6ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
Course Load (1.5ms)  SELECT "courses".* FROM "courses" ORDER BY "courses"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (9.8ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_doesnt_match


 (20.9ms)  rollback transaction
 (0.2ms)  begin transaction

BucketsControllerTest: test_search_result_title_matches


 (0.5ms)  SAVEPOINT active_record_1
Course Create (2.2ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:11.423300"], ["updated_at", "2020-04-22 14:32:11.423300"]]
 (0.3ms)  SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:11.441645"], ["updated_at", "2020-04-22 14:32:11.441645"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Course Create (6.4ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:11.439587"], ["updated_at", "2020-04-22 14:32:11.439587"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:11.450265"], ["updated_at", "2020-04-22 14:32:11.450265"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:11.455282"], ["updated_at", "2020-04-22 14:32:11.455282"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:11.462022"], ["updated_at", "2020-04-22 14:32:11.462022"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Processing by BucketsController#search as JSON

Parameters: {"for"=>"will not match"}

Processing by BucketsController#search as JSON

Parameters: {"for"=>"not-important"}
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.3ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
Course Load (5.2ms)  SELECT "courses".* FROM "courses" WHERE (title like '%will%20not%20match%')
Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE (title like '%not-important%')
Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 7.6ms | Allocations: 441)

Completed 200 OK in 270ms (Views: 143.3ms | ActiveRecord: 5.6ms | Allocations: 5260)

Rendering buckets/search.json.erb
Rendered buckets/search.json.erb (Duration: 13.1ms | Allocations: 445)

Completed 200 OK in 233ms (Views: 144.5ms | ActiveRecord: 0.8ms | Allocations: 5255)

 (7.5ms)  rollback transaction
 (9.7ms)  rollback transaction
 (0.2ms)  begin transaction
 (0.2ms)  begin transaction

VaultTest: test_has_many_:courses_association



TrackTest: test_fails_validation_if_there_is_no_'course_id'_attribute


 (0.4ms)  SAVEPOINT active_record_1
Vault Create (1.8ms)  INSERT INTO "vaults" ("created_at", "updated_at") VALUES (?, ?)  [["created_at", "2020-04-22 14:32:11.837092"], ["updated_at", "2020-04-22 14:32:11.837092"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:11.845891"], ["updated_at", "2020-04-22 14:32:11.845891"], ["bucketable_id", 980190963], ["bucketable_type", "Vault"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:11.852547"], ["updated_at", "2020-04-22 14:32:11.852547"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

TrackTest: test_track_valid


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:11.888241"], ["updated_at", "2020-04-22 14:32:11.888241"]]
Bucket Create (0.7ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:11.897075"], ["updated_at", "2020-04-22 14:32:11.897075"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:11.902606"], ["updated_at", "2020-04-22 14:32:11.902606"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (1.5ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:32:11.909944"], ["updated_at", "2020-04-22 14:32:11.909944"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Course Create (0.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:11.919826"], ["updated_at", "2020-04-22 14:32:11.919826"]]
Bucket Create (0.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:11.926973"], ["updated_at", "2020-04-22 14:32:11.926973"], ["bucketable_id", 980190964], ["bucketable_type", "Course"]]
 (0.2ms)  rollback transaction
Recording Create (0.5ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190964], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:11.932492"], ["updated_at", "2020-04-22 14:32:11.932492"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.4ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190964], ["created_at", "2020-04-22 14:32:11.940368"], ["updated_at", "2020-04-22 14:32:11.940368"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  begin transaction

TrackTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (1.8ms)  rollback transaction
 (0.2ms)  rollback transaction
 (0.4ms)  begin transaction

TrackTest: test_associations


 (0.2ms)  begin transaction

CoursesControllerTest: test_index


 (0.9ms)  rollback transaction
 (0.2ms)  begin transaction

RecordableTest: test_creates_a_recording_after_the_creation_of_a_related_object


 (0.3ms)  SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:12.000835"], ["updated_at", "2020-04-22 14:32:12.000835"]]
Course Create (1.6ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:12.009269"], ["updated_at", "2020-04-22 14:32:12.009269"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:12.017442"], ["updated_at", "2020-04-22 14:32:12.017442"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:12.017488"], ["updated_at", "2020-04-22 14:32:12.017488"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:12.026287"], ["updated_at", "2020-04-22 14:32:12.026287"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.5ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]
Recording Create (7.0ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:12.023367"], ["updated_at", "2020-04-22 14:32:12.023367"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Recording Load (0.3ms)  SELECT "recordings".* FROM "recordings" ORDER BY "recordings"."id" DESC LIMIT ?  [["LIMIT", 1]]

Processing by CoursesController#index as HTML

 (9.6ms)  rollback transaction
Rendering courses/index.html.erb within layouts/application
Course Load (0.6ms)  SELECT "courses".* FROM "courses"
Rendered courses/index.html.erb within layouts/application (Duration: 5.5ms | Allocations: 363)
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_#.save!_method_raises_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:32:12.083086"], ["updated_at", "2020-04-22 14:32:12.083086"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:12.091387"], ["updated_at", "2020-04-22 14:32:12.091387"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:12.098094"], ["updated_at", "2020-04-22 14:32:12.098094"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_URL_to_contents_for_that_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_title_to_contents_for_repo_on_github


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_github_client_#.save_method_does_NOT_raise_an_error_message_if_saving_fails


Course Load (0.5ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.5ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:32:12.138658"], ["updated_at", "2020-04-22 14:32:12.138658"]]
Bucket Create (5.5ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:12.159406"], ["updated_at", "2020-04-22 14:32:12.159406"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:12.169964"], ["updated_at", "2020-04-22 14:32:12.169964"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.6ms)  rollback transaction
 (0.3ms)  begin transaction

Clients::RepoTest: test_Repo_class_should_start_w/response_json


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_exists


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_fetches_contents_of_repos_in_org_via_repo_contents_path


Webpacker

Everything's up-to-date. Nothing to do

Completed 200 OK in 393ms (Views: 387.2ms | ActiveRecord: 0.6ms | Allocations: 8609)

 (1.8ms)  rollback transaction
 (0.2ms)  begin transaction

Clients::RepoTest: test_Repo_class_contains_#.save_method_that_allows_it_to_save_course_data


 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.9ms)  SELECT "courses".* FROM "courses" WHERE "courses"."title" = ? AND "courses"."url" = ? LIMIT ?  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["LIMIT", 1]]
Course Create (1.9ms)  INSERT INTO "courses" ("title", "url", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["title", "abc-course"], ["url", "https://api.github.com/repos/opensourcecourses/abc-course/contents"], ["created_at", "2020-04-22 14:32:12.467246"], ["updated_at", "2020-04-22 14:32:12.467246"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:12.475610"], ["updated_at", "2020-04-22 14:32:12.475610"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.7ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:12.483624"], ["updated_at", "2020-04-22 14:32:12.483624"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (3.1ms)  rollback transaction
 (0.2ms)  begin transaction

SearchTest: test_search_api_proxies_searchable_concern


 (1.0ms)  SELECT "buckets"."bucketable_type" FROM "buckets"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_creates_a_recommendation


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (2.0ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 14:32:12.652406"], ["updated_at", "2020-04-22 14:32:12.652406"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
ActiveJob

Enqueued CourseRecommendationMailerJob (Job ID: dc5dc153-3d14-4baf-ac87-512c3fffe2cb) to Async(default)

 (0.4ms)  SELECT COUNT(*) FROM "content_recommendations"
 (10.0ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_doesnt_enqueue_a_recommendation_mailer_if_no_course


ContentRecommendation Load (0.5ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseRecommenderTest: test_testing


 (0.2ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_doesnt_create_a_recommendation_if_no_course


ContentRecommendation Load (0.4ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.9ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.4ms)  rollback transaction
 (0.3ms)  begin transaction

CourseRecommenderTest: test_enqueues_email_job


ContentRecommendation Load (0.6ms)  SELECT "content_recommendations".* FROM "content_recommendations" WHERE "content_recommendations"."user_id" IS NULL
 (0.3ms)  SAVEPOINT active_record_1
ContentRecommendation Create (1.9ms)  INSERT INTO "content_recommendations" ("recommendable_type", "created_at", "updated_at") VALUES (?, ?, ?)  [["recommendable_type", "Course"], ["created_at", "2020-04-22 14:32:12.870860"], ["updated_at", "2020-04-22 14:32:12.870860"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (9.9ms)  rollback transaction
ActiveJob
CourseRecommendationMailerJob
dc5dc153-3d14-4baf-ac87-512c3fffe2cb

Performing CourseRecommendationMailerJob (Job ID: dc5dc153-3d14-4baf-ac87-512c3fffe2cb) from Async(default) enqueued at 2020-04-22T14:32:12Z

ActiveJob
CourseRecommendationMailerJob
dc5dc153-3d14-4baf-ac87-512c3fffe2cb

Performed CourseRecommendationMailerJob (Job ID: dc5dc153-3d14-4baf-ac87-512c3fffe2cb) from Async(default) in 0.38ms

 (0.3ms)  begin transaction

ContentRecommendationTest: test_relationships_set_up


 (1.0ms)  SELECT COUNT(*) FROM "content_recommendations"
 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

UserTest: test_the_truth


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_associations


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not-important"], ["created_at", "2020-04-22 14:32:13.198409"], ["updated_at", "2020-04-22 14:32:13.198409"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.210081"], ["updated_at", "2020-04-22 14:32:13.210081"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (2.8ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.219378"], ["updated_at", "2020-04-22 14:32:13.219378"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Course Load (0.6ms)  SELECT "courses".* FROM "courses" WHERE "courses"."id" = ? LIMIT ?  [["id", 980190963], ["LIMIT", 1]]
Track Create (0.9ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:32:13.255451"], ["updated_at", "2020-04-22 14:32:13.255451"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.1ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_lesson_valid


 (0.5ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

LessonTest: test_fails_validation_if_there_is_no_'track_id'_attribute


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.353920"], ["updated_at", "2020-04-22 14:32:13.353920"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.363266"], ["updated_at", "2020-04-22 14:32:13.363266"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.381813"], ["updated_at", "2020-04-22 14:32:13.381813"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Track Create (0.7ms)  INSERT INTO "tracks" ("course_id", "created_at", "updated_at") VALUES (?, ?, ?)  [["course_id", 980190963], ["created_at", "2020-04-22 14:32:13.389439"], ["updated_at", "2020-04-22 14:32:13.389439"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Lesson Create (3.3ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 14:32:13.417806"], ["updated_at", "2020-04-22 14:32:13.417806"], ["track_id", 980190963]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Lesson Create (0.5ms)  INSERT INTO "lessons" ("created_at", "updated_at", "track_id") VALUES (?, ?, ?)  [["created_at", "2020-04-22 14:32:13.428795"], ["updated_at", "2020-04-22 14:32:13.428795"], ["track_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (9.7ms)  rollback transaction
 (0.3ms)  begin transaction

CommentTest: test_comment_created_success


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.452434"], ["updated_at", "2020-04-22 14:32:13.452434"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.461220"], ["updated_at", "2020-04-22 14:32:13.461220"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.468665"], ["updated_at", "2020-04-22 14:32:13.468665"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.7ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.2ms)  SAVEPOINT active_record_1
Comment Create (0.4ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "comment"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (10.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_through_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.584713"], ["updated_at", "2020-04-22 14:32:13.584713"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.594977"], ["updated_at", "2020-04-22 14:32:13.594977"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (1.2ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.602941"], ["updated_at", "2020-04-22 14:32:13.602941"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (1.3ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comments_on_course_via_proxy


 (1.1ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.636707"], ["updated_at", "2020-04-22 14:32:13.636707"]]
Bucket Create (0.8ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.647930"], ["updated_at", "2020-04-22 14:32:13.647930"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.654284"], ["updated_at", "2020-04-22 14:32:13.654284"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.5ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.5ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_validity


 (0.3ms)  SAVEPOINT active_record_1
Course Create (2.5ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.706087"], ["updated_at", "2020-04-22 14:32:13.706087"]]
Bucket Create (1.0ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.718010"], ["updated_at", "2020-04-22 14:32:13.718010"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.726166"], ["updated_at", "2020-04-22 14:32:13.726166"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.4ms)  SAVEPOINT active_record_1
Comment Create (0.7ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (1.9ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_no_bucket_no_comment


 (0.2ms)  SAVEPOINT active_record_1
Course Create (2.0ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.752853"], ["updated_at", "2020-04-22 14:32:13.752853"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.764549"], ["updated_at", "2020-04-22 14:32:13.764549"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:13.772594"], ["updated_at", "2020-04-22 14:32:13.772594"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.6ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (2.1ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_comment_linked_to_bucket


 (0.3ms)  SAVEPOINT active_record_1
Course Create (1.9ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:13.824521"], ["updated_at", "2020-04-22 14:32:13.824521"]]
Bucket Create (16.1ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:13.834053"], ["updated_at", "2020-04-22 14:32:13.834053"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:14.063536"], ["updated_at", "2020-04-22 14:32:14.063536"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.8ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.5ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (2.0ms)  rollback transaction
 (0.2ms)  begin transaction

CommentTest: test_review_acts_as_comment_via_inheritance


 (0.3ms)  SAVEPOINT active_record_1
Course Create (3.3ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "not important"], ["created_at", "2020-04-22 14:32:14.095228"], ["updated_at", "2020-04-22 14:32:14.095228"]]
Bucket Create (0.9ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:14.105105"], ["updated_at", "2020-04-22 14:32:14.105105"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:14.114064"], ["updated_at", "2020-04-22 14:32:14.114064"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Comment Create (0.9ms)  INSERT INTO "comments" ("bucket_id", "body") VALUES (?, ?)  [["bucket_id", 980190963], ["body", "This is a comment, but the body isn't important"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" ORDER BY "buckets"."id" DESC LIMIT ?  [["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Review Create (0.4ms)  INSERT INTO "comments" ("bucket_id") VALUES (?)  [["bucket_id", 980190963]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Comment Load (0.3ms)  SELECT "comments".* FROM "comments" WHERE "comments"."bucket_id" = ?  [["bucket_id", 980190963]]
 (10.4ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_#.save!_method_raises_an_error_message_if_saving_fails


 (0.2ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_belongs_to_:vault_association


 (0.3ms)  rollback transaction
 (0.3ms)  begin transaction

CourseTest: test_has_one_:bucket_association


 (0.8ms)  SAVEPOINT active_record_1
Course Create (2.1ms)  INSERT INTO "courses" ("title", "created_at", "updated_at") VALUES (?, ?, ?)  [["title", "t"], ["created_at", "2020-04-22 14:32:14.237898"], ["updated_at", "2020-04-22 14:32:14.237898"]]
Bucket Create (1.2ms)  INSERT INTO "buckets" ("created_at", "updated_at", "bucketable_id", "bucketable_type") VALUES (?, ?, ?, ?)  [["created_at", "2020-04-22 14:32:14.250530"], ["updated_at", "2020-04-22 14:32:14.250530"], ["bucketable_id", 980190963], ["bucketable_type", "Course"]]
Recording Create (0.9ms)  INSERT INTO "recordings" ("recordable_id", "recordable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["recordable_id", 980190963], ["recordable_type", "Bucket"], ["created_at", "2020-04-22 14:32:14.260845"], ["updated_at", "2020-04-22 14:32:14.260845"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Bucket Load (0.3ms)  SELECT "buckets".* FROM "buckets" WHERE "buckets"."bucketable_id" = ? AND "buckets"."bucketable_type" = ? LIMIT ?  [["bucketable_id", 980190963], ["bucketable_type", "Course"], ["LIMIT", 1]]
 (1.7ms)  rollback transaction
 (0.2ms)  begin transaction

CourseTest: test_fails_validation_if_there_is_no_'title'_attribute


 (0.2ms)  rollback transaction
 (0.3ms)  rollback transaction